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
#include <stdarg.h> | |
#include <MIDI.h> | |
// http://www.phys.unsw.edu.au/jw/notes.html <- for MIDI_NOTE | |
// Range : 40 - 1015 | |
#define RLOW 40 | |
#define RHIGH 1015 | |
#define MIDI_CHANNEL 1 | |
#define MIDI_NOTE 48 // C3 | |
int range = RHIGH - RLOW; |
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
http://onestepback.org/index.cgi/Tech/Ruby/Metaclasses.red | |
http://obiefernandez.com/presentations/obie_fernandez-agile_dsl_development_in_ruby.pdf | |
http://weblog.jamisbuck.org/2006/4/20/writing-domain-specific-languages | |
http://martinfowler.com/dslwip/ | |
http://www.artima.com/rubycs/articles/ruby_as_dsl4.html | |
http://www.jroller.com/rolsen/entry/building_a_dsl_in_ruby1 | |
http://weblog.raganwald.com/2007/03/approach-to-composing-domain-specific.html | |
http://raganwald.com/source/dsl_and_let.html | |
http://www.infoq.com/presentations/vanderburg-state-of-dsl-ruby | |
http://www.infoq.com/presentations/5W-of-DSL |