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
Electronic Bubbles | |
Jacob Joaquin | |
Spring 1998 | |
[email protected] | |
csound.noisepages.com | |
"My first Csound piece." | |
Bio |
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 collections import Iterable | |
def cycle(values): | |
pos = 0 | |
while True: | |
v = values[pos] | |
if isinstance(v, Iterable): | |
yield v.next() | |
else: | |
yield values[pos] |
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
/* | |
Inspired by: | |
10 PRINT CHR$(205.5+RND(1)); : GOTO 10 | |
Sketch by: | |
Jacob Joaquin | |
[email protected] | |
*/ | |
int tileSize_x = 100; |
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
/* | |
Ballpoint Circles on Lined Paper | |
Jacob Joaquin | |
[email protected] | |
twitter @jacobjoaquin | |
*/ | |
int nDraws; | |
color c1 = color(0, 35, 102, 120); |
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
/* | |
Inspired by: | |
10 PRINT CHR$(205.5+RND(1)); : GOTO 10 | |
Sketch by: | |
Jacob Joaquin | |
[email protected] | |
*/ | |
int tileSize_x = 50; |
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
/* | |
Inspired by: | |
10 PRINT CHR$(205.5+RND(1)); : GOTO 10 | |
Sketch by: | |
Jacob Joaquin | |
[email protected] | |
*/ | |
int tileSize_x = 50; |
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
/* | |
Inspired by: 10 PRINT CHR$(205.5+RND(1)); : GOTO 10 | |
Jacob Joaquin | |
[email protected] | |
*/ | |
int tileSize = 100; | |
int max_weight = 50; | |
int w = 800; | |
int h = 800; |
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
unsigned int counter = 0; | |
int t = 250; | |
void setup() { | |
pinMode(0, OUTPUT); | |
pinMode(1, OUTPUT); | |
pinMode(2, OUTPUT); | |
pinMode(3, OUTPUT); | |
pinMode(4, OUTPUT); | |
pinMode(5, OUTPUT); |
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
/* Atomic Fixin's | |
by Jacob Joaquin | |
[email protected] | |
csoundblog.com | |
Requires Csoundo | |
http://github.com/jacobjoaquin/Csoundo | |
Requires controlP5 | |
http://www.sojamo.de/libraries/controlP5/ |
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
Markov Experiment II | |
Jacob Joaquin | |
July 6, 2010 | |
[email protected] | |
csoundblog.com | |
<CsoundSynthesizer> | |
<CsInstruments> | |
sr = 44100 | |
kr = 44100 |