- A Billion Ernies http://abillionernies.bandcamp.com/
- Capdown http://www.facebook.com/pages/Capdown-Official/240545382656789
- The Display Team http://thedisplayteam.bandcamp.com/
- Fatter Than Albert http://fatterthanalbert.bandcamp.com/
- Paranoia Dance Party! http://paranoiadanceparty.bandcamp.com/
- Public Access http://www.facebook.com/publicaccess
- Stuck Lucky http://stucklucky.bandcamp.com/
- Tusker http://communityrecords.bigcartel.com/product/tusker-ep
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
in_host = '127.0.0.1' | |
out_host = '127.0.0.1' | |
db = 'dbname' | |
cs = %w( | |
aaa | |
bbb | |
) | |
cs.each do |c| | |
`mongoexport -h #{in_host} -d #{db} -c #{c} > out` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
BOX_NAME = ENV['BOX_NAME'] || "ubuntu12.04" | |
FORWARD_DOCKER_PORTS = ENV['FORWARD_DOCKER_PORTS'] | |
Vagrant::Config.run do |config| | |
# Setup virtual machine box. This VM configuration code is always executed. | |
config.vm.box = BOX_NAME | |
config.vm.forward_port 4243, 4243 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ ssh root@localhost -p 49153 -o DSAAuthentication=yes -o LogLevel=FATAL -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o ForwardAgent=yes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:12.04 | |
MAINTAINER SKAhack | |
run echo "deb http://archive.ubuntu.com/ubuntu quantal main universe" > /etc/apt/sources.list | |
RUN apt-get update | |
RUN apt-get install -y software-properties-common | |
RUN apt-get install -y openssh-server | |
RUN apt-get install -y sudo | |
RUN mkdir -p /home/docker |
- Cash For An 8-Ball - Fuck Friends 03:02
- Living Weapon - Get Up Off Your Ass 01:31
- Trash Generation - Anthem Of Empathy 02:48
- Dead Rejects - Drunk Again 01:40
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = function(grunt) { | |
"use strict"; | |
require('load-grunt-tasks')(grunt); | |
grunt.registerTask('build', [ | |
'nodewebkit' | |
]); | |
grunt.initConfig({ | |
nodewebkit: { | |
options: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function! g:open_github() "{{{ | |
let commit = system("git rev-parse HEAD") | |
let commit = substitute(commit, '^[ \t\n]\+', '', 'g') | |
let commit = substitute(commit, '[ \t\n]\+$', '', 'g') | |
let top = system('git rev-parse --show-toplevel') | |
let top = substitute(top, '^[ \t\n]\+', '', 'g') | |
let top = substitute(top, '[ \t\n]\+$', '', 'g') | |
let filepath = expand('%:p') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Burrows-Wheeler Transform; BWT | |
// http://en.wikipedia.org/wiki/Burrows%E2%80%93Wheeler_transform | |
// http://www.geocities.jp/m_hiroi/light/pyalgo48.html | |
// | |
var _ = require('underscore'); | |
function BWT(){} |