<?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>Cole Ingraham</title>
	<atom:link href="http://coleingraham.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://coleingraham.com</link>
	<description>Composer, Performer, Artist</description>
	<lastBuildDate>Tue, 14 May 2013 14:33:01 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5</generator>
		<item>
		<title>ByteBeat Shell Script</title>
		<link>http://coleingraham.com/2013/04/28/bytebeat-shell-script/</link>
		<comments>http://coleingraham.com/2013/04/28/bytebeat-shell-script/#comments</comments>
		<pubDate>Sun, 28 Apr 2013 15:36:36 +0000</pubDate>
		<dc:creator>coleingraham</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[algorithm]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[bytebeat]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://coleingraham.com/?p=483</guid>
		<description><![CDATA[Recently I have been playing around with ByteBeat. You can play around with these in your browser here if you are interested. SuperCollider can also do this as of version 3.5 (although I&#8217;ve noticed some differences in the output) if you want more control. I however felt like being able to play with these in [...]]]></description>
				<content:encoded><![CDATA[<p>Recently I have been playing around with <a href="http://canonical.org/~kragen/bytebeat/" title="ByteBeat" target="_blank">ByteBeat</a>. You can play around with these in your browser <a href="http://wurstcaptures.untergrund.net/music/" target="_blank">here</a> if you are interested. <a href="http://supercollider.sourceforge.net" title="SuperCollider" target="_blank">SuperCollider</a> can also do this as of version 3.5 (although I&#8217;ve noticed some differences in the output) if you want more control. I however felt like being able to play with these in a more brute force way: directly from terminal.</p>
<p>Since the workflow for messing with these is always the same I decided to make a little shell script to speed up the process. I&#8217;m on a Mac so I have to use <a href="http://sox.sourceforge.net/" title="sox" target="_blank">sox</a> for playback. If you are on Linux you&#8217;d need to change the pipe to /dev/audio or /dev/dsp unless you wanted to use sox instead.</p>
<p><code><br />
#!/bin/bash</p>
<p># This script creates and plays a simple ByteBeat<br />
# ARGS<br />
# $1: a string with the ByteBeat algorithm e.g. "((t * 3) &#038; (t >> 5))"<br />
# $2: the name of the file to be creates (without an extension)<br />
###<br />
# make the c file<br />
echo "main(t) {<br />
	for( t = 0;;t++)<br />
		putchar( $1 );<br />
}" > "$2.c"<br />
###<br />
# compile the source<br />
gcc "$2.c" -o "$2"<br />
###<br />
# play it with standard ByteBeat settings<br />
./"$2" | sox -traw -r8000 -b8 -u - -tcoreaudio<br />
</code></p>
<p>Save that to a file called something like bytebeat.sh and make it executable with chmod 755. after that you can just run</p>
<p><code>./bytebeat.sh "((t * 3) &#038; (t >> 5))" test</code></p>
<p>and automagically you get 8-bit goodness right from your terminal. There&#8217;s a slight delay between running the script and hearing the output because it needs to compile so I wouldn&#8217;t necessarily perform with this (unless you get <strong>really</strong> good a timing it). Now this could be modified to let you specify the arguments for sox or whatever&#8230; but meh. This is just intended as a quick and dirty way to look like you are more of a hacker than you really are.</p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=ByteBeat+Shell+Script+http%3A%2F%2Fis.gd%2FNHfKPA" title="Post to Twitter"><img class="nothumb" src="http://coleingraham.com/coleBlog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://www.facebook.com/share.php?u=http://coleingraham.com/2013/04/28/bytebeat-shell-script/&amp;t=ByteBeat+Shell+Script"><img class="nothumb" src="http://coleingraham.com/coleBlog/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://www.google.com/buzz/post?url=http://coleingraham.com/2013/04/28/bytebeat-shell-script/&amp;imageurl="><img class="nothumb" src="http://coleingraham.com/coleBlog/wp-content/plugins/tweet-this/icons/en/gbuzz/tt-gbuzz.png" alt="Post to Google Buzz" /></a> <a target="_blank" rel="nofollow" class="tt" href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=ByteBeat+Shell+Script&amp;body=Link:+http://coleingraham.com/2013/04/28/bytebeat-shell-script/%0D%0A%0D%0A----%0D%0A+Recently+I+have+been+playing+around+with+ByteBeat.+You+can+play+around+with+these+in+your+browser+here+if+you+are+interested.+SuperCollider+can+als..."><img class="nothumb" src="http://coleingraham.com/coleBlog/wp-content/plugins/tweet-this/icons/en/gmail/tt-gmail.png" alt="Send Gmail" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://coleingraham.com/2013/04/28/bytebeat-shell-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Homunculus</title>
		<link>http://coleingraham.com/2013/04/25/homunculus/</link>
		<comments>http://coleingraham.com/2013/04/25/homunculus/#comments</comments>
		<pubDate>Thu, 25 Apr 2013 15:01:29 +0000</pubDate>
		<dc:creator>coleingraham</dc:creator>
				<category><![CDATA[Electronic]]></category>
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://coleingraham.com/?p=481</guid>
		<description><![CDATA[Homunculus is a live performance network piece. Performers manipulate various objects which create their sound by reading from and writing to various buffers, creating and altering new feedback chains. The location of the object on the screen also alters various control parameters with influence each sound as well. Performed on February 27, 2013 at the [...]]]></description>
				<content:encoded><![CDATA[<p>Homunculus is a live performance network piece. Performers manipulate various objects which create their sound by reading from and writing to various buffers, creating and altering new  feedback chains. The location of the object on the screen also alters various control parameters with influence each sound as well. Performed on February 27, 2013 at the University of Colorado Pendulum New Music concert series in the ATLAS Black Box Theater by the <a href="http://www.glitchlich.com/" title="Glitch Lich" target="_blank">Glitch Lich</a> network laptop quartet.</p>
<p><iframe src="http://player.vimeo.com/video/64807228" width="500" height="287" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
<p><a href="http://vimeo.com/64807228">Homunculus</a> from <a href="http://vimeo.com/user3577931">Cole Ingraham</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=Homunculus+http%3A%2F%2Fis.gd%2FDRz2SZ" title="Post to Twitter"><img class="nothumb" src="http://coleingraham.com/coleBlog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://www.facebook.com/share.php?u=http://coleingraham.com/2013/04/25/homunculus/&amp;t=Homunculus"><img class="nothumb" src="http://coleingraham.com/coleBlog/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://www.google.com/buzz/post?url=http://coleingraham.com/2013/04/25/homunculus/&amp;imageurl="><img class="nothumb" src="http://coleingraham.com/coleBlog/wp-content/plugins/tweet-this/icons/en/gbuzz/tt-gbuzz.png" alt="Post to Google Buzz" /></a> <a target="_blank" rel="nofollow" class="tt" href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Homunculus&amp;body=Link:+http://coleingraham.com/2013/04/25/homunculus/%0D%0A%0D%0A----%0D%0A+Homunculus+is+a+live+performance+network+piece.+Performers+manipulate+various+objects+which+create+their+sound+by+reading+from+and+writing+to+vario..."><img class="nothumb" src="http://coleingraham.com/coleBlog/wp-content/plugins/tweet-this/icons/en/gmail/tt-gmail.png" alt="Send Gmail" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://coleingraham.com/2013/04/25/homunculus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OSX Bash music&#8230;</title>
		<link>http://coleingraham.com/2013/04/09/osx-bash-music/</link>
		<comments>http://coleingraham.com/2013/04/09/osx-bash-music/#comments</comments>
		<pubDate>Wed, 10 Apr 2013 01:53:18 +0000</pubDate>
		<dc:creator>coleingraham</dc:creator>
				<category><![CDATA[Electronic]]></category>
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://coleingraham.com/?p=477</guid>
		<description><![CDATA[So this is a little something that I though of years ago based on a quote from The Simpsons. If you are on OSX and know what you are looking at you know what to do (and I&#8217;m sorry). #!/bin/bash for i in {1..13} do say "a night with Phillip Glass followed by" done for [...]]]></description>
				<content:encoded><![CDATA[<p>So this is a little something that I though of years ago based on a quote from <strong>The Simpsons</strong>. If you are on OSX and know what you are looking at you know what to do (and I&#8217;m sorry).</p>
<p><code><br />
#!/bin/bash<br />
for i in {1..13}<br />
do<br />
say "a night with Phillip Glass followed by"<br />
done<br />
for i in {1..11}<br />
do<br />
say "a night with Phillip Glass followed by"<br />
say "a night with Phillip followed by"<br />
done<br />
for i in {1..8}<br />
do<br />
say "a night with Phillip Glass followed by"<br />
say "a night with Phillip followed by"<br />
say "a night with followed by"<br />
done<br />
for i in {1..5}<br />
do<br />
say "a night with Phillip Glass followed by"<br />
say "a night with Phillip followed by"<br />
say "a night with followed by"<br />
say "a night followed by"<br />
done<br />
for i in {1..3}<br />
do<br />
say "a night with Phillip Glass followed by"<br />
say "a night with Phillip followed by"<br />
say "a night with followed by"<br />
say "a night followed by"<br />
say "a followed by"<br />
done<br />
for i in {1..2}<br />
do<br />
say "a night with Phillip Glass followed by"<br />
say "a night with Phillip followed by"<br />
say "a night with followed by"<br />
say "a night followed by"<br />
say "a followed by"<br />
say "followed by"<br />
done<br />
say "a night with Phillip Glass followed by"<br />
say "a night with Phillip followed by"<br />
say "a night with followed by"<br />
say "a night followed by"<br />
say "a followed by"<br />
say "followed by"<br />
say "by"<br />
</code></p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=OSX+Bash+music%E2%80%A6+http%3A%2F%2Fis.gd%2FMKw3IL" title="Post to Twitter"><img class="nothumb" src="http://coleingraham.com/coleBlog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://www.facebook.com/share.php?u=http://coleingraham.com/2013/04/09/osx-bash-music/&amp;t=OSX+Bash+music%E2%80%A6"><img class="nothumb" src="http://coleingraham.com/coleBlog/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://www.google.com/buzz/post?url=http://coleingraham.com/2013/04/09/osx-bash-music/&amp;imageurl="><img class="nothumb" src="http://coleingraham.com/coleBlog/wp-content/plugins/tweet-this/icons/en/gbuzz/tt-gbuzz.png" alt="Post to Google Buzz" /></a> <a target="_blank" rel="nofollow" class="tt" href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=OSX+Bash+music%E2%80%A6&amp;body=Link:+http://coleingraham.com/2013/04/09/osx-bash-music/%0D%0A%0D%0A----%0D%0A+So+this+is+a+little+something+that+I+though+of+years+ago+based+on+a+quote+from+The+Simpsons.+If+you+are+on+OSX+and+know+what+you+are+looking+at+you..."><img class="nothumb" src="http://coleingraham.com/coleBlog/wp-content/plugins/tweet-this/icons/en/gmail/tt-gmail.png" alt="Send Gmail" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://coleingraham.com/2013/04/09/osx-bash-music/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Canvas</title>
		<link>http://coleingraham.com/2013/02/15/canvas/</link>
		<comments>http://coleingraham.com/2013/02/15/canvas/#comments</comments>
		<pubDate>Fri, 15 Feb 2013 19:41:04 +0000</pubDate>
		<dc:creator>coleingraham</dc:creator>
				<category><![CDATA[Electronic]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Visual]]></category>
		<category><![CDATA[abstract]]></category>
		<category><![CDATA[Canvas]]></category>
		<category><![CDATA[Cole Ingraham]]></category>
		<category><![CDATA[drone]]></category>
		<category><![CDATA[just intonation]]></category>
		<category><![CDATA[painting]]></category>
		<category><![CDATA[processing]]></category>
		<category><![CDATA[supercollider]]></category>

		<guid isPermaLink="false">http://coleingraham.com/?p=467</guid>
		<description><![CDATA[An hour long audio/visual work created and performed by Cole Ingraham. The original video is 4 screen 1080p and this version maintains the same aspect ratio which is why this version is so narrow. Video created using Processing. Music is a combination of SuperCollider, Moog Guitar, and Roland VG-99. Premiered on 2/15/2013 at the University [...]]]></description>
				<content:encoded><![CDATA[<p>An hour long audio/visual work created and performed by Cole Ingraham. The original video is 4 screen 1080p and this version maintains the same aspect ratio which is why this version is so narrow. Video created using Processing. Music is a combination of SuperCollider, Moog Guitar, and Roland VG-99. Premiered on 2/15/2013 at the University of Colorado ATLAS black box theater. This version features the Orava String Quartet performing Aether at 7&#8217;43&#8243; whereas the live performance is played with SuperCollider and iPad using my custom OSC interface <a href="http://coleingraham.com/2012/05/25/brief-description-of-unlimit-v0-0-1/" title="Un:Limit">Un:Limit</a>.</p>
<p><iframe src="http://player.vimeo.com/video/59752795" width="500" height="70" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
<p><a href="http://vimeo.com/59752795">Canvas</a> from <a href="http://vimeo.com/user3577931">Cole Ingraham</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=Canvas+http%3A%2F%2Fis.gd%2FbnBFAL" title="Post to Twitter"><img class="nothumb" src="http://coleingraham.com/coleBlog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://www.facebook.com/share.php?u=http://coleingraham.com/2013/02/15/canvas/&amp;t=Canvas"><img class="nothumb" src="http://coleingraham.com/coleBlog/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://www.google.com/buzz/post?url=http://coleingraham.com/2013/02/15/canvas/&amp;imageurl="><img class="nothumb" src="http://coleingraham.com/coleBlog/wp-content/plugins/tweet-this/icons/en/gbuzz/tt-gbuzz.png" alt="Post to Google Buzz" /></a> <a target="_blank" rel="nofollow" class="tt" href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Canvas&amp;body=Link:+http://coleingraham.com/2013/02/15/canvas/%0D%0A%0D%0A----%0D%0A+An+hour+long+audio%2Fvisual+work+created+and+performed+by+Cole+Ingraham.+The+original+video+is+4+screen+1080p+and+this+version+maintains+the+same+asp..."><img class="nothumb" src="http://coleingraham.com/coleBlog/wp-content/plugins/tweet-this/icons/en/gmail/tt-gmail.png" alt="Send Gmail" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://coleingraham.com/2013/02/15/canvas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;Chromatic&#8221; Just Intonation &#8211; fast version</title>
		<link>http://coleingraham.com/2013/01/26/chromatic-just-intonation-fast-version/</link>
		<comments>http://coleingraham.com/2013/01/26/chromatic-just-intonation-fast-version/#comments</comments>
		<pubDate>Sat, 26 Jan 2013 20:36:40 +0000</pubDate>
		<dc:creator>coleingraham</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[just intonation]]></category>
		<category><![CDATA[supercollider]]></category>

		<guid isPermaLink="false">http://coleingraham.com/?p=464</guid>
		<description><![CDATA[About a month ago I talked here about the math required to take a set of ratios and generate a set of +/- 50 cent alterations for tuning a chromatic scale to any 12-tone just tuning. There were quite a number of steps and a lot of math as I wanted to show how to [...]]]></description>
				<content:encoded><![CDATA[<p>About a month ago I talked <a href="http://coleingraham.com/2012/12/30/chromatic-just-intonation/" title="Chromatic Just Intonation" target="_blank">here</a> about the math required to take a set of ratios and generate a set of +/- 50 cent alterations for tuning a chromatic scale to any 12-tone just tuning. There were quite a number of steps and a lot of math as I wanted to show how to do it in a way that could be applied to any programming language (or done by hand if you are feeling masochistic). Now I&#8217;m going to show a shortcut if you are specifically using SuperCollider.</p>
<p>SuperCollider has a method called ratiomidi that takes a ratio and converts it to the float MIDI number version. This replaces the need to multiply the ratios by a fundamental and mod 12 it as, because all our ratios are within an octave, everything will be from 0.0 through 11.99. In other words: it gives us tuned versions of pitch classes. This one simple method removes 2 of the previous steps.</p>
<p>[1,17/16,9/8,6/5,5/4,4/3,10/7,3/2,8/5,12/7,7/4,15/8].ratiomidi;</p>
<p>gives us</p>
<p>[ 0, 1.0495540950041, 2.0391000173077, 3.1564128700055, 3.8631371386483, 4.9804499913461, 6.1748780739571, 7.0195500086539, 8.1368628613517, 9.3312909439626, 9.6882590646912, 10.882687147302 ]</p>
<p>Now that we have that, like before we need to get the cents in the +/- 50 cents, here in decimals. Once again we just need to subtract a series of integers from 0 to 11 like so:</p>
<p>( [1,17/16,9/8,6/5,5/4,4/3,10/7,3/2,8/5,12/7,7/4,15/8].ratiomidi &#8211; (0..11) ).round(0.01);</p>
<p>which gives us</p>
<p>[ 0, 0.05, 0.04, 0.16, -0.14, -0.02, 0.17, 0.02, 0.14, 0.33, -0.31, -0.12 ]</p>
<p>Great, that was easy! Now, you may notice by comparing it to the result we got from the other post that although the numbers are all the same, they aren&#8217;t in the same order. That is because before we based the tuning on A being the fundamental/tonic. Here C (array slot or pitch class 0) is the tonic. This is fine if you want C to be the tonic but what if you don&#8217;t? Simple! Arrays in SuperCollider also provide a method called rotate(numPlaces) which, as you might guess, shifts items left or right by a number of slots. So for our final version of this:</p>
<p>( [1,17/16,9/8,6/5,5/4,4/3,10/7,3/2,8/5,12/7,7/4,15/8].ratiomidi &#8211; (0..11) ).round(0.01).rotate(9);</p>
<p>gives us</p>
<p>[ 0.16, -0.14, -0.02, 0.17, 0.02, 0.14, 0.33, -0.31, -0.12, 0, 0.05, 0.04 ]</p>
<p>which is exactly what we got in the old example. Why are we using 9? If you prefer to think about this as a transposition operation then T9 = A. You could also put a -3 in there and you would get the exact same result. Totally depends on how you want to think about it.</p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=%E2%80%9CChromatic%E2%80%9D+Just+Intonation+%E2%80%93+fast+version+http%3A%2F%2Fis.gd%2FASQP2E" title="Post to Twitter"><img class="nothumb" src="http://coleingraham.com/coleBlog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://www.facebook.com/share.php?u=http://coleingraham.com/2013/01/26/chromatic-just-intonation-fast-version/&amp;t=%E2%80%9CChromatic%E2%80%9D+Just+Intonation+%E2%80%93+fast+version"><img class="nothumb" src="http://coleingraham.com/coleBlog/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://www.google.com/buzz/post?url=http://coleingraham.com/2013/01/26/chromatic-just-intonation-fast-version/&amp;imageurl="><img class="nothumb" src="http://coleingraham.com/coleBlog/wp-content/plugins/tweet-this/icons/en/gbuzz/tt-gbuzz.png" alt="Post to Google Buzz" /></a> <a target="_blank" rel="nofollow" class="tt" href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=%E2%80%9CChromatic%E2%80%9D+Just+Intonation+%E2%80%93+fast+version&amp;body=Link:+http://coleingraham.com/2013/01/26/chromatic-just-intonation-fast-version/%0D%0A%0D%0A----%0D%0A+About+a+month+ago+I+talked+here+about+the+math+required+to+take+a+set+of+ratios+and+generate+a+set+of+%2B%2F-+50+cent+alterations+for+tuning+a+chromati..."><img class="nothumb" src="http://coleingraham.com/coleBlog/wp-content/plugins/tweet-this/icons/en/gmail/tt-gmail.png" alt="Send Gmail" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://coleingraham.com/2013/01/26/chromatic-just-intonation-fast-version/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
