create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
| [ | |
| // Drawn from http://www.sublimetext.com/forum/viewtopic.php?f=2&t=7477#p31755 | |
| // Kills the annoying default of cmd-left jumping to the start of a line's | |
| // code, rather than column 0. | |
| { "keys": ["super+left"], "command": "move_to", "args": {"to": "hardbol", "extend": false} }, | |
| { "keys": ["super+right"], "command": "move_to", "args": {"to": "hardeol", "extend": false} } | |
| ] |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
| <?php | |
| /** | |
| * Usage: | |
| * Send the url you want to access url encoded in the url paramater, for example (This is with JS): | |
| * /twitter-proxy.php?url='+encodeURIComponent('statuses/user_timeline.json?screen_name=MikeRogers0&count=2') | |
| */ | |
| // The tokens, keys and secrets from the app you created at https://dev.twitter.com/apps | |
| $config = array( |
| { | |
| "name": "soup_realtime", | |
| "version": "0.1.0", | |
| "description": "realtime server", | |
| "main": "realtime-server.js", | |
| "scripts": { | |
| "test": "echo \"Error: no test specified! Configure in package.json\" && exit 1" | |
| }, | |
| "repository": "", | |
| "dependencies": { |
#Mac OS X
| # overload cd to gc git when entering a directory | |
| cd () { | |
| builtin cd "$@" | |
| if [ -d ".git" ]; then | |
| (git gc --quiet &) | |
| fi | |
| } |