Skip to content

Instantly share code, notes, and snippets.

@infoburp
infoburp / .gitconfig
Created October 1, 2012 02:07 — forked from textarcana/git-log2json.sh
git log JSON format > d3? HTML5GOURCE?
[alias]
log-json = log --pretty=format:'\"%h\": {%n \"commit\": \"%H\",%n \"author\": \"%an <%ae>\",%n \"date\": \"%ad\",%n \"message\": \"%s\"%n}'
@infoburp
infoburp / README.md
Last active August 29, 2015 14:06 — forked from knutwalker/README.md

Installation

  • requires python 2.7 (maybe python 3.3+ will work too, didn't tested it)

Put git2neo.py somewhere in your $PATH and chmod +x it.

Usage

@infoburp
infoburp / wmiirc
Last active August 29, 2015 14:06 — forked from benkaiser/wmiirc
#!/bin/dash -f
# Configure wmii
wmiiscript=wmiirc # For wmii.sh
. wmii.sh
# Configuration Variables
MODKEY=Mod4
UP=k
DOWN=j
@infoburp
infoburp / index.html
Last active August 29, 2015 14:07 — forked from steren/index.html
<div id="insertTest"></div>
<script>
var wikipediaHTMLResult = function(data) {
var readData = $('<div>' + data.parse.text.* + '</div>');
// handle redirects
var redirect = readData.find('li:contains("REDIRECT") a').text();
if(redirect != '') {
callWikipediaAPI(redirect);