Skip to content

Instantly share code, notes, and snippets.

If you have an opinion on ST (Speedy Trial) proposal please ACK/NACK this so we can log the level of support for this proposal
Details of the proposal are here: https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2021-March/018583.html
edit (April 14th 2021)
Jeremy Rubin has asked me to add the following:
"[bitcoin/bips#1104](https://github.com/bitcoin/bips/pull/1104) has been proposed (and implemented via
[bitcoin/bitcoin#21377](https://github.com/bitcoin/bitcoin/pull/21377)) as a concrete interpretation of @harding's original
proposal. Feel free to re-ACK on the BIP PR (and in the core PR if you feel qualified to review) if this plan matches your
@GpanosXP
GpanosXP / iotaWalletGenAddresses.js
Last active May 24, 2018 16:53
A script that continually clicks the generate new address button until you tell it to stop.
var genAddrId = genAddrId || undefined;
clearInterval(genAddrId);
var btnAddr = document.getElementById("generate-address-btn");
function genNewAddr()
{
if (btnAddr.innerText[2] != "D") return;
btnAddr.click();
setTimeout(function() { btnAddr.click(); }, 1000);
@sipa
sipa / blocksize.mediawiki
Last active September 22, 2023 08:22
Block size according to technological growth.

Published as BIP 103

@debrouxl
debrouxl / diceware.c
Last active March 3, 2024 15:15
A slightly faster and smaller version of Matt Whitlock's TI-68k/AMS Bitcoin diceware C+ASM program
/*
* This work is dedicated to the public domain. The statements in the
* Creative Commons Zero 1.0 Universal Public Domain Dedication apply.
* https://creativecommons.org/publicdomain/zero/1.0/
*
* Original author: Matt Whitlock, http://www.mattwhitlock.com/diceware/diceware.c
*
* Modified by Lionel Debroux:
* - build with GCC4TI, which has stdint.h;
* - manually unroll several short loops, for more speed without meaningful size impact;
@danfinlay
danfinlay / How to download streaming video.md
Last active March 23, 2024 03:32
How to download a streaming video with Google Chrome

How to download streaming video

Streaming just means a download that they don't want you to keep. But Chrome's developer tools make it easy to access what's really going on under the hood.

Open Developer Tools

From the page where you want to download some things, go into your chrome menu to open the developer tools. You can either:

1.  (On a mac): Command-option-J
2. (On a PC): Control-alt-J