Tested in Mac OS X: super == command
Open/Goto
- super+t: go to file
- super+ctrl+p: go to project
- super+r: go to methods
| vendor/ | |
| .bundle/ | |
| node_modules/ | |
| Gemfile.lock |
| # http://docs.rubygems.org/read/chapter/11 | |
| --- | |
| gem: --no-ri --no-rdoc | |
| benchmark: false | |
| verbose: true | |
| update_sources: true | |
| sources: | |
| - http://gems.rubyforge.org/ | |
| - http://rubygems.org/ | |
| backtrace: true |
| Download the following ZIPs: | |
| ARM Translation Installer v1.1 (http://www.mirrorcreator.com/files/0ZIO8PME/Genymotion-ARM-Translation_v1.1.zip_links) | |
| Download the correct GApps for your Android version: | |
| Google Apps for Android 5.0 (https://www.androidfilehost.com/?fid=95784891001614559 - gapps-lp-20141109-signed.zip) | |
| Google Apps for Android 4.4.4 (https://www.androidfilehost.com/?fid=23501681358544845 - gapps-kk-20140606-signed.zip) | |
| Google Apps for Android 4.3 (https://www.androidfilehost.com/?fid=23060877490000124 - gapps-jb-20130813-signed.zip) | |
| Google Apps for Android 4.2 (https://www.androidfilehost.com/?fid=23060877490000128 - gapps-jb-20130812-signed.zip) | |
| Google Apps for Android 4.1 (https://www.androidfilehost.com/?fid=22979706399755082 - gapps-jb-20121011-signed.zip) |
| <ruby> | |
| File.open("/root/workspaces.txt", "r") do |f| | |
| f.each_line do |line| | |
| run_single("workspace #{line}") | |
| run_single("db_export -f xml -a /root/msf_workspace_export/#{line}_export_13Aug2016.xml") | |
| run_single("db_export -f pwdump -a /root/msf_workspace_export/#{line}_export_13Aug2016.pwdump") | |
| end | |
| end | |
| </ruby> |
| #import "RCTEventEmitter.h" | |
| #import "RCTBridge.h" | |
| @interface GSEventEmitter : RCTEventEmitter <RCTBridgeModule> | |
| + (BOOL)application:(UIApplication *)application didSightBeacon:(NSString *)beaconID; | |
| + (BOOL)application:(UIApplication *)application didDepartBeacon:(NSString *)beaconID; | |
| @end |
As configured in my dotfiles.
start new:
tmux
start new with session name:
| #!/usr/bin/python3 | |
| # | |
| # usage: python3 docker_descendants.py <image_id> ... | |
| import sys | |
| from subprocess import check_output | |
| def main(images): | |
| image_ids = set(images) |