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
| # Title | |
| Hi, my name is naoyes. | |
| --- | |
| ## Lists | |
| * List1 | |
| * List2 |
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
| $ mkdir after2 && tar xzvf dummy.tgz -C after2 --strip-components 2 | |
| before/one/two1 | |
| before/one/two/ | |
| before/one/two/three/ | |
| $ tree after2 | |
| after2 | |
| ├── two | |
| │ └── three | |
| └── two1 |
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
| + export MYAPP_AWS_ACCESS_KEY_ID=yourawsaccesskeyid | |
| + export MYAPP_AWS_SECRET_KEY=yourawssecretkey |
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
| GRANT ALL ON <%= @db_name %>.* TO '<%= @username %>'@'localhost' IDENTIFIED BY '<%= @password %>'; | |
| FLUSH PRIVILEGES; |
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
| jQuery.ajax({ | |
| type: 'GET', | |
| url : '/hoge.json', | |
| }).pipe(function(data){ | |
| return jQuery({ | |
| type: 'POST', | |
| url : '/fuga' | |
| }) | |
| } | |
| ).done(function(){ |