I hereby claim:
- I am zebbra2014 on github.
- I am zebbra2014 (https://keybase.io/zebbra2014) on keybase.
- I have a public key ASDmyfrubxvY_63Qhaqn1ED70o3krIlJS2C8O2dihPYLlAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| { | |
| "body": { | |
| "key": { | |
| "eldest_kid": "0120e6c9faee6f1bd8ffadd085aaa7d440fbd28de4ac89494b60bc3b676284f60b940a", | |
| "host": "keybase.io", | |
| "kid": "0120e6c9faee6f1bd8ffadd085aaa7d440fbd28de4ac89494b60bc3b676284f60b940a", | |
| "uid": "50798403bba6aa87a4850883dc2c9019", | |
| "username": "zebbra2014" | |
| }, | |
| "merkle_root": { |
People
:bowtie: |
😄 :smile: |
😆 :laughing: |
|---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
geth --dev --rpc --rpcaddr "0.0.0.0" --rpccorsdomain "*" --rpcapi "admin,debug,miner,shh,txpool,personal,eth,net,web3" console
Dionysis Zindros, National Technical University of Athens dionyziz@gmail.com
pseudonymous anonymous web-of-trust identity trust bitcoin namecoin proof-of-burn timelock decentralized anonymous marketplace openbazaar
| #!/usr/bin/env python | |
| import sys, re | |
| ip_regex = re.compile('(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})') | |
| ip_match = ip_regex.match(sys.argv[1]) | |
| if (ip_match == None): | |
| print 'Invalid address' | |
| sys.exit(1) | |
| hex_ip_addr = 0 | |
| for i in range(1,5): |
| #download apache binaries: http://www.apachelounge.com/download/ | |
| #http://www.apachelounge.com/download/VC11/binaries/httpd-2.4.10-win32-VC11.zip | |
| #unzip to a location you have permissions on your machine | |
| #go in to folder to install apache and start it | |
| cd c:\Apache24\conf | |
| # edit file httpd.conf | |
| # change all directory paths to cd c:\Apache24\ | |
| #install apache |
| # builds dogecoin 1.8.2 with openssl 1.0.1l and boost 1.55 | |
| # tested and verified on CentOS: 2.6.32-504.el6.x86_64 | |
| export DOGEREF=v1.8.2 # change this if you want | |
| export DEST_DIR=~/dogecoin # change this if you want, too | |
| export DOGE_BUILD_LOC=~/doge-build # and this, too | |
| # init env | |
| mkdir -p $DOGE_BUILD_LOC | |
| pushd $DOGE_BUILD_LOC |
| # litecoin.conf configuration file. Lines beginning with # are comments. | |
| # Network-related settings: | |
| # Run on the test network instead of the real litecoin network. | |
| #testnet=0 | |
| # Connect via a socks4 proxy | |
| #proxy=127.0.0.1:9050 |
| # bitcoin.conf configuration file. Lines beginning with # are comments. | |
| # Network-related settings: | |
| # Run on the test network instead of the real bitcoin network. | |
| #testnet=0 | |
| # Connect via a socks4 proxy | |
| #proxy=127.0.0.1:9050 | |
| ############################################################## |