Skip to content

Instantly share code, notes, and snippets.

0x15ee5afa3b8723ef1fb1753f769443285581d0c163bbeb4f2abb3c0ceada69f7

@wanderer
wanderer / index.html
Last active August 7, 2017 19:12 — forked from d3noob/.block
D3.js tree diagram generated from external (JSON) data
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Collapsible Tree Example</title>
<style>
.node circle {
@wanderer
wanderer / vs.js
Last active August 29, 2015 14:07 — forked from obscuren/vs.js
eth.getKey(function(key) {
eth.getStorageAt("someaddr", "somelocation", function(address) {
eth.compile("thiscode", function(code) {
eth.transact({to: address, from: key, gas: 10000, gasPrice: eth.gasPrice, data:[code]}, function(tx){
console.log(tx)
})
})
})
})
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@wanderer
wanderer / gotham.py
Created August 23, 2012 06:21 — forked from jart/gotham.py
Gothic Poetry Generator
r"""
gotham
~~~~~~
Gothic Poetry Generator
"""
import sys
@wanderer
wanderer / gotham.py
Created August 23, 2012 06:20 — forked from jart/gotham.py
Gothic Poetry Generator
r"""
gotham
~~~~~~
Gothic Poetry Generator
"""
import sys
@wanderer
wanderer / gotham.py
Created August 23, 2012 06:20 — forked from jart/gotham.py
Gothic Poetry Generator
r"""
gotham
~~~~~~
Gothic Poetry Generator
"""
import sys
@wanderer
wanderer / osm2geo.js
Created April 3, 2012 17:52 — forked from tecoholic/osm2geo.js
OSM2GEO - A JS Converter to convert OSM to GeoJSON
/**************************************************************************
* OSM2GEO - OSM to GeoJSON converter
* OSM to GeoJSON converter takes in a .osm XML file as input and produces
* corresponding GeoJSON object.
*
* AUTHOR: P.Arunmozhi <aruntheguy@gmail.com>
* DATE : 26 / Nov / 2011
* LICENSE : WTFPL - Do What The Fuck You Want To Public License
* LICENSE URL: http://sam.zoy.org/wtfpl/
*