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://quirktools.com/screenfly/ |
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
| # HTML / CSS | |
| http://learn.shayhowe.com/html-css/ |
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/alfuken/mina-rails-unicorn-nginx-god/blob/master/config/deploy.rb | |
| https://github.com/makevoid/decibel/blob/master/config/deploy.rb |
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
| # Tunnel: allow to use localhost:2525 as if it was server.com:25 | |
| ssh -f user@server.com -L 2525:server.com:25 -N | |
| # SOCKS Proxy: configure web browser to use SOCKS proxy on localhost:8080 | |
| ssh -D 8080 -C user@server.com |
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 flow | |
| http://nvie.com/posts/a-successful-git-branching-model/ | |
| https://github.com/nvie/gitflow/tree/master#readme | |
| http://jeffkreeftmeijer.com/2010/why-arent-you-using-git-flow/ | |
| # Git best practices | |
| http://kentnguyen.com/development/visualized-git-practices-for-team/ | |
| http://gitguru.com/2009/02/22/integrating-git-with-a-visual-merge-tool/ | |
| # Push to remote server | |
| http://www.arlocarreon.com/blog/git/push-git-repo-into-shared-hosting-account-like-hostgator/ | |
| http://motorscript.com/setting-up-a-remote-git-repo-on-shared-server-like-hostgator/ |
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://warpech.github.io/jquery-handsontable/index.html |
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
| mysqldump --user="username" --password="password" -c -e --default-character-set=utf8 --single-transaction --skip-set-charset --add-drop-database -B "database_name" > dump.sql | |
| sed 's/DEFAULT CHARACTER SET latin1/DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci/' <dump.sql | sed 's/DEFAULT CHARSET=latin1/DEFAULT CHARSET=utf8/' >dump-fixed.sql | |
| mysql --user="username" --password="password" < dump-fixed.sql |
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
| mysqldump --user="username" --password="password" --skip-triggers --compact --no-create-info --ignore-table="database_name.schema_migrations" --ignore-table="database_name.table_populated_through_migration" "database_name" > "dump.sql" |
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
| SHOW VARIABLES LIKE 'char%'; | |
| SHOW VARIABLES LIKE '%collation%'; | |
| SHOW TABLE STATUS FROM database_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
| file --mime myfile.txt |