<?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</title>
	<atom:link href="http://adrianlikins.com/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-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</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>helicopter flight/lesson</title>
		<link>http://adrianlikins.com/2011/07/helicopter-flightlesson/</link>
		<comments>http://adrianlikins.com/2011/07/helicopter-flightlesson/#comments</comments>
		<pubDate>Tue, 05 Jul 2011 02:31:42 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://adrianlikins.com/?p=2271</guid>
		<description><![CDATA[A couple weeks ago we took a helicopter demo flight and lesson from North Carolina Rotor and Wing. It was a short and to the point classroom lesson, and then a ~30 min flight in a Robinson R22 helicopter. The &#8230; <a href="http://adrianlikins.com/2011/07/helicopter-flightlesson/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/alikins/5825803659/" title="me in a helicopter by alikins, on Flickr"><img src="http://farm3.static.flickr.com/2176/5825803659_2a6a9ba3c8.jpg" width="333" height="500" alt="me in a helicopter"></a></p>
<p>A couple weeks ago we took a helicopter demo flight and lesson from <a href="http://www.ncrotorandwing.com/">North Carolina Rotor and Wing</a>. It was a short and to the point classroom lesson, and then a ~30 min flight in a <a href="http://en.wikipedia.org/wiki/Robinson_R22">Robinson R22</a> helicopter. </p>
<p>The helicopter itself is tiny. Two passengers, shoulder to shoulder. A small piston engine. Less than a 1000 lbs sans passengers. </p>
<p>Flying a helicopter is an interesting experience. There are alot of things going on to keep track of, and the controls are sensitive,but with a bit of delay to control input. </p>
<p>This was a gift from <a href="http://ginalikins.com">Gina</a> since I had often remarked I had never been in a helicopter. Although I have flown in a glider, a single engine kit plane, a zeppelin, and a hot air balloon. Any one know where one could take a gyrocopter flight?</p>
]]></content:encoded>
			<wfw:commentRss>http://adrianlikins.com/2011/07/helicopter-flightlesson/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>git diff like highlighting of extra whitespace in vim and emacs</title>
		<link>http://adrianlikins.com/2011/06/git-diff-like-highlighting-of-extra-whitespace-in-vim-and-emacs/</link>
		<comments>http://adrianlikins.com/2011/06/git-diff-like-highlighting-of-extra-whitespace-in-vim-and-emacs/#comments</comments>
		<pubDate>Mon, 06 Jun 2011 16:43:39 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[fedora]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://adrianlikins.com/?p=2261</guid>
		<description><![CDATA[via Jim Meyering via coreutils list Some configs for vim and emacs to show trailing whitespace and other whitespace anomalies. vim config let c_space_errors=1 highlight RedundantSpaces ctermbg=red guibg=red match RedundantSpaces /\s\+$\&#124; \+\ze\t/ Emacs needs the Whitespace mode from http://www.emacswiki.org/emacs/WhiteSpace The &#8230; <a href="http://adrianlikins.com/2011/06/git-diff-like-highlighting-of-extra-whitespace-in-vim-and-emacs/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>via <a href="http://meyering.net/">Jim Meyering</a> via <a href="http://www.mail-archive.com/bug-coreutils@gnu.org/msg15573.html">coreutils list</a></p>
<p>Some configs for vim and emacs to show trailing whitespace and other whitespace anomalies.</p>
<p>vim config<br />
<code><br />
let c_space_errors=1<br />
highlight RedundantSpaces ctermbg=red guibg=red<br />
match RedundantSpaces /\s\+$\| \+\ze\t/</code></p>
<p>Emacs needs the Whitespace mode from <a href="http://www.emacswiki.org/emacs/WhiteSpace">http://www.emacswiki.org/emacs/WhiteSpace</a></p>
<p>The default config is a bit overboard for me, so I use something more like:<br />
<code><br />
;http://www.emacswiki.org/emacs/WhiteSpace<br />
(require 'whitespace)<br />
(autoload 'global-whitespace-mode           "whitespace" "Toggle whitespace visualization."        t)<br />
(autoload 'global-whitespace-toggle-options "whitespace" "Toggle local `whitespace-mode' options." t)</p>
<p>;turn on the more or less git diff --color whitespace highlighting<br />
(setq whitespace-space whitespace-style (quote (face tabs trailing space-before-tab newline empty space-after-tab indentation)))<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://adrianlikins.com/2011/06/git-diff-like-highlighting-of-extra-whitespace-in-vim-and-emacs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>gitconfig</title>
		<link>http://adrianlikins.com/2011/05/gitconfig/</link>
		<comments>http://adrianlikins.com/2011/05/gitconfig/#comments</comments>
		<pubDate>Sat, 14 May 2011 21:14:13 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[fedora]]></category>
		<category><![CDATA[free culture]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://adrianlikins.com/?p=649</guid>
		<description><![CDATA[I finally started organizing the various git commands and aliases I use alot, and published them to github. My gitconfig repo. Some of these are useful only for projects similar to mine (fedora, tito based, bugzilla, etc) but I think &#8230; <a href="http://adrianlikins.com/2011/05/gitconfig/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I finally started organizing the various git commands and aliases I use alot, and published them to github. My <a href="https://github.com/alikins/gitconfig">gitconfig</a> repo.</p>
<p>Some of these are useful only for projects similar to mine (fedora, <a href="http://rm-rf.ca/tito">tito based</a>, bugzilla, etc) but I think some of then are generally useful.</p>
<p>A few favorites:<br />
<code># commits not pushed to $1<br />
unpushed = cherry -v</code></p>
<p><code># ignore po files in "git log", sorry translators ;-&lt;<br />
slog = "!sh -c 'git log --no-merges $1 `ls | grep -v ^po`' -"</p>
<p># what tag contains the sha<br />
whatrelease = name-rev --name-only</p>
<p># what branch contains the sha<br />
contains = branch --contains</p>
<p># what got pushed to master in the last hour<br />
#  based on http://stackoverflow.com/questions/3357219/expose-the-date-a-commit-was-pushed-to-a-repository<br />
justpushed = log origin/master@{\"1 hour ago\"}..origin/master --</p>
<p># show a list of branches sorted by time of last commit<br />
brage =  "!sh -c 'for C in $(git for-each-ref --sort=committerdate refs/heads --format=\"%(refname:short)\") ; do git show -s pretty=format:\"%Cgreen%ci %Cblue%cr%Creset  $C\" \"$C\" -- ; done'"</p>
<p># show a list of tags sorted by when they were tagged<br />
tagage = "!sh -c 'git for-each-ref --sort=taggerdate refs/tags --format=\"%(refname:short)\"'"</p>
<p># show a list of every branch and show there latests commit, sorted by last commit<br />
brlog = "!sh -c 'for C in $(git for-each-ref --sort=committerdate refs/heads --format=\"%(refname:short)\") ; do git show -s --pretty=format:\"%Cgreen%ci %Cblue%cr%Creset  $C\" \"$C\" -- ; git show  -s $C ; echo; done'"</p>
<p># needs python-bugzilla, and git-showbugs<br />
openbugs = showbugs -s NEW,ASSIGNED,NEEDINFO,FAILS_QA,REOPENED,ON_DEV<br />
closedbugs = showbugs -s PASSES_QA,VERIFIED,RELEASE_PENDING,CLOSED</p>
<p></code></p>
<p><code># show a list of files with bug fixes in them, sorted by popularity of occurance<br />
#  aka, list the buggy files<br />
buggyfiles = !"git log --format=\"format:%n\" --grep \"^[[:digit:]]\\+:\" --name-only | grep .  | sort | uniq -c | sort -n"<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://adrianlikins.com/2011/05/gitconfig/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Maker Faire NC 6/18/11</title>
		<link>http://adrianlikins.com/2011/05/maker-faire-nc-6811/</link>
		<comments>http://adrianlikins.com/2011/05/maker-faire-nc-6811/#comments</comments>
		<pubDate>Sat, 14 May 2011 17:40:08 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[ideas]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://adrianlikins.com/?p=643</guid>
		<description><![CDATA[I&#8217;m going to be playing Maker Faire NC 6/18/11 at ~12:30pm in the Kerr Building at NC State Fairgrounds. I&#8217;ll be bringing the Stochasticaster, the Heart Kalimba, Kalimbateeny, Kalmibazooka, the de-fretted guitar, and whatever else I can find or finish &#8230; <a href="http://adrianlikins.com/2011/05/maker-faire-nc-6811/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;m going to be playing <a href="http://makerfairenc.com/">Maker Faire NC</a> 6/18/11 at ~12:30pm in the Kerr Building at NC State Fairgrounds.</p>
<p>I&#8217;ll be bringing the <a href="http://adrianlikins.com/2011/04/919noise-462010-stochasticaster-debut/">Stochasticaster</a>, the <a href="http://adrianlikins.com/2009/08/heart-kalimba/">Heart Kalimba</a>, <a href="http://adrianlikins.com/2009/08/kalimbateeny/">Kalimbateeny</a>, <a href="http://adrianlikins.com/2009/07/flushio0-show-review/">Kalmibazooka</a>, the <a href="http://adrianlikins.com/2005/04/more-fretless-guitar-pics/">de-fretted guitar</a>, and whatever else I can find or finish in the meantime. </p>
]]></content:encoded>
			<wfw:commentRss>http://adrianlikins.com/2011/05/maker-faire-nc-6811/feed/</wfw:commentRss>
		<slash:comments>3</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>Near space balloon launch talk at TriLug.</title>
		<link>http://adrianlikins.com/2010/09/near-space-balloon-launch-talk-at-trilug/</link>
		<comments>http://adrianlikins.com/2010/09/near-space-balloon-launch-talk-at-trilug/#comments</comments>
		<pubDate>Wed, 08 Sep 2010 18:16:32 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[ideas]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://adrianlikins.com/?p=630</guid>
		<description><![CDATA[Since several TriLUG&#8217;ers were involved, TriLUG is hosting a talk about our recent balloon launch. The talk will be given by Tanner Lovelace and Jonathan Trappe. The meeting will be Thursday, Sept 9, 2010 at Red Hat headquarters in Raleigh, &#8230; <a href="http://adrianlikins.com/2010/09/near-space-balloon-launch-talk-at-trilug/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Since several <a href="http://www.trilug.org">TriLUG&#8217;ers</a> were involved, TriLUG is hosting a talk about our <a href="http://adrianlikins.com/2010/08/balloon-launch/">recent balloon launch</a>.  The talk will be given by <a href="http://wtl.wayfarer.org/Home">Tanner Lovelace</a> and <a href="http://www.clusterballoon.com/">Jonathan Trappe</a>. </p>
<p>The meeting will be Thursday, Sept 9, 2010 at <a href="http://www.redhat.com">Red Hat</a> headquarters in Raleigh, NC. </p>
<p><a href="http://www.flickr.com/photos/alikins/4939806987/" title="IMG_1205 by alikins, on Flickr"><img src="http://farm5.static.flickr.com/4121/4939806987_5c76d9d4d0.jpg" width="500" height="375" alt="IMG_1205" /></a> </p>
]]></content:encoded>
			<wfw:commentRss>http://adrianlikins.com/2010/09/near-space-balloon-launch-talk-at-trilug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Balloon launch</title>
		<link>http://adrianlikins.com/2010/08/balloon-launch/</link>
		<comments>http://adrianlikins.com/2010/08/balloon-launch/#comments</comments>
		<pubDate>Mon, 30 Aug 2010 04:19:48 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[ideas]]></category>

		<guid isPermaLink="false">http://adrianlikins.com/?p=620</guid>
		<description><![CDATA[I&#8217;ve been working with a team from Tech Shop RDU to put together a helium balloon as part of the Hackerspaces in Space contest. Basic idea, build a balloon with a camera and gps, and try to get pictures of &#8230; <a href="http://adrianlikins.com/2010/08/balloon-launch/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve been working with a team from <a href="http://techshoprdu.com">Tech Shop RDU</a> to put together a helium balloon as part of the <a href="http://www.workshop88.com/space/">Hackerspaces in Space</a> contest. </p>
<p>Basic idea, build a balloon with a camera and gps, and try to get pictures of the curvature of the earth and the blackness of space. And I think we did. </p>
<p>We actually made two launches, the first included my camera (Canon sd850, running <a href="http://chdk.wikia.com">CHDK</a> firmware, and a <a href="http://github.com/alikins/near_space">script</a>  to take a pic every 15 seconds and log some basic data). We thought we lost it after the gps transmitting via a ham radio data connectio stopped transmitting, but someone found it in Wendell, NC and called us. </p>
<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/7iL__ed8Eyc?fs=1&amp;hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/7iL__ed8Eyc?fs=1&amp;hl=en_US" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
<p><a href="http://www.flickr.com/photos/alikins/4940390648/" title="IMG_1174 by alikins, on Flickr"><img src="http://farm5.static.flickr.com/4120/4940390648_dfbb1469b6.jpg" width="500" height="375" alt="IMG_1174" /></a></p>
<p><a href="http://www.flickr.com/photos/alikins/4940385348/" title="IMG_1058 by alikins, on Flickr"><img src="http://farm5.static.flickr.com/4075/4940385348_6ceeae0870.jpg" width="500" height="375" alt="IMG_1058" /></a></p>
<p>The team also made a second launch that day. We thought the first one was long gone, so put together a second launch from spare parts. I had to leave early so didn&#8217;t get to help out with the second launch though. Mk II was a simpler setup, with just a Spot gps tracker and a nikon point and shoot camera with a built in intervalometer. It looks like it was able to fly a little higher, probably due to the reduced weight (first capsule was about 3.5lbs, I think the second one was closer to 2). </p>
<p><a href="http://www.flickr.com/photos/clubjuggler/4918372577/" title="DSCN0123 by clubjuggler, on Flickr"><img src="http://farm5.static.flickr.com/4116/4918372577_7ed76cec91.jpg" width="500" height="375" alt="DSCN0123" /></a></p>
<p><a href="http://www.flickr.com/photos/clubjuggler/4918973598/" title="DSCN0177 by clubjuggler, on Flickr"><img src="http://farm5.static.flickr.com/4082/4918973598_4bed7cecda.jpg" width="500" height="375" alt="DSCN0177" /></a></p>
<p><a href="http://www.flickr.com/photos/clubjuggler/4918975938/" title="DSCN0203 by clubjuggler, on Flickr"><img src="http://farm5.static.flickr.com/4098/4918975938_c71532b9ec.jpg" width="500" height="375" alt="DSCN0203" /></a></p>
<p>I think the current estimate for the second balloon launch is somewhere in the 80,000 ft range. It is definately high enough to see the curvature of the earth and the thinning and the black of space in the photos. </p>
<p>We had a lot of people show up to watch the first launch. </p>
<p><a href="http://www.flickr.com/photos/clubjuggler/4925589870/" title="IMG_1209 by clubjuggler, on Flickr"><img src="http://farm5.static.flickr.com/4135/4925589870_b7a447abe7.jpg" width="500" height="375" alt="IMG_1209" /></a></p>
<p><a href="http://www.flickr.com/photos/lintqueen/4917870299/" title="Near Space Balloon by lintqueen, on Flickr"><img src="http://farm5.static.flickr.com/4098/4917870299_2769c24ca9.jpg" width="500" height="333" alt="Near Space Balloon" /></a></p>
<p><a href="http://www.flickr.com/photos/lintqueen/4918197102/" title="Adrian and the Balloon by lintqueen, on Flickr"><img src="http://farm5.static.flickr.com/4076/4918197102_8dfb2b2b12.jpg" width="500" height="403" alt="Adrian and the Balloon" /></a></p>
<p><a href="http://www.flickr.com/photos/lintqueen/4917918369/" title="Near Space Balloon by lintqueen, on Flickr"><img src="http://farm5.static.flickr.com/4119/4917918369_b65f0ae9b1.jpg" width="500" height="333" alt="Near Space Balloon" /></a></p>
<p>We even maanaged to get a fair amount of <a href="http://clubjuggler.com/2010/08/accumulated-press-coverage/">press coverage</a>, including a segment on the local news ,<a href="http://www.wral.com/news/local/video/8185176/">WRAL</a></p>
<p><script src="http://www.wral.com/news/local/video/8185176/?version=embedded" type="text/javascript"></script><script type="text/javascript"> width=330; height=280; wral_insert_video_player_8185176(width,height); </script></p>
<p>Photos provided by <a href="http://www.flickr.com/photos/lintqueen/">lintqueen</a>, and <a href="http://www.flickr.com/photos/clubjuggler/">clubjuggler</a>, and <a href="http://ncnearspace.org/">Ncnearspace</a></p>
]]></content:encoded>
			<wfw:commentRss>http://adrianlikins.com/2010/08/balloon-launch/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>
	</channel>
</rss>
