#RubyMine Watchers
- params –
self.request.params
| javascript:var documents=[];if(window.frames.length > 0){for(i=0;i<window.frames.length;i=i+1){ documents[i]=window.frames[i].document;}}else{documents[0]=window.document;}for(i=0;i<documents.length;i=i+1){var a=documents[i].getElementsByTagName('input');for(i=0;i<a.length;i=i+1){a[i].checked='checked';}void(0);} |
| do shell script "/Applications/Google\\ Chrome.app/Contents/MacOS/Google\\ Chrome --user-data-dir=\"/Volumes/PrivateHome/ChromeProfile\" > /dev/null 2>&1 &" |
| =SUMIF($A,"=true",$C) |
| configure do | |
| set :show_exceptions, false | |
| end | |
| error do | |
| {error: env['sinatra.error'].message}.to_json | |
| end |
| zshin, zshout, zsherr = Open3.popen3('zsh') | |
| Find.find('../..') do |f| | |
| if f =~ /\.git$/ | |
| repository = f.gsub /\.git$/, '' | |
| Logger.new(STDOUT).info('Checking '){repository} | |
| zshin.puts 'cd %s'%repository | |
| zshin.puts 'rvm-prompt' | |
| zshout.gets | |
| #puts `zsh -ci "cd #{repository} && rvm-prompt && git up"` | |
| end |
| brew uninstall imagemagick | |
| cd /usr/local/Cellar | |
| git checkout 834ce4a /usr/local/Library/Formula/imagemagick.rb | |
| brew install imagemagick |
| 2/16/13 12:15:52.183 AM com.apple.backupd[1490]: Created new backup: 2013-02-16-001552 | |
| 2/16/13 12:16:08.992 AM com.apple.backupd[1490]: Starting post-backup thinning | |
| 2/16/13 12:16:08.992 AM com.apple.backupd[1490]: No post-back up thinning needed: no expired backups exist | |
| 2/16/13 12:16:09.097 AM com.apple.backupd[1490]: Backup completed successfully. | |
| 2/16/13 12:21:35.476 AM com.apple.backupd[3118]: Starting manual backup | |
| 2/16/13 12:21:36.023 AM com.apple.backupd[3118]: Backing up to: /Volumes/Capsule/Backups.backupdb | |
| 2/16/13 12:24:43.148 AM com.apple.backupd[3118]: Found 884279 files (75.32 GB) needing backup | |
| 2/16/13 12:25:25.793 AM com.apple.backupd[3118]: Backup canceled. | |
| 2/16/13 12:37:32.306 AM com.apple.backupd[1289]: Starting manual backup | |
| 2/16/13 12:37:32.415 AM com.apple.backupd[1289]: Backing up to: /Volumes/Capsule/Backups.backupdb |
| require 'barby' | |
| require 'barby/barcode/qr_code' | |
| require 'barby/outputter/png_outputter' | |
| desc 'Encodes text into QR Code' | |
| task :encode, [:text] do |t, args| | |
| barcode = Barby::QrCode.new(args[:text]) | |
| outputter = Barby::PngOutputter.new(barcode) | |
| File.open('barcode.png', 'w'){|f| f.write outputter.to_png } | |
| end |
| ARCHFLAGS="-arch x86_64" gem install mysql2 -- –with-mysql-config=/usr/local/bin/mysql_config |