- [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
This file contains 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
/* 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}; |
This file contains 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
// | |
// NSColor+Hex.h | |
// SoundCloud | |
// | |
// Created by Robert Böhnke on 4/1/11. | |
// Copyright 2011 Soundcloud Ltd. All rights reserved. | |
// | |
#import <Foundation/Foundation.h> |
This file contains 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
'stereo': | |
size: {width: 23, height: 29} | |
'couch': | |
size: {width: 77, height: 34} | |
'computer': | |
size: {width: 19, height: 34} | |
spriteCount: 2 |
This file contains 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
STAssertEqualObjects(@[], | |
@[], | |
@"Works"); | |
STAssertEqualObjects(@[@1], | |
@[@1], | |
@"Works"); | |
STAssertEqualObjects(@[@1, @2, @3], | |
@[@1, @2, @3], |
This file contains 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
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); | |
} |
This file contains 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
#define SHARED_INSTANCE(EXPR) \ | |
^(){ \ | |
static typeof((EXPR)) instance; \ | |
static dispatch_once_t onceToken; \ | |
dispatch_once(&onceToken, ^{ \ | |
instance = EXPR;\ | |
});\ | |
return instance;\ | |
}() |
This file contains 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
// | |
// Example.m | |
// Partial | |
// | |
// Created by Robert Böhnke on 5/23/13. | |
// Copyright (c) 2013 Robert Böhnke. All rights reserved. | |
// | |
#import "Partial.h" |
This file contains 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
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" => "[email protected]" } | |
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" \ |
OlderNewer