I hereby claim:
- I am paulcapestany on github.
- I am paulcapestany (https://keybase.io/paulcapestany) on keybase.
- I have a public key ASDGp4LnUdxcfV_Wr9AzeTnFMg3y2xlA0mFHCdL_gdkfGQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Follow these instructions in order to use Apple's "Network Link Conditioner" to test different connectivity qualities on both the simulator and on actual physical iOS devices.
In the ToDoLite-iOS project, change the kSyncGatewayUrl in AppDelegate.m if need be. Also, make sure that the FacebookAppID and URL Scheme in Info.plist is usable/accurate as well.
| # shortform git commands | |
| alias g='git' | |
| # cherry pick range of commits, starting from the tip of 'master', into 'preview' branch | |
| git rev-list --reverse --topo-order master... | while read rev; do git checkout preview; git cherry-pick $rev || break; done | |
| # create tracking branches for all remote branches | |
| git branch -a | grep -v HEAD | perl -ne 'chomp($_); s|^\*?\s*||; if (m|(.+)/(.+)| && not $d{$2}) {print qq(git branch --track $2 $1/$2\n)} else {$d{$_}=1}' | csh -xfs; | |
| # git reset newly added files |
| 2011-10-06T08:09:18Z — Seventh Continent | |
| 2011-10-17T18:23:08Z — Bitcoin-2 | |
| 2011-11-09T22:25:00Z — ZipZap | |
| 2011-12-14T20:44:52Z — SecondMarket | |
| 2011-12-26T03:44:39Z — Mirror | |
| 2012-01-18T03:02:01Z — Swarm | |
| 2012-02-19T05:12:56Z — Giftbit | |
| 2012-03-20T11:08:06Z — PAYMIUM | |
| 2012-05-15T05:39:16Z — MtGox | |
| 2012-05-22T22:46:44Z — Tradefor |
| for i in `curl https://developer.apple.com/videos/wwdc/2014/ | grep -oE 'ht.*?_hd.*?mov'`; do; curl -O $i; done |
| for i in `curl https://developer.apple.com/videos/wwdc/2014/ | grep -oE 'ht.*?_hd.*?mov' | sed 's;_hd;_sd;'`; do; curl -O $i; done |
| for i in `curl https://developer.apple.com/videos/wwdc/2014/ | grep -o 'ht.*pdf'`; do; curl -O $i; done |
| Wed Dec 15 22:43:51 2010 +0000 | |
| Mon Dec 13 16:26:14 2010 +0000 | |
| Sun Dec 12 18:38:02 2010 +0000 | |
| Sun Dec 12 18:20:36 2010 +0000 | |
| Wed Dec 8 23:23:48 2010 +0000 | |
| Mon Dec 6 15:59:28 2010 +0000 | |
| Sun Dec 5 09:29:30 2010 +0000 | |
| Sat Nov 27 23:12:41 2010 +0000 | |
| Thu Nov 25 20:41:57 2010 +0000 | |
| Thu Nov 25 16:40:25 2010 +0000 |
| for i in $(ls) ; do ; cd $i ; git init && git add . && git commit -a -m "Initial commit" && git branch myFork && git checkout myFork ; .. ; done ; |
| #!/bin/bash | |
| ########## | |
| # README # | |
| ########## | |
| # Make sure you've got the CLI tool `jq` installed | |
| # ↳ http://stedolan.github.io/jq/ | |
| # (if you've got homebrew on your Mac just do → `brew install jq`) |