I hereby claim:
- I am thephez on github.
- I am thephez (https://keybase.io/thephez) on keybase.
- I have a public key ASBT0VBE_gd8zag0PSOJu-lbDRccIrdilzWvsXZ-gib1YQo
To claim this, I am signing this object:
#!/bin/bash | |
# Default Variable Declarations | |
DEFAULT="Default.txt" | |
FILEEXT=".ovpn" | |
CRT=".crt" | |
KEY=".3des.key" | |
CA="ca.crt" | |
TA="ta.key" | |
""" | |
Build recursive hash of files in directory tree in hashdeep format. | |
Hashdeep format description: | |
http://md5deep.sourceforge.net/start-hashdeep.html | |
hashdeep.py differences from original hashdeep: | |
- if called without arguments, automatically starts to build |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
echo "Start Export Process" | |
echo "Log into Keybase..." | |
keybase login | |
echo "Exporting your PGP keys..." | |
keybase pgp export -o keybase.public.key | |
keybase pgp export -s -o keybase.private.key |
#!/bin/bash | |
# Get list of addresses and store in array (may include send addresses not belonging to this wallet) | |
mapfile -t ADDRESS_LIST < <(dash-cli -rpcuser=username -rpcpassword=password listreceivedbyaddress 0 true | jq -r '.[].address') | |
# Check each address to see if it is mine and output only those that are | |
for addr in "${ADDRESS_LIST[@]}" | |
do | |
MINE=$(dash-cli -rpcuser=username -rpcpassword=password validateaddress "$addr" | jq .ismine) |
CLI_PATH="$HOME/dashevo/dash/src" | |
CONF_FILE="$HOME/dashcore_evo/devnet-mydevnet.conf" | |
RUN_CLI="$CLI_PATH/dash-cli -conf=$CONF_FILE" | |
USERNAME="myuser0001" | |
printf "dash-cli in: $CLI_PATH\n" | |
printf "Dash conf file: $CONF_FILE\n\n" | |
# Returns the value contained in "$prop" of "$json" |
{ | |
"x-send-defaults": true, | |
"openapi": "3.0.0", | |
"x-api-id": "json-rpc-example", | |
"info": { | |
"title": "JSON-RPC OpenAPI", | |
"version": "1.0.0", | |
"description": "Example of how to describe a JSON-RPC 2 API in OpenAPI" | |
}, | |
"servers": [ |
#!/usr/bin/python | |
import subprocess | |
import os | |
import simplejson | |
import datetime | |
import sys | |
import math | |
import re | |
from time import time |
#!/bin/bash | |
# P2P changes | |
git diff master develop src/protocol.cpp | |
# Spork changes | |
git diff master develop src/spork.h | |
# CLI changes | |
git diff master develop src/init.cpp | grep 'strUsage' |
# From https://bitcoin.stackexchange.com/a/48395 | |
import struct | |
import socket | |
import time | |
import hashlib | |
import binascii | |
# Dash Testnet | |
magic = "cee2caff" |