Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am sbl on github.
  • I am slumenta (https://keybase.io/slumenta) on keybase.
  • I have a public key whose fingerprint is 604B CA40 0962 4056 94A3 B204 E28C EB69 1F7C ACEB

To claim this, I am signing this object:

@sbl
sbl / supercollider.snippets
Created September 21, 2013 08:27
Snipmate snippets for the scvim plugin http://github.com/sbl/scvim
# synthesis
snippet buf
Buffer.read(${1:s}, "${2:sounds/a11wlk01.wav}");
${3}
snippet syn
Synth(\${1:name}, [${2:\out, 0}]);
${3}
snippet sdef
(
SynthDef(\${1:foobar}, {
@sbl
sbl / Hstore document store
Last active December 21, 2015 23:19
having fun with hstore as your document store
class ActivateHstore < ActiveRecord::Migration
def self.up
execute "CREATE EXTENSION hstore"
end
def self.down
execute "DROP EXTENSION hstore"
end
end
@sbl
sbl / restkit_fork.podspec
Created February 27, 2013 09:58
Prelim podspec for the huesforalice/restkit fork
Pod::Spec.new do |s|
s.name = 'RestKit'
s.version = '0.10.2'
s.summary = 'RestKit is a framework for consuming and modeling RESTful web resources on iOS and OS X.'
s.homepage = 'http://www.restkit.org'
s.author = { 'Blake Watters' => 'blakewatters@gmail.com' }
s.source = { :git => 'https://github.com/huesforalice/RestKit.git', :commit => 'cc3eec28ffaa7ff55c2c431b0933de69b9b36bb7' }
s.license = 'Apache License, Version 2.0'
s.source_files = 'Code/RestKit.h'