Standard escape codes are prefixed with Escape:
- Ctrl-Key:
^[ - Octal:
\033 - Unicode:
\u001b - Hexadecimal:
\x1B - Decimal:
27
| import os | |
| import openpyxl | |
| def delete_rows_from_excel(file_path, rows_to_delete): | |
| # Load the workbook and select the first sheet | |
| workbook = openpyxl.load_workbook(file_path) | |
| sheet = workbook.active | |
| # Delete the specified rows | |
| for row in sorted(rows_to_delete, reverse=True): |
I hereby claim:
To claim this, I am signing this object:
| ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCz9WzLA1FORyVhH1OIYGQAK5rq5R1DPAqNWRv14tDjf8XLgR6qchWhKU82jF+6oqy7534Or0vFAn2zKbGxyCcWz+zcXQyO5oGRMVhYQ/Q/1m0jfSdyOAoVsMZDWSOFM8MNXKfSAPnbXizb+gPfVA/sTxuT9Zy9BTpDf8pMxhmKs5rZtp5145L/UHeOWMNNkyf0BbIenxGb/Mkk+vt6sz72eHTvTc+9idNj389z/dcBd+rMbg5TOzv/Zz2xiVHbjBB3vJtogtLfBHGgt+BYka9fTvQEs4hYXfL4P1pQ/1uCeyUvXw59fjbbFBid7MyCaBO3hHFkMVX6gLkEudA9pApU0dZLrKkvqm9jnifn4aijff6wV3H5TjddFw3bCCs8y3j2h/Aw3QWAUT10anAHMes8iuryI25DNZZTvoFRrLvZPnSbblCc6asH8xr2Tpg42UGwzxGmlCdgG0Z8Ql9jdIly8eFOQAmshqTqQgUFaXc/hvPo19dkkkM8jFrhlohxtAE= roger@masterrace |
| { | |
| "version": "2.0.0", | |
| "tasks": [ | |
| { | |
| "label": "Rspec - all", | |
| "type": "shell", | |
| "command": "bin/rspec -fd", | |
| "problemMatcher": [], | |
| "group": { | |
| "kind": "test", |
| # This is a skeleton for testing models including examples of validations, callbacks, | |
| # scopes, instance & class methods, associations, and more. | |
| # Pick and choose what you want, as all models don't NEED to be tested at this depth. | |
| # | |
| # I'm always eager to hear new tips & suggestions as I'm still new to testing, | |
| # so if you have any, please share! | |
| # | |
| # @kyletcarlson | |
| # | |
| # This skeleton also assumes you're using the following gems: |
| #config/initializers/carrierwave.rb | |
| module CarrierWave | |
| module MiniMagick | |
| # Rotates the image based on the EXIF Orientation | |
| def exif_rotation | |
| manipulate! do |img| | |
| img.auto_orient | |
| img = yield(img) if block_given? | |
| img | |
| end |
| ## MYSQL | |
| create database db_name character set utf8 collate utf8_general_ci; | |
| repair table table_name; | |
| drop database db_name; | |
| mysql -uroot -p db_name < file.sql | |
| grant ALL PRIVILEGES ON dbName.* to 'ironman'@'%'; |
| /** | |
| * Loop. | |
| * | |
| * Shows how to load and play a QuickTime movie file. | |
| * | |
| */ | |
| PGraphics pg; | |
| import processing.video.*; |
| require 'openssl' | |
| class String | |
| def encrypt(key) | |
| cipher = OpenSSL::Cipher::Cipher.new('DES-EDE3-CBC').encrypt | |
| cipher.key = Digest::SHA1.hexdigest key | |
| s = cipher.update(self) + cipher.final | |
| s.unpack('H*')[0].upcase | |
| end |