<?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; free culture</title>
	<atom:link href="http://adrianlikins.com/category/free-culture/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>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>Business card caliper</title>
		<link>http://adrianlikins.com/2009/07/business-card-caliper/</link>
		<comments>http://adrianlikins.com/2009/07/business-card-caliper/#comments</comments>
		<pubDate>Sun, 05 Jul 2009 18:30:49 +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>

		<guid isPermaLink="false">http://adrianlikins.com/?p=537</guid>
		<description><![CDATA[This is a project I&#8217;ve been experimenting with at Techshop Durham. It is a laser cut business card that folds up to create a working caliper. I&#8217;ll probably make some for myself, Rod-o-Rama, and lintqueen. The card in &#8220;ready to &#8230; <a href="http://adrianlikins.com/2009/07/business-card-caliper/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This is a project I&#8217;ve been experimenting with at <a href="http://www.techshopdurham.com">Techshop Durham</a>. It is a laser cut business card that folds up to create a working caliper. I&#8217;ll probably make some for <a href="http://www.adrianlikins.com">myself</a>, <a href="http://www.rodorama.com">Rod-o-Rama</a>, and <a href="http://www.lintqueen.com">lintqueen</a>.</p>
<p><a href="http://www.flickr.com/photos/alikins/3687450279/"><img src="http://www.adrianlikins.com/gallery/d/1597-2/card_red_2.jpg"></a><br />
The card in &#8220;ready to hand out&#8221; mode</p>
<p><a href="http://www.flickr.com/photos/alikins/3688263680/"><img src="http://www.adrianlikins.com/gallery/d/1598-2/card_caliper_1.jpg"></a><br />
Card assembled, ready to use. These particular examples were actually cut out of paint chip cards (<a href="http://www.lintqueen.com">lintqueen&#8217;s</a> idea).</p>
<p><a href="http://www.flickr.com/photos/alikins/3688263682/"><img src="http://www.adrianlikins.com/gallery/d/1607-2/card_caliper_2.jpg"></a><br />
After snapping out parts.</p>
<p><a href="http://www.flickr.com/photos/alikins/3688263698/"><img src="http://www.adrianlikins.com/gallery/d/1609-2/card_caliper_slider.jpg"></a><br />
Folding over the slide</p>
<p><a href="http://www.flickr.com/photos/alikins/3688263688/"><img src="http://www.adrianlikins.com/gallery/d/1608-2/card_caliper_assembly.jpg"></a><br />
Next step in assembly.</p>
<p><a href="http://www.flickr.com/photos/alikins/3688263692"><img src="http://www.adrianlikins.com/gallery/d/1610-2/card_caliper_complete.jpg"></a><br />
Assembly completed.</p>
<p><a href="http://www.flickr.com/photos/alikins/3688263684/"><img src="http://www.adrianlikins.com/gallery/d/1603-2/card_caliper_8mm.jpg"></a><br />
In action, measuring an 8mm hex key. Accuracy and precision are not too bad for something folded out of paper.</p>
<p>It&#8217;s cut and engraved with the epilog laser cutter at <a href="http://techshopdurham.com">Techshop Durham</a>. Initial design scratched out on paper, transferred to <a href="http://www.inkscape.org">Inkscape</a>, final tweaking in Corel Draw (actualy, lots of tweaking, since it did a horrible job importing the svg). </p>
<p>It still needs some refinements, like better instructions and possibly an illustration or two. I have some minor aesthetic tweaks in mind as well, but this version is mostly complete.  </p>
<p>The corel draw source file is <a href="http://www.adrianlikins.com/business_card/business_card_capiler_1_0_0.cdr">here</a>. That file could use some cleanup, and I&#8217;d like to get it back into a open format like svg, but that will do for now. Consider it under Creative Commons. </p>
<p><a rel="license" href="http://creativecommons.org/licenses/by/3.0/us/"><img alt="Creative Commons License" style="border-width:0" src="http://creativecommons.org/images/public/somerights20.png" /></a><br /><span xmlns:dc="http://purl.org/dc/elements/1.1/" href="http://purl.org/dc/dcmitype/StillImage" property="dc:title" rel="dc:type">Business Card Caliper</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="http://www.adrianlikins.com" property="cc:attributionName" rel="cc:attributionURL">Adrian Likins</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/3.0/us/">Creative Commons Attribution 3.0 United States License</a>.<br />Based on a work at <a xmlns:dc="http://purl.org/dc/elements/1.1/" href="http://www.adrianlikins.com/business_card/" rel="dc:source">www.adrianlikins.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://adrianlikins.com/2009/07/business-card-caliper/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>video killed the irc star</title>
		<link>http://adrianlikins.com/2009/02/video-killed-the-irc-star/</link>
		<comments>http://adrianlikins.com/2009/02/video-killed-the-irc-star/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 20:55:17 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[free culture]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://adrianlikins.com/?p=489</guid>
		<description><![CDATA[Red Hat Magazine Spotlight on Func Video put together by Red Hat in which Seth Vidal, Michael DeHaan and I comment intelligently about func. Or at least, that&#8217;s what the clever editing will hopefully lead you to believe.]]></description>
			<content:encoded><![CDATA[<p><a href="http://magazine.redhat.com/2009/02/17/video-spotlight-on-func/">Red Hat Magazine Spotlight on Func</a></p>
<p>Video put together by Red Hat in which <a href="http://skvidal.wordpress.com/">Seth Vidal</a>, <a href="http://www.michaeldehaan.net/">Michael DeHaan</a> and I comment intelligently about <a href="https://fedorahosted.org/func/">func</a>. </p>
<p>Or at least, that&#8217;s what the clever editing will hopefully lead you to believe. </p>
]]></content:encoded>
			<wfw:commentRss>http://adrianlikins.com/2009/02/video-killed-the-irc-star/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>I need commit access. Also, where is the bug tracker?</title>
		<link>http://adrianlikins.com/2008/11/i-need-commit-access-also-where-is-the-bug-tracker/</link>
		<comments>http://adrianlikins.com/2008/11/i-need-commit-access-also-where-is-the-bug-tracker/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 17:18:44 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[free culture]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://adrianlikins.com/?p=475</guid>
		<description><![CDATA[via gdk]]></description>
			<content:encoded><![CDATA[<p>via gdk</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/q-4afdMalVA&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/q-4afdMalVA&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://adrianlikins.com/2008/11/i-need-commit-access-also-where-is-the-bug-tracker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>conFUD</title>
		<link>http://adrianlikins.com/2008/01/confud/</link>
		<comments>http://adrianlikins.com/2008/01/confud/#comments</comments>
		<pubDate>Sat, 12 Jan 2008 23:02:01 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[free culture]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://adrianlikins.com/?p=476</guid>
		<description><![CDATA[The main day of the fudCON talks were today. Seemed to go pretty well. I pitched two sessions, one on OLPCs/Asus EEEs/ultraportables, and another on func. The OLPC session was more of a meetup/get together than a talk, and seemed &#8230; <a href="http://adrianlikins.com/2008/01/confud/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The main day of the fudCON talks were today. Seemed to go pretty well. I pitched two sessions, one on OLPCs/Asus EEEs/ultraportables, and another on <a href="https://hosted.fedoraproject.org/func/">func</a>.</p>
<p>The OLPC session was more of a meetup/get together than a talk, and seemed to go pretty well. Unfortunately, it got scheduled against the Fedora.tv/Vaniv/Percolote talk, so I missed that.</p>
<p>My real talk was func, and the talk seemed to go well. I tried to keep the slides pretty slim and lightweight, and breezed though them pretty fast, but I think it went okay.  I didn&#8217;t seem to get any of the vaguely aggressive questions in the Q&#038;A these sort of talks usually get, so I&#8217;ll take that as a win.</p>
]]></content:encoded>
			<wfw:commentRss>http://adrianlikins.com/2008/01/confud/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fudcon</title>
		<link>http://adrianlikins.com/2008/01/fudcon/</link>
		<comments>http://adrianlikins.com/2008/01/fudcon/#comments</comments>
		<pubDate>Tue, 08 Jan 2008 18:40:29 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[free culture]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://adrianlikins.com/?p=475</guid>
		<description><![CDATA[I&#8217;ll be at FudCon this weekend. What is FUDcon? It&#8217;s like a BarCamp but for Fedora nerds. I&#8217;ll be helping with the presentation on Func. I&#8217;m writing the slides at the moment. Yay! Slides! If there is anything someone wants &#8230; <a href="http://adrianlikins.com/2008/01/fudcon/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll be at <a href="http://barcamp.org/FUDConRaleigh2008">FudCon</a> this weekend. What is FUDcon? It&#8217;s like a <a href="http://en.wikipedia.org/wiki/BarCamp">BarCamp</a> but for <a href="http://fedoraproject.org/">Fedora</a> nerds.</p>
<p>I&#8217;ll be helping with the presentation on <a href="https://hosted.fedoraproject.org/func/">Func</a>. I&#8217;m writing the slides at the moment. Yay! Slides! If there is anything someone wants me to include (photo, reference, curseword, etc) let me know and I&#8217;ll see what I can sneak in. My slide presentation philosophy is &#8220;leave them confused&#8221;.</p>
<p>You may also know me from other slides and hackfests like cobbler, pulp, olpc, eee, vidpress, and wknc.</p>
]]></content:encoded>
			<wfw:commentRss>http://adrianlikins.com/2008/01/fudcon/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>more Red Hat High</title>
		<link>http://adrianlikins.com/2007/08/more-red-hat-high-3/</link>
		<comments>http://adrianlikins.com/2007/08/more-red-hat-high-3/#comments</comments>
		<pubDate>Wed, 08 Aug 2007 21:46:49 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[art]]></category>
		<category><![CDATA[free culture]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://adrianlikins.com/archives/2007/08/08/more-red-hat-high-3/</guid>
		<description><![CDATA[one last Red Hat High article]]></description>
			<content:encoded><![CDATA[<p>one last <a href="http://www.redhatmagazine.com/2007/07/27/red-hat-high-2007-after-graduation-day-what-next/">Red Hat High article</a></p>
]]></content:encoded>
			<wfw:commentRss>http://adrianlikins.com/2007/08/more-red-hat-high-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More red hat high</title>
		<link>http://adrianlikins.com/2007/07/more-red-hat-high/</link>
		<comments>http://adrianlikins.com/2007/07/more-red-hat-high/#comments</comments>
		<pubDate>Sat, 14 Jul 2007 02:43:36 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[free culture]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://adrianlikins.com/?p=453</guid>
		<description><![CDATA[Almost finished with Red Hat High week. Check out this Red Hat Magazine article for a better summary than I can provide. Pretty cool experience. I learned a lot, and I think the students did as well. I hope I &#8230; <a href="http://adrianlikins.com/2007/07/more-red-hat-high/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Almost finished with Red Hat High week. Check out this <a href="http://www.redhatmagazine.com/2007/07/13/red-hat-high-update/">Red Hat Magazine article</a> for a better summary than I can provide.</p>
<p>Pretty cool experience. I learned a lot, and I think the students did as well. I hope I can put up some of the tracks they put together this week.</p>
<p>Trying to teach classes of any sort always wears me out. And this week was no exception. I think I need about 40 hours of sleep now.</p>
]]></content:encoded>
			<wfw:commentRss>http://adrianlikins.com/2007/07/more-red-hat-high/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>splicemusic</title>
		<link>http://adrianlikins.com/2006/09/splicemusic/</link>
		<comments>http://adrianlikins.com/2006/09/splicemusic/#comments</comments>
		<pubDate>Mon, 25 Sep 2006 02:05:46 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[free culture]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[webstuff]]></category>

		<guid isPermaLink="false">http://adrianlikins.com/?p=357</guid>
		<description><![CDATA[Playing around with splicemusic.com. A website that involve some aspects of a social networking site and music collab/sharing sites like ccmixter. It&#8217;s all CC content, and they include a simple little flash based sequencer app for quickly building songs with &#8230; <a href="http://adrianlikins.com/2006/09/splicemusic/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Playing around with <a href="http://www.splicemusic.com">splicemusic.com</a>. A website that involve some aspects of a social networking site and music collab/sharing sites like ccmixter. It&#8217;s all CC content, and they include a simple little flash based sequencer app for quickly building songs with the available samples.</p>
<p>An interesting idea, although the site still seems to be in beta. Some of the ui bits could use some work, but I like the idea of it if nothing else.</p>
]]></content:encoded>
			<wfw:commentRss>http://adrianlikins.com/2006/09/splicemusic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

