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
| ```sh | |
| wc -l `find . -name '*.*'` | sort --reverse | head -n 11 | |
| ``` |
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
| # 192.168.33.12 in Vagrantfile | |
| config.vm.network "private_network", ip: "192.168.33.12" | |
| # 23001 in Vagrantfile | |
| config.vm.network "forwarded_port", guest: 3000, host: 23001 | |
| bundle exec rdebug-ide --host 192.168.33.12 --port 1234 --dispatcher-port 26162 -- bin/rails s -b 192.168.33.12 -p 23001 | |
| # RubyMine Debug Configurations |
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
| # RubyMine | |
| vim Gemfile | |
| # => | |
| gem 'ruby-debug-ide' | |
| gem 'debase' | |
| # Remote host: | |
| localhost | |
| # Remote port: | |
| 1234 |
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
| http://endok.hatenablog.com/entry/2015/03/15/001327 |
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 config --global credential.helper osxkeychain | |
| http://dackdive.hateblo.jp/entry/2015/10/12/210547 | |
| http://qiita.com/hnakamur/items/cb04882cc69f2d1a7367 |
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
| <form name="myForm" ng-controller="MyCtrl"> | |
| <p>Favorite Beatle</p> | |
| <ul> | |
| <li ng-repeat="person in people"> | |
| <label>{{person.name}} | |
| <input type="radio" ng-model="$parent.name" name="name" value="{{person.name}}" required /> | |
| </label> | |
| </li> | |
| </ul> | |
| <p><tt>myForm.$invalid: {{myForm.$invalid}}</tt></p> |
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 config --global http.sslVerify false |
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
| http://cameong.hatenablog.com/entry/20120805/1344146992 |
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
| http://qiita.com/suzutan/items/44bcf20df711675c525c |
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
| http://www.monotalk.xyz/blog/el-capitan-%E3%81%A7-brew-install-%E3%81%97%E3%81%9F%E3%82%89error-undefined-method-for-nilnilclass-%E3%81%8C%E7%99%BA%E7%94%9F/ |
NewerOlder