This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://github.com/jaysoo/todomvc-redux-react-typescript | |
| https://www.npmjs.com/package/typescript | |
| https://github.com/Microsoft/TypeScript | |
| https://www.npmjs.com/package/react | |
| https://www.npmjs.com/package/redux | |
| https://www.npmjs.com/package/react-redux |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://github.com/mitchellh/packer/issues/2732 | |
| ansible-local: execute remote #2732 | |
| https://github.com/mitchellh/packer/pull/1969 | |
| add ansible provisioner #1969 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ git clone https://github.com/opscode/bento | |
| $ cd bento | |
| $ vim centos-6.7-x86_64.json | |
| $ git diff --no-prefix | |
| diff --git centos-6.7-x86_64.json centos-6.7-x86_64.json | |
| index 380e0fa..2a302cd 100644 | |
| --- centos-6.7-x86_64.json | |
| +++ centos-6.7-x86_64.json |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| npm -g install react-native-cli | |
| react-native init AwesomeProject | |
| cd AwesomeProject/ | |
| npm -g install ios-sim | |
| open ios/AwesomeProject.xcodeproj | |
| react-native run-android | |
| (react-native start) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| unzip android-sdk_r24.3.4-macosx.zip | |
| mv android-sdk-macosx ~/Applications/ | |
| export ANDROID_HOME="$HOME/Applications/android-sdk-macosx" | |
| export PATH=${PATH}:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools | |
| android | |
| sudo ~/Applications/android-sdk-macosx/extras/intel/Hardware_Accelerated_Execution_Manager/silent_install.sh | |
| kextstat | grep intel | |
| android -avd | |
| emulator -avd <avd_name> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| npm -g list --depth=0 | |
| npm -g outdated | |
| npm -g install david | |
| david update -g |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pslurp -r --user user -H ddd.ddd.ddd.dd1 -H ddd.ddd.ddd.dd2 -x '-i /path/to/key.pem' -L ~/local/dst/dir /remote/src/dir . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| csshX --login user --ssh_args '-i /path/to/key.pem' ddd.ddd.ddd.dd1 ddd.ddd.ddd.dd2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ssh -o "ProxyCommand nc -X connect -x ddd.ddd.ddd.ddd:8080 %h %p" -i ~/.ssh/key.pem user@host |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| belongs_to :company, foreign_key: :company_id, foreign_type: :string, primary_key: :company_id | |
| has_many :employees, foreign_key: :company_id, primary_key: :company_id |