Skip to content

Instantly share code, notes, and snippets.

View jacobjoaquin's full-sized avatar

Jacob Joaquin jacobjoaquin

View GitHub Profile
@jacobjoaquin
jacobjoaquin / TENPRINT_growing_brush.pde
Created December 17, 2012 00:45
Inspired by: 10 PRINT CHR$(205.5+RND(1)); : GOTO 10
/*
Inspired by:
10 PRINT CHR$(205.5+RND(1)); : GOTO 10
Sketch by:
Jacob Joaquin
jacobjoaquin@gmail.com
*/
int tileSize_x = 50;
@jacobjoaquin
jacobjoaquin / ballpoint.pde
Created December 21, 2012 03:55
Ballpoint Circles on Lined Paped
/*
Ballpoint Circles on Lined Paper
Jacob Joaquin
jacobjoaquin@gmail.com
twitter @jacobjoaquin
*/
int nDraws;
color c1 = color(0, 35, 102, 120);
@jacobjoaquin
jacobjoaquin / tenprint_posneg.pde
Created December 23, 2012 20:51
Inspired by 10 PRINT CHR$(205.5+RND(1)); : GOTO 10
/*
Inspired by:
10 PRINT CHR$(205.5+RND(1)); : GOTO 10
Sketch by:
Jacob Joaquin
jacobjoaquin@gmail.com
*/
int tileSize_x = 100;
@jacobjoaquin
jacobjoaquin / testing.py
Created March 20, 2013 16:19
Yo dawg! I heard you like generators so we put generators in your generators.
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]
@jacobjoaquin
jacobjoaquin / Electronic_Bubbles.csd
Created April 12, 2013 17:11
Electronic Bubbles Jacob Joaquin Spring 1998 jacobjoaquin@gmail.com "My first Csound piece."
Electronic Bubbles
Jacob Joaquin
Spring 1998
jacobjoaquin@gmail.com
csound.noisepages.com
"My first Csound piece."
Bio
@jacobjoaquin
jacobjoaquin / gist:5373616
Created April 12, 2013 17:20
Blue Ghosts are Fine Fixins
Blue Ghosts are Fine Fixins
Jacob Joaquin
May 21, 2010
jacobjoaquin@gmail.com
csoundblog.com
<CsoundSynthesizer>
<CsInstruments>
sr = 44100
kr = 44100
@jacobjoaquin
jacobjoaquin / hanoi_test.csd
Created April 13, 2013 15:18
Sine Waves of Hanoi (test version) Jacob Joaquin June 3, 2010 jacobjoaquin@gmail.com
Sine Waves of Hanoi
Jacob Joaquin
June 3, 2010
jacobjoaquin@gmail.com
csoundblog.com
<CsoundSynthesizer>
<CsInstruments>
sr = 44100
kr = 44100
@jacobjoaquin
jacobjoaquin / mod_instr_2.csd
Last active December 16, 2015 07:19
Modular Instruments Part II 2007.07.02 The Csound Blog by Jacob Joaquin email jacobjoaquin@gmail.com (C)2007 Jacob Joaquin Licensed under Creative Commons (see below)
The Csound Blog
by Jacob Joaquin
email jacobjoaquin@gmail.com
web www.thumbuki.com/csound/blog
(C)2007 Jacob Joaquin
Licensed under Creative Commons (see below)
@jacobjoaquin
jacobjoaquin / pysco_envs.csd
Created April 18, 2013 15:20
Dynamically creates envelope tables, cycling through a user-specified range of table indexes.
<CsoundSynthesizer>
<CsInstruments>
sr = 44100
kr = 44100
ksmps = 1
nchnls = 1
0dbfs = 1.0
instr 1
@jacobjoaquin
jacobjoaquin / trapped_shuffle.csd
Created May 7, 2013 14:16
Original: Trapped in Convert by Richard Boulanger July 1979 Remix: Trapped In Convert Shuffle by Jacob Joaquin March 14, 2012
Trapped In Convert Shuffle
Remix by Jacob Joaquin March 14, 2012
<CsoundSynthesizer>
<CsOptions>
csound -d -m911 -W --expression-opt -otest.wav temp.orc temp.sco
</CsOptions>
<CsInstruments>
;============================================================================;
;============================================================================;