- http://www.qcontokyo.com/data_2013/DouglasCrockford_QConTokyo2013.pdf
- http://www.qcontokyo.com/data_2013/ToruYoshikawa_QConTokyo2013.pdf
- http://www.qcontokyo.com/data_2013/DioSynodinos_QConTokyo2013-2.pdf
- https://speakerdeck.com/jnewland/chatops-at-github
- http://www.qcontokyo.com/data_2013/Kitano._Kawamura_QConTokyo2013.pdf
- http://www.qcontokyo.com/data_2013/MugaNishizawa_QConTokyo2013.pdf
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 ERR! cb() never called! | |
| npm ERR! not ok code 0 |
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 log --since=1.day --author='Your Name' |
- Markdown Processing
Evernote Search- Evernote 3.3
- http://www.alfredforum.com/topic/840-evernote-33-search-and-add-within-alfred/
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
| #!/bin/sh | |
| echo "### make .grunt-init directory ###" | |
| mkdir $HOME/.grunt-init | |
| echo "### clone grunt-init-commonjs ###" | |
| git clone [email protected]:gruntjs/grunt-init-commonjs.git ~/.grunt-init/commonjs | |
| echo "### clone grunt-init-gruntfile ###" | |
| git clone [email protected]:gruntjs/grunt-init-gruntfile.git ~/.grunt-init/gruntfile | |
| echo "### clone grunt-init-gruntplugin ###" | |
| git clone [email protected]:gruntjs/grunt-init-gruntplugin.git ~/.grunt-init/gruntplugin |
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
| history | tail -n 1 -q | awk '$1=""; {print}' | pbcopy |
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
| #!/bin/node | |
| // via http://starwing.net/suddenly_death.html | |
| String.prototype.lengthByte = function() | |
| { | |
| var str = this; | |
| var r = 0; | |
| for (var i = 0; i < str.length; i++) { | |
| var c = str.charCodeAt(i); |
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
| _人人人人人人_ | |
| > 突然の死 < | |
|  ̄Y^Y^Y^Y^Y ̄ |
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
| editor = env LANG=ja_JP.UTF-8 /Applications/MacVim.app/Contents/MacOS/Vim \"$@\" |