I hereby claim:
- I am alwaysbcoding on github.
- I am alwaysbcoding (https://keybase.io/alwaysbcoding) on keybase.
- I have a public key ASD-nlGrow7CCDpN4chZFmBjgpbaXvXlpP0-hLQ8nZfgbgo
To claim this, I am signing this object:
| { | |
| "project": { | |
| "projectId": "YOUR_PROJECT_ID", | |
| "apiToken": "YOUR_API_TOKEN" | |
| }, | |
| "locales": { | |
| "sourceLocale": "en", | |
| "defaultLocale": "en", | |
| "targetLocales": [ | |
| "ar", |
| set -g prefix C-a | |
| bind C-a send-prefix | |
| unbind C-b | |
| setw -g mode-mouse off | |
| setw -g mode-keys vi | |
| set -g status-utf8 on | |
| bind r source-file ~/.tmux.conf \; display "Reloaded!" | |
| bind | split-window -h | |
| bind - split-window -v |
I hereby claim:
To claim this, I am signing this object:
| // Create a new directory, install bitcore-explorers, and run the node shell | |
| mkdir bitcoin && cd bitcoin | |
| npm install --save bitcore-explorers | |
| node | |
| // Require the Bitcore libraries into the global namespace | |
| var bitcore = require(“bitcore-lib”) | |
| var explo = require(“bitcore-explorers”) | |
| var shell = {} |
| { | |
| "mixhash": "0x0000000000000000000000000000000000000000000000000000000000000000", | |
| "nonce": "0x0000000000000042", | |
| "timestamp": "0x0", | |
| "parentHash": "0x0000000000000000000000000000000000000000000000000000000000000000", | |
| "extraData": "0x0", |
| // Running on Ubuntu 16.04 (64-bit) | |
| // Do this first | |
| sudo add-apt-repository -y ppa:ethereum/ethereum | |
| sudo apt-get update | |
| // Install Geth | |
| sudo apt-get install ethereum | |
| // Install Solc |
| contract DecypherCoin { | |
| // ERC20 State | |
| mapping (address => uint256) public balances; | |
| mapping (address => mapping (address => uint256)) public allowances; | |
| uint256 public totalSupply; | |
| // Human State | |
| string public name; | |
| uint8 public decimals; |
| <h1>Example Text</h1> | |
| <script> | |
| var message = "DecypherTV"; | |
| var userEthereumClient; | |
| window.addEventListener("load", function() { | |
| userEthereumClient = window.web3; | |
| }) | |
| // Private Key | |
| var pKey = "..." | |
| var pKeyx = new Buffer(pKey, "hex") | |
| // Shared Message | |
| var message = "..." | |
| var messageHash = web3.sha3(message) | |
| var messageHashx = new Buffer(messageHash.replace("0x", ""), "hex") | |
| // Signed Hash |
| contract CrowdFund { | |
| address public beneficiary; | |
| uint256 public goal; | |
| uint256 public deadline; | |
| mapping (address => uint256) funders; | |
| address[] funderAddresses; | |
| event NewContribution(address indexed _from, uint256 _value); |