Skip to content

Instantly share code, notes, and snippets.

@byrongibson
byrongibson / notes.md
Last active August 29, 2015 13:58
4/7 SF Bitcoin Devs Meetup: DevOps & Security

This is my recommended path for learning Haskell.

Something to keep in mind: don't sweat the stuff you don't understand immediately. Just keep moving.

Primary course

Installing Haskell

Ubuntu PPA

Extensible Scalable Coopetitive High Availability Trade Optimization Network: ESCHATON

I am the Eschaton; I am not your God.

I am descended from you, and exist in your future.

Thou shalt not violate causality within my historic light cone. Or else.

Singularity Sky by Charles Stross

Keybase proof

I hereby claim:

  • I am byrongibson on github.
  • I am byrongibson (https://keybase.io/byrongibson) on keybase.
  • I have a public key whose fingerprint is 45A7 4AB0 B07F F974 A05A F5F4 2CA8 ECDB EB0E 0CB7

To claim this, I am signing this object:

@byrongibson
byrongibson / 0build-bitcoin.sh
Created September 23, 2015 18:40 — forked from devrandom/00README.md
Building bitcoin with gitian-builder
# First run:
apt-get install apt-cacher python-vm-builder
vi /etc/default/apt-cacher # ensure autostart is enabled
sudo service apt-cacher start
git clone git://github.com/bitcoin/bitcoin.git
git clone git://github.com/devrandom/gitian-builder.git
mkdir gitian-builder/inputs
wget 'http://miniupnp.tuxfamily.org/files/download.php?file=miniupnpc-1.5.tar.gz' -O gitian-builder/inputs/miniupnpc-1.5.tar.gz
wget 'http://downloads.sourceforge.net/project/wxwindows/2.9.1/wxWidgets-2.9.1.tar.bz2' -O gitian-builder/inputs/wxWidgets-2.9.1.tar.bz2
@byrongibson
byrongibson / validate_json.py
Created February 27, 2012 03:07 — forked from mkalas/validate_json.py
Python JSON validator
#!/usr/bin/env python
"""
Example usage:
$ f=`cat test.json`; echo -e "$f"; python validate_json.py "$f"
{
"foo": true,
"bar": false,
baz: -23
}
Invalid JSON
@byrongibson
byrongibson / hac.bash
Created March 2, 2012 21:07 — forked from ehamberg/hac.bash
Script for downloading and combining the chapters of “Ηandbook of applied cryptography” to one pdf file
#!/bin/bash
# downloads all chapters of “handbook of applied cryptography”
# (<http://www.cacr.math.uwaterloo.ca/hac/>) and combines them into one pdf file.
# The resulting file can not be distributed and is only for personal use, as
# per the copyright notice at
# <http://www.cacr.math.uwaterloo.ca/hac/about/copyright-notice.html>.
# Requires ghostscript.
TEMPDIR="/tmp"