Skip to content

Instantly share code, notes, and snippets.

View madelinecr's full-sized avatar
:octocat:
Octocatting

Finn madelinecr

:octocat:
Octocatting
View GitHub Profile
@madelinecr
madelinecr / index.js
Last active December 14, 2015 05:39 — forked from anonymous/index.html
A very rudimentary binary search tree in Javascript
var tree = new Tree();
function Node(value) {
this.value = value;
this.left = null;
this.right = null;
}
function Tree() {
this.head = null;
@madelinecr
madelinecr / mpd.conf
Created December 2, 2011 06:07 — forked from anonymous/mpd.conf
# An example configuration file for MPD
# See the mpd.conf man page for a more detailed description of each parameter.
# Files and directories #######################################################
#
# This setting controls the top directory which MPD will search to discover the
# available audio files and add them to the daemon's online database. This
# setting defaults to the XDG directory, otherwise the music directory will be
# be disabled and audio files will only be accepted over ipc socket (using