<?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>adrianlikins.com &#187; art</title>
	<atom:link href="http://adrianlikins.com/category/art/feed/" rel="self" type="application/rss+xml" />
	<link>http://adrianlikins.com</link>
	<description></description>
	<lastBuildDate>Wed, 06 Jul 2011 03:34:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>color sorting</title>
		<link>http://adrianlikins.com/2011/07/color-sorting/</link>
		<comments>http://adrianlikins.com/2011/07/color-sorting/#comments</comments>
		<pubDate>Wed, 06 Jul 2011 03:34:15 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[art]]></category>
		<category><![CDATA[free culture]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[ideas]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[webstuff]]></category>

		<guid isPermaLink="false">http://adrianlikins.com/?p=615</guid>
		<description><![CDATA[I find the idea of sorting a set of colors in interesting ways. It&#8217;s very much a perceptual problem. Different people will sort a color palette in different ways. &#8220;web&#8221; palette sorted by saturation. (Some of these examples are truncated &#8230; <a href="http://adrianlikins.com/2011/07/color-sorting/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I find the idea of sorting a set of colors in interesting ways. It&#8217;s very much a perceptual problem. Different people will sort a color palette in different ways.</p>
<p><img src="http://adrianlikins.com/images/sortpal/web_sat.png" alt="" />&#8220;web&#8221; palette sorted by saturation. (Some of these examples are truncated for formatting, see the <a href="http://adrianlikins.com/sortpal">sortpal</a> pages for fuller versions)</p>
<p>People organize colors differently. Lots of ways to sort them mathematically. Some map well to what people perceive as correct. Some do not.</p>
<p><img src="http://adrianlikins.com/images/sortpal/web_rgb3d.png" alt="" />web palette sorted by proximity in rgb colorspace</p>
<p><a href="http://adrianlikins.com/sortpal">Sortpal</a> is project to try to visualize what some of these different methods look like, and how they compare to each other. It shows a set of color palettes, sorted by the various attributes like it&#8217;s redness, or brightness, or saturation. For example, in the &#8220;red&#8221; row, the reddest colors are at the far left and decreasingly red colors to the right. The width of the color depends on the number of colors in the palette.</p>
<p><img src="http://adrianlikins.com/images/sortpal/web_red.png" alt="" />web palette sorted by redness</p>
<p>Different color palettes can be chosen, including the <a href="http://adrianlikins.com/sortpal/?palette=Web">216 &#8220;web safe&#8221; palette</a> (<a href="http://en.wikipedia.org/wiki/Web_colors">wiki</a>), the <a href="http://adrianlikins.com/sortpal/?palette=Named_Colors">X11/css &#8220;named&#8221; colors (</a><a href="http://en.wikipedia.org/wiki/X11_color_names">wiki</a>), the <a href="http://adrianlikins.com/sortpal/?palette=xkcd">xkcd color survey</a>  (<a href="http://blog.xkcd.com/2010/05/03/color-survey-results/">xkcd color survey</a>), a rough approximation of the spot colors often used in <a href="http://adrianlikins.com/sortpal/?palette=print">print</a>, a </a><a href="http://adrianlikins.com/sortpal/?palette=hilbert_rgb">Hilbert curve through rgb space</a> (<a href="http://en.wikipedia.org/wiki/Hilbert_curve">wiki</a>), misc artistic palettes, etc.</a></p>
<p>The sort methods fall into a couple of sorts (ha!):</p>
<p>Sorting by one component of a color space, the most obvious being the red, blue, green values of RGB:</p>
<p><img src="http://adrianlikins.com/images/sortpal/web_red.png" alt="" /></p>
<p><img src="http://adrianlikins.com/images/sortpal/web_green.png" alt="" /></p>
<p><img src="http://adrianlikins.com/images/sortpal/web_blue.png" alt="" />web palette sorted by red, green, blue respectively</p>
<p>Hue, saturation, and value (<a href="http://en.wikipedia.org/wiki/HSL_and_HSV">HSL and HSV</a>) is another color space, that maps a lot more naturally to how people understand colors.</p>
<p><img src="http://adrianlikins.com/images/sortpal/web_hue.png" alt="" /></p>
<p><img src="http://adrianlikins.com/images/sortpal/web_sat.png" alt="" /></p>
<p><img src="http://adrianlikins.com/images/sortpal/web_value.png" alt="" /></p>
<p><img src="http://adrianlikins.com/images/sortpal/web_lightness.png" alt="" /><br />
web palette sorted by hue, saturation, value, lightness, respectively.</p>
<p>Hue or Saturation are probably what most people think of as the natural way to sort colors.</p>
<p>Another approach is sorting by proximity in the 3d color space. The idea being to start at the origin, and find the closest colors in 3d.</p>
<p><img src="http://adrianlikins.com/images/sortpal/web_hsl3d.png" alt="" />Hue, Saturation, Lightness 3d</p>
<p><img src="http://adrianlikins.com/images/sortpal/web_hsv3d.png" alt="" />Hue, Saturation, Value 3d</p>
<p><img src="http://adrianlikins.com/images/sortpal/web_rgb3d.png" alt="" />Red, Green, Blue 3d</p>
<p>The code is up at <a href="https://github.com/alikins/sortpal.js">github</a>. No promises to it&#8217;s correctness or functionality.</p>
<p>Note that for the most part, all of the methods shown here are described as being one parameter sorts, but in some cases there are secondary and tertiary sorts as well (hsv3d, and chroma ) mostly just to stabilize the sorts.</p>
]]></content:encoded>
			<wfw:commentRss>http://adrianlikins.com/2011/07/color-sorting/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>psaltery prototype</title>
		<link>http://adrianlikins.com/2011/07/psaltery-prototype/</link>
		<comments>http://adrianlikins.com/2011/07/psaltery-prototype/#comments</comments>
		<pubDate>Tue, 05 Jul 2011 01:59:01 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[art]]></category>
		<category><![CDATA[ideas]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[videos]]></category>

		<guid isPermaLink="false">http://adrianlikins.com/?p=2268</guid>
		<description><![CDATA[Prototype of bowed psaltery/hammerred dulcimer built from some scrap, zither tuners and guitar strings.]]></description>
			<content:encoded><![CDATA[<p><object type="application/x-shockwave-flash" width="400" height="225" data="http://www.flickr.com/apps/video/stewart.swf?v=71377" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"><param name="flashvars" value="intl_lang=en-us&#038;photo_secret=0d370155a1&#038;photo_id=5903371850"></param><param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=71377"></param><param name="bgcolor" value="#000000"></param><param name="allowFullScreen" value="true"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/video/stewart.swf?v=71377" bgcolor="#000000" allowfullscreen="true" flashvars="intl_lang=en-us&#038;photo_secret=0d370155a1&#038;photo_id=5903371850" height="225" width="400"></embed></object></p>
<p>Prototype of bowed psaltery/hammerred dulcimer built from some scrap, zither tuners and guitar strings.</p>
]]></content:encoded>
			<wfw:commentRss>http://adrianlikins.com/2011/07/psaltery-prototype/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>919noise 4/6/2010 Stochasticaster debut</title>
		<link>http://adrianlikins.com/2011/04/919noise-462010-stochasticaster-debut/</link>
		<comments>http://adrianlikins.com/2011/04/919noise-462010-stochasticaster-debut/#comments</comments>
		<pubDate>Sun, 10 Apr 2011 05:07:31 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[art]]></category>
		<category><![CDATA[ideas]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://adrianlikins.com/?p=638</guid>
		<description><![CDATA[For the performance at the 919noise showcase, I built an instrument based on a cross between a guitar, a kalimba, and a spring reverb tank. I wanted a physical sounds source as opposed to something electronic or digital. In this &#8230; <a href="http://adrianlikins.com/2011/04/919noise-462010-stochasticaster-debut/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>For the performance at the 919noise showcase, I built an instrument based on a cross between a guitar, a kalimba, and a spring reverb tank. </p>
<p><a href="http://www.flickr.com/photos/alikins/5583690395/" title="no name yet by alikins, on Flickr"><img src="http://farm6.static.flickr.com/5105/5583690395_a540aab441.jpg" width="500" height="375" alt="no name yet"></a></p>
<p>I wanted a physical sounds source as opposed to something electronic or digital. In this case, magnetic pickups with strings resonating in them like a regular electric guitar. Long loose strings for reverb type sounds, short strings for kalimba like tones. 34 strings/tines in total, 5 single coil pickups, 5 bridges.  String gauge range from .09 inch (typically the high E string on a guitar), all the way down to a .106 inch string (typically low E string on a bass guitar). </p>
<p>Bridges were the same style of electrical panel grounding bars as I used on the <a href="http://adrianlikins.com/2009/07/flushio0-show-review/">Kalimbazooka</a>. </p>
<p>Unlike the Kalimbazooka, this used the more flexible electric guitar strings for the tines, which made it somewhat difficult to tune. The strings were very sensitive to the exposed length, which was difficult to get right. I got it mostly at tune at one point, but it drifted quickly, and I ended up forgetting about trying to tune it to a particular set of notes.  Oh well, it makes cool noise.</p>
<p>Built it in a week or two. Not sure I learned to play it as well as I would like, but I wanted something new and interesting.  I guess with this kind of thing, the main thing to figure out is how it interacts with the amps and feedback, which I thought I had figured out.</p>
<p>I played first after a couple minutes of soundcheck. One of the first problems I ran into was the buzz/hum. Lots of it. The type of pickups in it (single coils) have a tendency to buzz a bit, but in normal guitars, only one is on at a time. I had 5 of them. That plus some long wires, bad shielding on the cheap donor guitar, and I had a pretty loud buzz. Could be worse, it was a noise show at least. I&#8217;ve got some ideas on how to fix it though.</p>
<p><a href="http://www.flickr.com/photos/lintqueen/5596970028/" title="Adrian at nightlight by lintqueen, on Flickr"><img src="http://farm6.static.flickr.com/5309/5596970028_fd2ebd2584.jpg" width="500" height="500" alt="Adrian at nightlight"></a></p>
<p>The high noise floor made it a little hard to use as much dynamics as I would have like. Quieter things got washed away in the noise.  So less subtlety was called for. </p>
<p>Was nervous about it as usual, and rushed stuff. Not particularly a good habit for noise/ambient/drone, hopefully it works for me.  Seemed to get a good response, and folks were curious and complimentary about the instrument. </p>
]]></content:encoded>
			<wfw:commentRss>http://adrianlikins.com/2011/04/919noise-462010-stochasticaster-debut/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>heart kalimba</title>
		<link>http://adrianlikins.com/2009/08/heart-kalimba/</link>
		<comments>http://adrianlikins.com/2009/08/heart-kalimba/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 21:04:21 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[art]]></category>
		<category><![CDATA[ideas]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[videos]]></category>

		<guid isPermaLink="false">http://adrianlikins.com/?p=595</guid>
		<description><![CDATA[I&#8217;m on a bit of a trend. This was built as a belated Valentines day gift so it was made from a heart shaped candy box. The main set of tines use a busbar, just like the kalimba&#8217;s on the &#8230; <a href="http://adrianlikins.com/2009/08/heart-kalimba/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/z-3HSIz0_TQ&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/z-3HSIz0_TQ&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
<p><a href="http://www.flickr.com/photos/alikins/3807785311/" title="heart_kalimba by alikins, on Flickr"><img src="http://farm4.static.flickr.com/3020/3807785311_280fa25493_m.jpg" width="240" height="240" alt="heart_kalimba" /></a></p>
<p>I&#8217;m on a bit of a trend. This was built as a belated Valentines day gift so it was made from a heart shaped candy box. The main set of tines use a busbar, just like the kalimba&#8217;s on the kalimbazooka. </p>
<p><a href="http://www.flickr.com/photos/alikins/3807785449/" title="tines by alikins, on Flickr"><img src="http://farm3.static.flickr.com/2547/3807785449_5305acabe7_m.jpg" width="240" height="160" alt="tines" /></a></p>
<p>The pine sounding board and metal resonator gives it a pretty good sound.  It is tuned to two octaves of a pentatonic C major scale. </p>
]]></content:encoded>
			<wfw:commentRss>http://adrianlikins.com/2009/08/heart-kalimba/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>kalimbateeny</title>
		<link>http://adrianlikins.com/2009/08/kalimbateeny/</link>
		<comments>http://adrianlikins.com/2009/08/kalimbateeny/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 17:40:21 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[art]]></category>
		<category><![CDATA[ideas]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[videos]]></category>

		<guid isPermaLink="false">http://adrianlikins.com/?p=578</guid>
		<description><![CDATA[Kalimbateeny A tiny Kalimba, also known as a thumb piano, designed to be worn as a piece of jewelery. The Kalimbateeny is a fully functional musical instrument, tuned to a D major pentatonic scale (D, E, F#, A, B). It&#8217;s &#8230; <a href="http://adrianlikins.com/2009/08/kalimbateeny/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Kalimbateeny    A tiny Kalimba, also known as a thumb piano, designed to be worn as a piece of jewelery. The Kalimbateeny is a fully functional musical instrument, tuned to a D major pentatonic scale (D, E, F#, A, B). It&#8217;s made from purpleheart wood, and uses bobby pins for tines.    </p>
<p>  <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/kAP-eWYw1Lg&amp;hl=en&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube.com/v/kAP-eWYw1Lg&amp;hl=en&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object> </p>
<p><a title="tinylimaside by alikins, on Flickr" href="http://www.flickr.com/photos/alikins/3807785441/"><img src="http://farm3.static.flickr.com/2487/3807785441_8444c7d3f6_m.jpg" alt="tinylimaside" width="240" height="160" /></a> </p>
<p><a title="tinylimbadiagnonal by alikins, on Flickr" href="http://www.flickr.com/photos/alikins/3807785329/"> <img src="http://farm3.static.flickr.com/2579/3807785329_2d48f71afd_m.jpg" alt="tinylimbadiagnonal" width="240" height="160" /></a> </p>
<p><a title="tinylimba2 by alikins, on Flickr" href="http://www.flickr.com/photos/alikins/3807785355/"> <img src="http://farm3.static.flickr.com/2579/3807785355_3b87e6fca9_m.jpg" alt="tinylimba2" width="240" height="160" /></a> </p>
<p>
my build notes:</p>
<p>
- laser cut purpleheart box<br />
&nbsp; &#8211; purple heart sourced at Woodcraft, ~1/8&#8243; thick plank</p>
<p>&nbsp; &#8211; cut in four pieces </p>
<ol>
<li>
    &nbsp;&nbsp;&nbsp; top piece
  </li>
</ol>
<ul>
<li>
    &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &#8211; sound hole
  </li>
<li>
    &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &#8211; holes for retaining bar screws to go though
  </li>
</ul>
<ol start=2>
<li>
    &nbsp;&nbsp;&nbsp; middle pieces
  </li>
</ol>
<ul>
<li>
    &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &#8211; most of interior volume removed
  </li>
<li>
    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &#8211; slightly larger holes cut for end of screw and nut to fit
  </li>
<li>
    &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &#8211; should probably be even larger for washer/lock washers to fit
  </li>
</ul>
<ol start=3>
<li>
    &nbsp;&nbsp;&nbsp; bottom pieces
  </li>
</ol>
<ul>
<li>
    &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &#8211; no holes, etc
  </li>
<li>
    &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &#8211; (should have made holes through the bottom, would make assembly/disassembly easier)
  </li>
</ul>
<p>
- retaining bar is 1/4 inch steel rod<br />
&nbsp;&nbsp;&nbsp; &#8211; sourced at hardware store<br />
&nbsp;&nbsp;&nbsp; &#8211; two holes drilled through for retaining bar screws</p>
<p>&nbsp;&nbsp; &nbsp;&nbsp; &#8211; best done on a mill/drill press but I did it with a cordless drill<br />
&nbsp;&nbsp;&nbsp; &#8211; cut to ~1.5 inches</p>
<p>- sound bars are 3/16 inch steel rod<br />
&nbsp;&nbsp;&nbsp; &#8211; sourced at hardware store<br />
&nbsp;&nbsp;&nbsp; &#8211; cut to ~1.25 inches<br />
&nbsp;&nbsp;&nbsp; &#8211; in theory this can be free floating on the surface, but I found</p>
<p>&nbsp;&nbsp;&nbsp; assembly much easier after I glued them to the surface<br />
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &#8211; gorilla glue, clamped with the retaining bar, screws, and two extra tines</p>
<p>-tines<br />
&nbsp;&nbsp;&nbsp; &#8211; used bobby pins<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &#8211; sourced from the pile of bobby pins in the bathroom</p>
<p>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &#8211; cut apart with dremel<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &#8211; used the straight part, with the rubberized coating at the end<br />
&nbsp;&nbsp;&nbsp; &#8211; (tried using tines cut from a sewer snake approx 1/8 inch wide, but these<br />
&nbsp;&nbsp;&nbsp; tines seemed to be too stiff for the small size of the box)</p>
<p>- fasteners</p>
<p>&nbsp;&nbsp;&nbsp; &#8211; 3mm phillips pan screws<br />
&nbsp;&nbsp;&nbsp; &#8211; 3mm hex nuts<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &#8211; (washers and lock washers recommended if space allows)</p>
<p>- wood finish<br />
&nbsp;&nbsp;&nbsp; &#8211; walnut oil<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &#8211; (something a little clearer would have probably been better, to lessen discoloration of the purpleheart)</p>
<p>- hanging<br />
&nbsp;&nbsp;&nbsp; &#8211; slot cut though 3rd layer of wood before box assembly<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &#8211; large enough to fit some silver craft wire though to make<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; wire wrapped loops on each end<br />
&nbsp;&nbsp;&nbsp; &#8211; cording created from hand-dyed silk ribbon and attached to wire-wrapped loops with overhand knots</p>
<p>&nbsp;&nbsp;&nbsp; &#8211; overhand knots covered with cones<br />
&nbsp;&nbsp;&nbsp; &#8211; ends finished with ribbon ends</p>
<p></body><br />
</html></p>
]]></content:encoded>
			<wfw:commentRss>http://adrianlikins.com/2009/08/kalimbateeny/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>flushio=0/kalimbazooka video</title>
		<link>http://adrianlikins.com/2009/08/flushio0kalimbazooka-video/</link>
		<comments>http://adrianlikins.com/2009/08/flushio0kalimbazooka-video/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 17:10:41 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[art]]></category>
		<category><![CDATA[ideas]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[videos]]></category>

		<guid isPermaLink="false">http://adrianlikins.com/?p=574</guid>
		<description><![CDATA[Wherein you can witness my awe inspiring stage presence.]]></description>
			<content:encoded><![CDATA[<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/NcwmxQ5-nVM&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/NcwmxQ5-nVM&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p>Wherein you can witness my awe inspiring stage presence. </p>
]]></content:encoded>
			<wfw:commentRss>http://adrianlikins.com/2009/08/flushio0kalimbazooka-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>flushio=0 show review</title>
		<link>http://adrianlikins.com/2009/07/flushio0-show-review/</link>
		<comments>http://adrianlikins.com/2009/07/flushio0-show-review/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 21:06:10 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[art]]></category>
		<category><![CDATA[ideas]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://adrianlikins.com/?p=567</guid>
		<description><![CDATA[Played last night as flushio=0 (&#8220;flush I/O equals zero&#8221;, long story&#8230;) at Nightlight as part of the 919noise showcase. I spent my free time last week building the instrument I played. I call it the Kalimbazooka. It is two kalimbas &#8230; <a href="http://adrianlikins.com/2009/07/flushio0-show-review/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Played last night as flushio=0 (&#8220;flush I/O equals zero&#8221;, long story&#8230;) at Nightlight as part of the <a href="http://www.919noise.org">919noise</a> showcase.</p>
<p><a href="http://www.flickr.com/photos/alikins/3752634158/"><img src="http://farm3.static.flickr.com/2535/3752634158_334cbaf4d2_m.jpg" width="180" height="240" alt="Kalimbazooka in action" /></a></p>
<p>I spent my free time last week building the instrument I played. I call it the Kalimbazooka. It is two <a href="http://en.wikipedia.org/wiki/Kalimba">kalimbas</a> mounted to a large cardboard tube. It has a pizeo contact pickup for amplification. I added a shoulder mount for holding it, and some red LEDs because everything needs red LEDs.</p>
<p>The music at 919noise shows tend to be all over the map, but it&#8217;s weird, often improvised, usually electronic in nature, and weird. The Kalimbazooka and my playing of it meets all of the above requirements. </p>
<p>I have to admit, I spent 95% of my time building and testing it, and not that much time learning how to play it. But it went okay anyway. No one threw anything at me (though that may have been due to me holding a large weapon looking device). </p>
<p>I played a short set, only about 12 minutes or so of actual playing. I try to play short sets at this noise shows, typically aiming for about 20-25 minutes. It felt like I played about three times as long, but I don&#8217;t have the best perception of time when I&#8217;m nervous. </p>
<p><a href="http://www.flickr.com/photos/alikins/3752634172/"><img src="http://farm3.static.flickr.com/2469/3752634172_4d77d1d52a_m.jpg" width="240" height="180" alt="not_hiding" /></a></p>
<p>I was worried about having equipment issues, but the kalimbazooka worked great. I did manage to break on of my favourite pieces of gear (a Digitech Space Station), but I can fix it. That threw me off a little bit, since I had practised with it and was planning on using it heavily. </p>
<p>Crowd response seemed good, so I&#8217;m happy. I have video of it, so it may go up on youtube at some point. </p>
<p>Now I need to figure out what the next thing I want to build is. I have ideas. Lots of ideas ;-></p>
<p><a href="http://www.flickr.com/photos/jcuthrell/3750501847/"><img src="http://farm3.static.flickr.com/2560/3750501847_20c5685500_m.jpg"></p>
]]></content:encoded>
			<wfw:commentRss>http://adrianlikins.com/2009/07/flushio0-show-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sneak peek for show tonight</title>
		<link>http://adrianlikins.com/2009/07/sneak-peek-for-show-tonight/</link>
		<comments>http://adrianlikins.com/2009/07/sneak-peek-for-show-tonight/#comments</comments>
		<pubDate>Thu, 23 Jul 2009 20:47:02 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[art]]></category>
		<category><![CDATA[ideas]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://adrianlikins.com/?p=561</guid>
		<description><![CDATA[Sneak peak of the weapon of choice for the &#8220;flushio=0&#8243; show tonight 7/23 at Nightlight.]]></description>
			<content:encoded><![CDATA[<p>Sneak peak of the weapon of choice for the &#8220;flushio=0&#8243; show tonight 7/23 at <a href="http://www.nightlightclub.com/">Nightlight</a>. </p>
<p><a href="http://www.flickr.com/photos/alikins/3750469156/" title="Kalimbazooka"><img src="http://farm3.static.flickr.com/2269/3750469156_73db815bdf_m.jpg" width="240" height="180" alt="Kalimbazooka" /></a></p>
<p><a href="http://www.flickr.com/photos/alikins/3750469166/" ><img src="http://farm3.static.flickr.com/2616/3750469166_58b55d25c8_m.jpg" width="240" height="180" alt="Kalimbazooka" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://adrianlikins.com/2009/07/sneak-peek-for-show-tonight/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>7/23 flushio=0 show for 919noise at nightlight</title>
		<link>http://adrianlikins.com/2009/07/723-flushio0-show-for-919noise-at-nightlight/</link>
		<comments>http://adrianlikins.com/2009/07/723-flushio0-show-for-919noise-at-nightlight/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 19:50:51 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[art]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://adrianlikins.com/?p=558</guid>
		<description><![CDATA[Thursday, July 23 I (aka, flushio=0) am playing as part of the 919noise showcase at Nighlight It&#8217;s been a while since I&#8217;ve played in public, so I&#8217;m not entirely sure what I&#8217;m going to do yet. But I&#8217;ll figure something &#8230; <a href="http://adrianlikins.com/2009/07/723-flushio0-show-for-919noise-at-nightlight/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Thursday, July 23 I (aka, flushio=0) am playing as part of the <a href="http:///www.919noise.org">919noise</a> showcase at <a href="http://www.nightlightclub.com/">Nighlight</a></p>
<p>It&#8217;s been a while since I&#8217;ve played in public, so I&#8217;m not entirely sure what I&#8217;m going to do yet. But I&#8217;ll figure something out. </p>
]]></content:encoded>
			<wfw:commentRss>http://adrianlikins.com/2009/07/723-flushio0-show-for-919noise-at-nightlight/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>business card caliper v2</title>
		<link>http://adrianlikins.com/2009/07/business-card-caliper-v2/</link>
		<comments>http://adrianlikins.com/2009/07/business-card-caliper-v2/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 02:02:44 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[art]]></category>
		<category><![CDATA[ideas]]></category>

		<guid isPermaLink="false">http://adrianlikins.com/?p=554</guid>
		<description><![CDATA[New revision of the card. No big differences except for the slide now includes useful info printed on it, and the instructions go onto the part of the card that doesn&#8217;t get used. Paper with a pattern on top, and &#8230; <a href="http://adrianlikins.com/2009/07/business-card-caliper-v2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>New revision of the card. No big differences except for the slide now includes useful info printed on it, and the instructions go onto the part of the card that doesn&#8217;t get used. </p>
<p>Paper with a pattern on top, and white on the back seems to work best for engraving. This was cut on the Epilog laser cutter.<br />
Lots of adjustments trying to get things to fold up nicely with the different papers. </p>
<p><a href="http://www.flickr.com/photos/alikins/3702280189/"><img src="http://www.adrianlikins.com/gallery/d/1617-2/blue_diamond_card.jpg"></a></p>
<p><a href="http://www.flickr.com/photos/alikins/3702280179/"><Img src="http://www.adrianlikins.com/gallery/d/1627-2/blue_diamond_caliper.jpg"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://adrianlikins.com/2009/07/business-card-caliper-v2/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

