Skip to content

Instantly share code, notes, and snippets.

run_mapreduce() {
hadoop jar /usr/lib/hadoop-0.20-mapreduce/contrib/streaming/hadoop-streaming-2.0.0-mr1-cdh4.1.1.jar -mapper $1 -reducer $2 -file $1 -file $2 -input $3 -output $4
}
alias hs=run_mapreduce
run_mapcombinereduce() {
hadoop jar /usr/lib/hadoop-0.20-mapreduce/contrib/streaming/hadoop-streaming-2.0.0-mr1-cdh4.1.1.jar -mapper $1 -reducer $2 -combiner $2 -file $1 -file $2 -input $
}
from web3 import Web3
import json
wallet_address = 'YOUR_WALLET_ADDRESS'
w3 = Web3(Web3.HTTPProvider('https://bsc.getblock.io/mainnet/?api_key=GET_BLOCK_API_KEY'))
wei_balance = w3.eth.getBalance(wallet_address)
eth_balance = w3.fromWei(wei_balance, 'ether')
print(eth_balance)
// names / ids: https://docs.google.com/spreadsheets/d/1wTTuxXt8n9q7C4NDXqQpI3wpKu1_5bGVmP9Xz0XGSyU/edit#gid=0
function ccprice(name, currencyOpt) {
var currency = currencyOpt || "usd";
var url = 'https://api.coingecko.com/api/v3/simple/price?ids=' + name + '&vs_currencies=' + currency.toLowerCase();
var response = UrlFetchApp.fetch(url);
var json = response.getContentText();
var jsonobject = JSON.parse(json);
@svzdvd
svzdvd / Reset OSX Time Machine Permissions
Created April 2, 2018 13:13
Reset OSX Time Machine Permissions
# Remove no-change attributes
sudo chflags nouchg ~/dir-to-fix
# Recursively clear all entended attributes
sudo xattr -rc ~/dir-to-fix
# Recursively reset to rational owner
sudo chown -R username:staff ~/dir-to-fix
# Recursively remove an ACL