Skip to content

Instantly share code, notes, and snippets.

@moocowmoo
moocowmoo / bitwalletrecover.py
Created April 17, 2017 01:35 — forked from UdjinM6/bitwalletrecover.py
bitwalletrecover.py - recover compressed private keys from your bitcoin/litecoin/darkcoin wallet. Requires python3, pycoin (https://pypi.python.org/pypi/pycoin), and base58 (https://pypi.python.org/pypi/base58).
## bitwalletrecover.py - recover private keys from your darkcoin wallet
## (this version was not tested with bitcoin/litecoin).
## Requires python3, pycoin (https://pypi.python.org/pypi/pycoin),
## and base58 (https://pypi.python.org/pypi/base58).
##
## Starting with Python 3.4, pip is included by default with the Python binary
## installers. To install pip for older versions 3.x:
##
## sudo apt-get install python3-setuptools
## sudo easy_install3 pip
@moocowmoo
moocowmoo / tagchain-list.py
Last active July 11, 2017 13:13
block-a-doodle-chain - scan dash core bdb files for P2PK graffiti
#!/usr/bin/env python
# tagchain-list - scan dash core bdb files for P2PK graffiti
from __future__ import print_function
import re
import os
from collections import OrderedDict
from itertools import izip, repeat
@moocowmoo
moocowmoo / dash_budget_payout_dates.sh
Created November 24, 2017 05:29
estimate future dash budget payout dates
#!/bin/bash
D0=$(TZ=UTC date --date="$(date --date="2015-12-07T08:27:12+0000")");
for block in `seq 398784 16616 $((382168 + (16616*48)))`;
do DD=$(TZ=UTC date --date="$(date --date="$D0") +692 hours +20 minutes");
D0=$DD;
echo "$block - $DD";
done