Skip to content

Instantly share code, notes, and snippets.

View vogon101's full-sized avatar

Freddie Poser vogon101

View GitHub Profile
package pkg;
public class Main {
public static void main(String[] args) {
Dog d = new Dog();
d.woof();
d.scratch();
Dog d1 = new AngryDog();
name := "TheWeather"
version := "0.1"
scalaVersion := "2.12.4"
resolvers += "Boundless" at "http://repo.boundlessgeo.com/main"
resolvers += "OSGEO" at "http://download.osgeo.org/webdav/geotools/"

Keybase proof

I hereby claim:

  • I am vogon101 on github.
  • I am vogon101 (https://keybase.io/vogon101) on keybase.
  • I have a public key ASChgQqHfoj5svUKIonuVJbFuieIPczepMpF-0rrGMrtIwo

To claim this, I am signing this object:

@vogon101
vogon101 / compile-bitcoin.sh
Last active May 28, 2016 15:15
Compiles bitcoin from source
#!/bin/bash
# Download the source
mkdir -p src && cd src
git clone https://github.com/bitcoin/bitcoin.git
git checkout v0.12.1
# Install the required packages
sudo apt-get install build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils
sudo apt-get install libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-program-options-dev libboost-test-dev libboost-thread-dev