Skip to content

Instantly share code, notes, and snippets.

class SingletonConfig
# Private scope
# Ensure correct scope by setting instance to null.
instance = null
# This private class gets initialized by the singleton.
class Config
# The actual configuration attributes
defaults:
foo: "bar"
#!/bin/sh
DEST=~/Dropbox/Git\ Backups/
REPO=$(basename "`git rev-parse --show-toplevel`")
(git bundle create "${DEST}${REPO}.bundle" --all)
.hll { background-color: #ffffcc }
.c { color: #586E75 } /* Comment */
.err { color: #93A1A1 } /* Error */
.g { color: #93A1A1 } /* Generic */
.k { color: #859900 } /* Keyword */
.l { color: #93A1A1 } /* Literal */
.n { color: #93A1A1 } /* Name */
.o { color: #859900 } /* Operator */
.x { color: #CB4B16 } /* Other */
.p { color: #93A1A1 } /* Punctuation */
@import url(http://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic);
//
// FONTS
//
$serif: 'Lora', serif;
$mono: Menlo, Consolas, "Liberation Mono", Courier, monospace;