-
basic request is
-
must use specific date range
-
http://climatedataapi.worldbank.org/climateweb/rest/v1/country/type/var/start/end/ISO3[.ext]
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
| altoidnerd@LEPTON:~/clo/blockparser/forensics$ ls -l | |
| total 6736860 | |
| -rw-rw-r-- 1 altoidnerd altoidnerd 6891851520 Jul 18 23:36 all.txt | |
| -rw-rw-r-- 1 altoidnerd altoidnerd 3704761 Jul 19 02:54 unspent_50btc_2009 | |
| -rw-rw-r-- 1 altoidnerd altoidnerd 2312796 Jul 19 02:55 unspent_50btc_2010 | |
| -rw-rw-r-- 1 altoidnerd altoidnerd 175138 Jul 19 02:56 unspent_50btc_2011 | |
| -rw-rw-r-- 1 altoidnerd altoidnerd 43073 Jul 19 02:57 unspent_50btc_2012 | |
| -rw-rw-r-- 1 altoidnerd altoidnerd 283983 Jul 19 02:57 unspent_50btc_2013 | |
| -rw-rw-r-- 1 altoidnerd altoidnerd 155780 Jul 19 02:58 unspent_50btc_2014 | |
| altoidnerd@LEPTON:~/clo/blockparser/forensics$ cat unspent_50btc_20{09,10,11,12,13} | grep -c 50.\00000000 |
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
| cat all.txt | grep 1970 | egrep 50\.00000000 | egrep -n '2009' > unspent_50btc_2009 |
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
| # ./reddit/u/* | grep neckbeards | |
| # Display all 169,441,236 possibilities? (y or n) |
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
| # ls | |
| # | |
| # pwd | |
| # home/fridge | |
| # ls -laR | grep food |
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
| # cat github | grep working code | |
| # OSX |
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
| ~$ cat world | egrep (peace|just.?.?.?) | |
| ~$ |
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
| ./parser allBalances.txt > all.txt; | |
| sx decode-addr 1dice7fUkz5h4z2wPc1wLMPWgB5mDwKDx > hash | |
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
| dpkg -l | egrep -i bdb |
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
| t=$(date);uname='user_name'; | |
| uid=$(echo $t' '$uname); | |
| priv=$(sx newkey); | |
| echo $priv | sx addr > $uname.address; | |
| echo $priv > $uname.secret; | |
| echo $uid > $uname.info; | |
| addr=$(cat $uname.address); | |
| echo 'Hi '$uname', your deposit address is '$addr |