<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>codehop &#187; sequencer</title>
	<atom:link href="https://codehop.com/tag/sequencer/feed/" rel="self" type="application/rss+xml" />
	<link>https://codehop.com</link>
	<description>#code #art #music</description>
	<lastBuildDate>Mon, 23 Apr 2012 18:37:35 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.2.38</generator>
	<item>
		<title>Lists as Micro-Sequencers</title>
		<link>https://codehop.com/lists-as-micro-sequencers/</link>
		<comments>https://codehop.com/lists-as-micro-sequencers/#comments</comments>
		<pubDate>Sun, 11 Apr 2010 19:32:38 +0000</pubDate>
		<dc:creator><![CDATA[Jacob Joaquin]]></dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[pattern]]></category>
		<category><![CDATA[scheduler]]></category>
		<category><![CDATA[sequencer]]></category>

		<guid isPermaLink="false">http://slipmat.noisepages.com/?p=129</guid>
		<description><![CDATA[On Friday, I listed nine ways in which python methodologies could be used with the @ scheduler. How would they work in a real-world musical context? Today, I&#8217;m showcasing the List as a super convenient micro-sequencer. When the @ scheduler &#8230; <a href="https://codehop.com/lists-as-micro-sequencers/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>On Friday, I listed <a href="http://slipmat.noisepages.com/2010/04/nine-rules-for-scheduling-events/">nine ways</a> in which python methodologies could be used with the <a href="http://slipmat.noisepages.com/2010/03/coding-in-time-with-the-scheduler/">@ scheduler</a>. How would they work in a real-world musical context? Today, I&#8217;m showcasing the List as a super convenient micro-sequencer.</p>
<p>When the @ scheduler is given a list of numbers, every value in the list is used to schedule an event; This saves keystrokes and increases legibility. Let&#8217;s see this applied to a simple four-beat rock groove with 8th note hats:</p>
<pre style="font-family: 'Courier New', courier, monaco, monospace, sans-serif; font-size: 1.2em; padding-bottom: 16px">
@[0, 0.5, 1, 1.5, 2, 2.5, 3, 3.5] hat()
@[1, 3]                           snare()
@[0, 2]                           kick()
</pre>
<p>That plays hat() eight times, and snare() and kick() twice each. This beats having to type out 12 events.</p>
<p>Alternatively, an identifier can point to a predefined list, thus, a sequence can be reused multiple times. The following stores a complex hi-hat pattern in identifier p, and then plays it four times:</p>
<pre style="font-family: 'Courier New', courier, monaco, monospace, sans-serif; font-size: 1.2em; padding-bottom: 16px">
p = [0, 0.5, 1, 1.5, 2, 2.25, 2.5, 2.75, 3, 3.75]

@0  @p hat()
@4  @p hat()
@8  @p hat()
@12 @p hat()
</pre>
<p>Here&#8217;s the shorthand equivalent:</p>
<pre style="font-family: 'Courier New', courier, monaco, monospace, sans-serif; font-size: 1.2em; padding-bottom: 16px">
p = [0, 0.5, 1, 1.5, 2, 2.25, 2.5, 2.75, 3, 3.75]

@[0, 4, 8, 12] @p hat()
</pre>
<p>That&#8217;s 40 events in two lines of code, with improved legibility. If this was presented as 40 individual events, it would not be obvious that the same hat pattern is repeated four times.</p>
<p><strong>Banks of Patterns</strong></p>
<p>A list can be utilized as a bank of patterns, a list of lists. In the following example, an empty bank is created, filled with three patterns, and then used in a four measure sequence.</p>
<pre style="font-family: 'Courier New', courier, monaco, monospace, sans-serif; font-size: 1.2em; padding-bottom: 16px">
b = []
b.append([0, 0.5, 1, 1.5, 2, 2.5, 3, 3.5])               # x.x. x.x. x.x. x.x.
b.append([0, 0.5, 1, 1.5, 2, 2.25, 2.5, 2.75, 3, 3.75])  # x.x. x.x. xxxx x..x
b.append([0, 0.5, 1, 1.5, 2, 2.5, 2.75, 3, 3.5, 3.75])   # x.x. x.x. x.xx x.xx

@0  @b[0] hat()
@4  @b[1] hat()
@8  @b[0] hat()
@12 @b[2] hat()
</pre>
<p><strong>Bonus Round &#8212; Eight Ways to Notate 8th Note Hats</strong></p>
<p>Some good, some bad, some ugly. All produce the same result.</p>
<pre style="font-family: 'Courier New', courier, monaco, monospace, sans-serif; font-size: 1.2em; padding-bottom: 16px">
1. @map(lambda x: x / 2.0, range(0, 8)) hat()
2. @[0, 0.5, 1, 1.5, 2, 2.5, 3, 3.5] hat()
3. @[i / 2.0 for i in range(0, 8)] hat()
4. @[i / 2.0 for i in range(8)] hat()
5. @[0, 2] @[0, 1] @[0, 0.5] hat()
6. @[0, 1, 2, 3] @[0, 0.5] hat()
7. @range(0, 4) @[0, 0.5] hat()
8. @range(4) @[0, 0.5] hat()
</pre>
<p>Examples 2, 6 and 8 are my personal favorites.</p>
]]></content:encoded>
			<wfw:commentRss>https://codehop.com/lists-as-micro-sequencers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Backlog</title>
		<link>https://codehop.com/the-backlog/</link>
		<comments>https://codehop.com/the-backlog/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 16:28:57 +0000</pubDate>
		<dc:creator><![CDATA[Jacob Joaquin]]></dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[adsr]]></category>
		<category><![CDATA[convolution]]></category>
		<category><![CDATA[dtfm]]></category>
		<category><![CDATA[envelope]]></category>
		<category><![CDATA[macro]]></category>
		<category><![CDATA[morse code]]></category>
		<category><![CDATA[oscillator]]></category>
		<category><![CDATA[sequencer]]></category>
		<category><![CDATA[sine]]></category>
		<category><![CDATA[spatializer]]></category>
		<category><![CDATA[vocoder]]></category>

		<guid isPermaLink="false">http://csound.noisepages.com/?p=25</guid>
		<description><![CDATA[I&#8217;m reposting all the Csound Blog posts from the original site.  The write-ups are stored within the Csound files themselves.  I&#8217;m really looking forward to posting new content, and will hopefully have something up by the end of the week. &#8230; <a href="https://codehop.com/the-backlog/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;m reposting all the Csound Blog posts from the original site.  The write-ups are stored within the Csound files themselves.  I&#8217;m really looking forward to posting new content, and will hopefully have something up by the end of the week.  Without further ado:</p>
<ul>
<li><a href="http://www.thumbuki.com/csound/files/thumbuki20061222.csd">An Experiment in Csound Blogging</a></li>
<li><a href="http://www.thumbuki.com/csound/files/thumbuki20061227.csd">Back in the ADSR</a></li>
<li><a href="http://www.thumbuki.com/csound/files/thumbuki20070122.csd">Oscillator Arrays and Multi-Band Spatializers</a></li>
<li><a href="http://www.thumbuki.com/csound/files/thumbuki20070206.csd">Robot Voices and Android Grooves</a></li>
<li><a href="http://www.thumbuki.com/csound/files/thumbuki20070214.csd">Home Brewed Convolution</a></li>
<li><a href="http://www.thumbuki.com/csound/files/thumbuki20070410.csd">Adding Zak to the Mix</a></li>
<li><a href="http://www.thumbuki.com/csound/files/thumbuki20070420.csd">A Micro Intro to Macros</a></li>
<li><a href="http://www.thumbuki.com/csound/files/thumbuki20070502.csd">Drum Sequencer Event Generator</a></li>
<li><a href="http://www.thumbuki.com/csound/files/thumbuki20070620.csd">Modular Instruments</a></li>
<li><a href="http://www.thumbuki.com/csound/files/thumbuki20070702.csd">Modular Instruments Part II</a></li>
<li><a href="http://www.thumbuki.com/csound/files/thumbuki20080102.csd">The Infamous mcseq</a></li>
<li><a href="http://www.thumbuki.com/csound/files/thumbuki20080126.csd">SineBox</a></li>
<li><a href="http://www.thumbuki.com/csound/files/thumbuki20080602.csd">Touch-Tone DTMF Generator</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>https://codehop.com/the-backlog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Step and Funny Talk for the OLPC</title>
		<link>https://codehop.com/step-and-funny-talk-for-the-olpc/</link>
		<comments>https://codehop.com/step-and-funny-talk-for-the-olpc/#comments</comments>
		<pubDate>Mon, 17 Mar 2008 16:41:06 +0000</pubDate>
		<dc:creator><![CDATA[Jacob Joaquin]]></dc:creator>
				<category><![CDATA[the cosmos]]></category>
		<category><![CDATA[csound]]></category>
		<category><![CDATA[dsp]]></category>
		<category><![CDATA[effects]]></category>
		<category><![CDATA[funnytalk]]></category>
		<category><![CDATA[olpc]]></category>
		<category><![CDATA[sampler]]></category>
		<category><![CDATA[sequencer]]></category>
		<category><![CDATA[step]]></category>
		<category><![CDATA[stepsequencer]]></category>
		<category><![CDATA[synth]]></category>
		<category><![CDATA[synthesizer]]></category>
		<category><![CDATA[victorlazzarini]]></category>
		<category><![CDATA[xo]]></category>
		<category><![CDATA[yamaha]]></category>

		<guid isPermaLink="false">http://www.thumbuki.com/20080317/step-and-funny-talk-for-the-olpc.html</guid>
		<description><![CDATA[I spent my spare time last week developing two audio-based activity prototypes for the OLPC: Step and Funny Talk. The whole process was surprisingly quick and easy. I attribute this to Victor Lazzarini&#8217;s Csound Sugar GUI toolkit. I do a &#8230; <a href="https://codehop.com/step-and-funny-talk-for-the-olpc/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I spent my spare time last week developing two audio-based activity prototypes for the <a href="http://www.laptop.org/">OLPC</a>:  Step and Funny Talk.  The whole process was surprisingly quick and easy.  I attribute this to <a href="http://en.wikipedia.org/wiki/Victor_Lazzarini">Victor Lazzarini&#8217;s</a> Csound Sugar GUI toolkit.  I do a lot of <a href="http://www.csounds.com/">Csound</a> programming, but I&#8217;ve never actually done any GUI work for it.  Using the toolkit was as simple as defining widgets and mapping them in Csound.</p>
<h3>Step</h3>
<p><a href="http://www.flickr.com/photos/thumbuki/2340959656/" title="OLPC Step Activity by thumbuki, on Flickr"><img src="http://farm3.static.flickr.com/2284/2340959656_b6720d8812.jpg" width="500" height="333" alt="OLPC Step Activity" /></a></p>
<p>Flickr photo be <a href="http://www.flickr.com/photos/thumbuki/">me</a></p>
<p>Step is the first activitiy I&#8217;m developing for the XO.  It&#8217;s a straight forward eight note step sequencer with synth notes, snare and kick parts.  So far, I&#8217;ve probably put in about 8 hours on this.  Once a user has a pattern they like, they can render the loop to an audio file, which can then be loaded in other activities.  It still needs a lot of work, especially the synth engine.  Though you can still take a listen if you would like:  <a href="http://www.thumbuki.com/files/StepDemo1.mp3">StepDemo1.mp3</a>.</p>
<h3>Funny Talk</h3>
<p><a href="http://www.flickr.com/photos/thumbuki/2340117811/" title="OLPC Funny Talk Activity by thumbuki, on Flickr"><img src="http://farm3.static.flickr.com/2216/2340117811_c09311f384.jpg" width="500" height="333" alt="OLPC Funny Talk Activity" /></a></p>
<p>Flickr photo be <a href="http://www.flickr.com/photos/thumbuki/">me</a></p>
<p>This is my favorite of the two, as my inspiration for this activity comes from my childhood memories of the <a href="http://www.sonicstate.com/synth/yamaha_vss-30.cfm">Yamaha VSS-30 keyboard</a>.  My friends and I used to spend hours playing with that keyboard.  Often in a very juvenile manner.  I figured if we had such a great time playing with our voices, then perhaps the target audience of the OLPC will as well.  Here is &#8220;the sound of my voice&#8221; being processed with Funny Talk: <a href="http://www.thumbuki.com/files/FunnyTalkDemo1.mp3">FunnyTalkDemo1.mp3</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://codehop.com/step-and-funny-talk-for-the-olpc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.thumbuki.com/files/FunnyTalkDemo1.mp3" length="31153" type="audio/mpeg" />
<enclosure url="http://www.thumbuki.com/files/StepDemo1.mp3" length="15230" type="audio/mpeg" />
		</item>
		<item>
		<title>The Beat-Bearing Sequencer</title>
		<link>https://codehop.com/the-beat-bearing-sequencer/</link>
		<comments>https://codehop.com/the-beat-bearing-sequencer/#comments</comments>
		<pubDate>Tue, 15 Jan 2008 15:05:21 +0000</pubDate>
		<dc:creator><![CDATA[Jacob Joaquin]]></dc:creator>
				<category><![CDATA[the cosmos]]></category>
		<category><![CDATA[alternatecontroller]]></category>
		<category><![CDATA[balls]]></category>
		<category><![CDATA[beatbearing]]></category>
		<category><![CDATA[interface]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[pagentsprogress]]></category>
		<category><![CDATA[peterbennett]]></category>
		<category><![CDATA[rhythm]]></category>
		<category><![CDATA[sequencer]]></category>
		<category><![CDATA[synth]]></category>
		<category><![CDATA[technabob]]></category>

		<guid isPermaLink="false">http://www.thumbuki.com/20080115/the-beat-bearing-sequencer.html</guid>
		<description><![CDATA[Here&#8216;s an interesting alternate controller I&#8217;ve not yet seen: a step sequencer where one composes a pattern by placing ball bearings onto a grid. Though I don&#8217;t exactly have one in front of me, I would imagine the sensation of &#8230; <a href="https://codehop.com/the-beat-bearing-sequencer/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<div id="postimage" class="right" style="width: 242px"><a href="http://technabob.com/blog/2008/01/13/music-sequencer-has-balls-of-steel/"><img src="http://www.thumbuki.com/images/BallBearingsSequencer.jpg" width="240px" height="176px" alt="Beat-Bearing Sequencer" title="Beat-Bearings Sequencer" /></a></div>
<p><a href="http://technabob.com/blog/2008/01/13/music-sequencer-has-balls-of-steel/">Here</a>&#8216;s an interesting alternate controller I&#8217;ve not yet seen: a step sequencer where one composes a pattern by placing ball bearings onto a grid.</p>
<p>Though I don&#8217;t exactly have one in front of me, I would imagine the sensation of manipulating the device would be similar to patching a modular synth.  There must be something entirely satisfying interfacing with music in this manner, akin to eating with a well-balanced set of weighted flatware.</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/wreP8FMupyM&#038;rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/wreP8FMupyM&#038;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object><br />
<blockquote>
<p><q>A tangible rhythm sequencer. Ball bearings are used to trigger drum sounds. Visual feedback is displayed from underneath to indicate the current time and the state of each ball bearing.</q></p>
</blockquote>
<p>The brainchild behind the Beat-Bearing Sequencer is <a href="http://www.sarc.qub.ac.uk/~pbennett/">Peter Bennett</a>.</p>
<p>Video posted to YouTube by <a href="http://www.youtube.com/profile?user=peterdbennett">peterdbennett</a>.<br />Thanks to PAgent of <a href="http://pagentsprogress.com/">PAgent&#8217;s Progress</a> for sending me <a href="http://technabob.com/blog/2008/01/13/music-sequencer-has-balls-of-steel/">this link</a> to <a href="http://technabob.com/">technabob.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://codehop.com/the-beat-bearing-sequencer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Infamous mcseq</title>
		<link>https://codehop.com/the-infamous-mcseq/</link>
		<comments>https://codehop.com/the-infamous-mcseq/#comments</comments>
		<pubDate>Wed, 02 Jan 2008 22:24:33 +0000</pubDate>
		<dc:creator><![CDATA[Jacob Joaquin]]></dc:creator>
				<category><![CDATA[the cosmos]]></category>
		<category><![CDATA[csound]]></category>
		<category><![CDATA[csoundblog]]></category>
		<category><![CDATA[eventgenerator]]></category>
		<category><![CDATA[morsecode]]></category>
		<category><![CDATA[sequencer]]></category>
		<category><![CDATA[synthesizers]]></category>

		<guid isPermaLink="false">http://www.thumbuki.com/20080102/the-infamous-mcseq.html</guid>
		<description><![CDATA[thumbuki20080102.csd The Csound Blog Issue #11 I want to learn morse code. I don&#8217;t know why, I just do. So a few days ago, I made it my new year&#8217;s resolution. The first action I took to help me accomplish &#8230; <a href="https://codehop.com/the-infamous-mcseq/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<div id="postimage" class="right" style="width: 242px"><a href="http://www.thumbuki.com/csound/files/thumbuki20080102.csd"><img src="http://www.thumbuki.com/images/CsoundBlogTheInfamousMSEQ.jpg" width=240px height=258px /></a>
<p><a href="http://www.thumbuki.com/csound/files/thumbuki20080102.csd">thumbuki20080102.csd</a></p>
</div>
<p><a href="http://www.thumbuki.com/csound/blog/">The Csound Blog</a><br />
<a href="http://www.thumbuki.com/csound/files/thumbuki20080102.csd">Issue #11</a></p>
<blockquote><p>I want to learn morse code.  I don&#8217;t know why, I just do.  So a few days ago, I made it my new year&#8217;s resolution.  The first action I took to help me accomplish this goal of mine was writing the Csound instrument Morse Code Sequencer Event Generator, or mcseq for short.</p>
</blockquote>
<h3>Topics</h3>
<ul>
<li>Morse Code</li>
<li>Event Generators</li>
<li>Sequencers</li>
<li>String Parsing</li>
</ul>
<p>More at <a href="http://www.thumbuki.com/csound/blog/">The Csound Blog</a>.  For more information about Csound, please visit <a href="http://www.csounds.com/">cSounds.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://codehop.com/the-infamous-mcseq/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drum Sequencer Event Generator</title>
		<link>https://codehop.com/drum-sequencer-event-generator/</link>
		<comments>https://codehop.com/drum-sequencer-event-generator/#comments</comments>
		<pubDate>Wed, 02 May 2007 19:18:50 +0000</pubDate>
		<dc:creator><![CDATA[Jacob Joaquin]]></dc:creator>
				<category><![CDATA[the cosmos]]></category>
		<category><![CDATA[csound]]></category>
		<category><![CDATA[csounds]]></category>
		<category><![CDATA[drums]]></category>
		<category><![CDATA[eventgenerators]]></category>
		<category><![CDATA[sequencer]]></category>
		<category><![CDATA[strings]]></category>
		<category><![CDATA[synthesizers]]></category>
		<category><![CDATA[thecsoundblog]]></category>
		<category><![CDATA[zakmixer]]></category>

		<guid isPermaLink="false">http://www.thumbuki.com/20070502/drum-sequencer-event-generator.html</guid>
		<description><![CDATA[thumbuki200700502.csd The Csound Blog Issue #8 Getting lost within a list of instrument events is sometimes less desirable than being able to place events on a grid or lattice. This is especially true when working with rhythms. I&#8217;m a firm &#8230; <a href="https://codehop.com/drum-sequencer-event-generator/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<div id="postimage" class="right" style="width: 268px"><a href="http://www.thumbuki.com/csound/files/thumbuki20070502.csd"><img src="http://www.thumbuki.com/images/drumSequencerEventGenerator.gif" width=266px height=130px /></a>
<p><a href="http://www.thumbuki.com/csound/files/thumbuki20070502.csd">thumbuki200700502.csd</a></p>
</div>
<p><a href="http://www.thumbuki.com/csound/blog/">The Csound Blog</a><br />
<a href="http://www.thumbuki.com/csound/files/thumbuki20070502.csd">Issue #8</a><br />
<blockquote>
<p>Getting lost within a list of instrument events is sometimes less desirable than being able to place events on a grid or lattice. This is especially true when working with rhythms. I&#8217;m a firm believer that the interface influences the compositional process. This is why I&#8217;ve begun development on dseq, an instrument that allows me to input drum patterns in a manner that is much more user-friendly.</p>
</blockquote>
<p>Topics:</p>
<ul>
<li>Strings
<li>Drums
<li>Sequencer
<li>Event Generators
</ul>
<p>More at <a href="http://www.thumbuki.com/csound/blog/">The Csound Blog</a>.  For more information about Csound, please visit <a href="http://www.csounds.com/">cSounds.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://codehop.com/drum-sequencer-event-generator/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>TamTam, Csound and the OLPC</title>
		<link>https://codehop.com/tamtam-csound-and-the-olpc/</link>
		<comments>https://codehop.com/tamtam-csound-and-the-olpc/#comments</comments>
		<pubDate>Sat, 06 Jan 2007 17:47:50 +0000</pubDate>
		<dc:creator><![CDATA[Jacob Joaquin]]></dc:creator>
				<category><![CDATA[the cosmos]]></category>
		<category><![CDATA[csound]]></category>
		<category><![CDATA[culture]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[lain]]></category>
		<category><![CDATA[laptop]]></category>
		<category><![CDATA[maxmsp]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[navi]]></category>
		<category><![CDATA[olpc]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[sequencer]]></category>
		<category><![CDATA[synthesizers]]></category>
		<category><![CDATA[tamtam]]></category>

		<guid isPermaLink="false">http://www.thumbuki.com/20070106/tamtam-csound-and-the-olpc.html</guid>
		<description><![CDATA[Just last week, a friend of mine was telling me that Csound is included in the One Laptop Per Child program (OLPC.) Last night, I coincidentally stumbled across the development blog for TamTam, &#8220;a suite of three applications / activities &#8230; <a href="https://codehop.com/tamtam-csound-and-the-olpc/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<div id="postimage" class="right" style="width: 102px"><a href="http://tamtam4olpc.wordpress.com/"><img src="http://www.thumbuki.com/images/tamtam.gif" width=100px height=89px /></a></div>
<p>Just last week, a friend of mine was telling me that <a href="http://www.csounds.com/">Csound</a> is included in the <a href="http://www.laptop.org/">One Laptop Per Child</a> program (OLPC.)</p>
<p>Last night, I coincidentally stumbled across the <a href="http://tamtam4olpc.wordpress.com/">development blog</a> for <a href="http://wiki.laptop.org/go/TamTam">TamTam</a>, &#8220;<i>a suite of three applications / activities developed for the $100 laptop.</i>&#8221; [<a href="http://tamtam4olpc.wordpress.com/about/">source</a>]  The program is implemented using <a href="http://www.python.org/">Python</a> and <a href="http://www.pygtk.org/">PyGTK</a>, and utilizes Csound as its synthesis engine.  The <a href="http://tamtam4olpc.wordpress.com/files/2007/01/new-tamtam-synthlab.jpg">TamTam GUI</a> appears to be very user-friendly, and reminds me of a simplified version of <a href="http://www.cycling74.com/products/maxmsp">Max/MSP</a> combined with a <a href="http://wiki.laptop.org/go/Image:NEW-TAMTAM-5.png">midi sequencer</a>.  </p>
<p>The OLCP is, among other things, a musical instrument.  The fact that this musical instrument is going to make its way into the hands of children spanning dozens of cultures fascinates me to no end. </p>
<p>As a side note, I can&#8217;t help but think of the NAVI computer in <a href="http://en.wikipedia.org/wiki/Serial_Experiments_Lain">Serial Experiments Lain</a>.  I look forward to the day OLPC laptops become commercially available, so that I may get my hands on one.</p>
]]></content:encoded>
			<wfw:commentRss>https://codehop.com/tamtam-csound-and-the-olpc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
