I hereby claim:
- I am rohankapurdev on github.
- I am 0xrohan (https://keybase.io/0xrohan) on keybase.
- I have a public key ASBTqqFaNq3S599vDEyX85rufyEPQ29javammGfIlwBpZwo
To claim this, I am signing this object:
| [package] | |
| name = "databento-pg" | |
| version = "0.1.0" | |
| edition = "2021" | |
| [dependencies] | |
| databento = "0.12.0" | |
| dotenv = "0.15.0" | |
| futures = "0.3.30" | |
| serde = { version = "1.0.205", features = ["derive"] } |
| [package] | |
| name = "batch_process" | |
| version = "0.1.0" | |
| edition = "2021" | |
| # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | |
| [dependencies] | |
| base58 = "0.2.0" | |
| base64 = "0.22.1" |
| # source:http://geocities.com/SiliconValley/heights/7052/opcode.txt | |
| From: mark@omnifest.uwm.edu (Mark Hopkins) | |
| Newsgroups: alt.lang.asm | |
| Subject: A Summary of the 80486 Opcodes and Instructions | |
| (1) The 80x86 is an Octal Machine | |
| This is a follow-up and revision of an article posted in alt.lang.asm on | |
| 7-5-92 concerning the 80x86 instruction encoding. | |
| The only proper way to understand 80x86 coding is to realize that ALL 80x86 |
| import SwiftUI | |
| extension Color { | |
| static var background: Color { | |
| return Color(uiColor: .systemBackground) | |
| } | |
| static var secondaryBackground: Color { | |
| return Color(uiColor: .secondarySystemBackground) | |
| } |
| #!/bin/bash | |
| HYPERTHREADING=1 | |
| function toggleHyperThreading() { | |
| for CPU in /sys/devices/system/cpu/cpu[0-9]*; do | |
| CPUID=`basename $CPU | cut -b4-` | |
| echo -en "CPU: $CPUID\t" | |
| [ -e $CPU/online ] && echo "1" > $CPU/online | |
| THREAD1=`cat $CPU/topology/thread_siblings_list | cut -f1 -d,` |
I hereby claim:
To claim this, I am signing this object:
This guide is specific to getting LND 0.5-beta and Bitcoind running on Ubuntu 16.04 LTS for mainnet. It is ageing rapidly and includes steps not necessary on newer versions of LND
Original installation guide:
This guide is broken into the following sections:
bitcoind and set to start automatically| /** | |
| * Twitter Bot - A twitter bot that scrapes network explorer applications for statistics to tweet about every 24 hours | |
| * Current protocols scraped: 0x, Maker, Kyber [More to be added] | |
| * | |
| * Author: Rohan Kapur | |
| * ~ February 2019 | |
| */ | |
| var Twit = require('twit'); | |
| var TwitterBot = require('node-twitterbot').TwitterBot; |
| var Tx = require('ethereumjs-tx'); | |
| var Web3 = require('web3') | |
| var web3 = new Web3(new Web3.providers.HttpProvider('https://ropsten.infura.io/v3/fcea8205fda14a14bcb9a2dbb27cc46f')); | |
| const PRIVATE_KEY = Buffer.from('privateKEYHere', 'hex'); | |
| const srcTokenAddress = 'srcTokenAddressHere'; //BAT Token Address | |
| const srcTokenABI = [{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type" |
| var Tx = require('ethereumjs-tx'); | |
| var Web3 = require('web3'); | |
| var web3 = new Web3('https://ropsten.infura.io/v3/fcea8205fda14a14bcb9a2dbb27cc46f'); | |
| const PRIVATE_KEY = Buffer.from('4220E3629D1ABD8074AEE302CE2DB1538E75DDB07684A94EDDCC9422E840C067', 'hex'); | |
| const srcTokenAddress = '0xB47f1A9B121BA114d5e98722a8948e274d0F4042'; //SALT Token Address | |
| const srcTokenABI = [{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":" |