Skip to content

Instantly share code, notes, and snippets.

View robb's full-sized avatar

Robb Böhnke robb

View GitHub Profile
@robb
robb / Big Piano Hack.pde
Created September 5, 2010 21:20
Big Piano Hack
/* Music Hackday 2010
* Big Piano Hack
*/
const int LED_PIN = 13;
const byte CHANNEL = 0;
/* The pin numbers in chromatic order
*/
const int INPUT_PINS[] = {32, 30, 28, 26, 24, 22};
@robb
robb / NSColor+Hex.h
Created April 1, 2011 14:57
NSColor+Hex
//
// NSColor+Hex.h
// SoundCloud
//
// Created by Robert Böhnke on 4/1/11.
// Copyright 2011 Soundcloud Ltd. All rights reserved.
//
#import <Foundation/Foundation.h>
'stereo':
size: {width: 23, height: 29}
'couch':
size: {width: 77, height: 34}
'computer':
size: {width: 19, height: 34}
spriteCount: 2
@robb
robb / robbs-hacks.md
Created April 18, 2012 14:32
Music Hack Day Hacks

Music Hack Day Hacks I worked on

  • [Spinamp]
    Music Hack Day San Francisco – Feb 11, 2012
  • [Notorious Siri]
    Music Hack Day London – Dec 3, 2011
  • [6 Strings]
    Music Hack Day Montreal – Sep 24, 2011
  • SoundNebula
    Music Hack Day Berlin – May 28
@robb
robb / numbers.md
Created April 23, 2012 16:46
Japanese Numbers Vocabulary

一 (one)

一  (いち) one
一つ (ひとつ) one thing
一時 (いちじ) one o'clock
一分 (いっぷん) one minute
一月 (いちがつ) January
一日 (いちにち) one day
一日 (ついたち) the 1st day of the month
一人 (ひとり) one person

@robb
robb / gist:2968975
Created June 21, 2012 22:22
macros and literals fail
STAssertEqualObjects(@[],
@[],
@"Works");
STAssertEqualObjects(@[@1],
@[@1],
@"Works");
STAssertEqualObjects(@[@1, @2, @3],
@[@1, @2, @3],
@robb
robb / gist:4431330
Created January 2, 2013 00:43
OpenCL vectors with Clang
typedef float float3 __attribute__((ext_vector_type(3)));
- (void)test;
{
float3 a = {1, 2, 3};
a = 2.0f * a;
NSLog(@"%f %f %f", a.x, a.y, a.z);
}
@robb
robb / gist:5524258
Created May 6, 2013 09:49
Convenience macro for creating singletons and the like. Handy if you define a lot of fixture objects.
#define SHARED_INSTANCE(EXPR) \
^(){ \
static typeof((EXPR)) instance; \
static dispatch_once_t onceToken; \
dispatch_once(&onceToken, ^{ \
instance = EXPR;\
});\
return instance;\
}()
//
// Example.m
// Partial
//
// Created by Robert Böhnke on 5/23/13.
// Copyright (c) 2013 Robert Böhnke. All rights reserved.
//
#import "Partial.h"
Pod::Spec.new do |s|
s.name = "ReactiveCocoa"
s.version = "2.0.0rc3"
s.summary = "A framework for composing and transforming sequences of values."
s.homepage = "https://github.com/blog/1107-reactivecocoa-is-now-open-source"
s.author = { "Josh Abernathy" => "josh@github.com" }
s.source = { :git => "https://github.com/ReactiveCocoa/ReactiveCocoa.git", :tag => 'v2.0-RC3' }
s.license = 'Simplified BSD License'
s.description = "ReactiveCocoa offers:\n" \
"1. The ability to compose operations on future data.\n" \