<?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; software</title>
	<atom:link href="http://adrianlikins.com/category/software/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.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>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>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>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>N sources of nerd guilt</title>
		<link>http://adrianlikins.com/2009/06/n-sources-of-nerd-guilt/</link>
		<comments>http://adrianlikins.com/2009/06/n-sources-of-nerd-guilt/#comments</comments>
		<pubDate>Thu, 11 Jun 2009 22:26:45 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[ideas]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://adrianlikins.com/?p=533</guid>
		<description><![CDATA[Things that cause tech guilt. - I should backup more often. - I should use any/stronger crypto on everything. - I should really change my password - I should blog/twitter/facebook/otherwise broadcast desperate attempts to get people to pay attention to &#8230; <a href="http://adrianlikins.com/2009/06/n-sources-of-nerd-guilt/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Things that cause tech guilt.</p>
<p>- I should backup more often.<br />
- I should use any/stronger crypto on everything.<br />
- I should really change my password<br />
- I should blog/twitter/facebook/otherwise broadcast desperate attempts to get people to pay attention to me more<br />
- I should blog/etc less<br />
- I should update this system<br />
- I should really automate this task<br />
- I should write this code using WhizBangTech instead of the way that works and I actually know.<br />
- I should optimize this code<br />
- I should document this.<br />
- I should file a bug report about this.<br />
- I really should refactor this code.</p>
]]></content:encoded>
			<wfw:commentRss>http://adrianlikins.com/2009/06/n-sources-of-nerd-guilt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://adrianlikins.com/2009/04/527/</link>
		<comments>http://adrianlikins.com/2009/04/527/#comments</comments>
		<pubDate>Sun, 26 Apr 2009 15:42:15 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[art]]></category>
		<category><![CDATA[doodles]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[ideas]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://adrianlikins.com/?p=527</guid>
		<description><![CDATA[Fiddling around with the laser cutter at Techshop. I used inkscape to vectorize some doodles, then cut then out of paper using the Epilog laser cutter at Techshop. Paper cuts very well, with pretty good detail (see the hatching cut &#8230; <a href="http://adrianlikins.com/2009/04/527/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/alikins/3474376483/" title="laser cutter cutting by alikins, on Flickr"><img src="http://farm4.static.flickr.com/3557/3474376483_c4bbb9e583.jpg" width="500" height="375" alt="laser cutter cutting" /></a></p>
<p>Fiddling around with the laser cutter at <a href="https://techshopdurham.com/">Techshop</a>. I used <a href="http://www.inkscape.org">inkscape</a> to vectorize some doodles, then cut then out of paper using the Epilog laser cutter at Techshop. </p>
<p>Paper cuts very well, with pretty good detail (see the hatching cut out from the doodle in the front for example). I&#8217;ve tried cutting acrylic as well, and it cuts well too, but in some of the detail areas, it unmelts into a bit of a blob that makes detailed parts harder to extract. Need to try it again with more power to see if it will cut a wider kerf. </p>
<p>I also tried <a href="http://www.flickr.com/photos/alikins/3475185280/in/set-72157617253107887/">engraving/rasterizing</a> an image. I think it turned out pretty well, almost exactly what I was looking for. It did burn through a little bit in one section, but I could fix that in the image. The image itself started off kind of &#8220;pointilist&#8221;, which I vectorized with some of the settings tweaked a bit so it would blurb some of the points together so it would hold together. Then I &#8220;engraved&#8221; it instead of cutting it out, but with the power set high enough to burn through the paper.</p>
]]></content:encoded>
			<wfw:commentRss>http://adrianlikins.com/2009/04/527/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>ring ring, fedoraphone!</title>
		<link>http://adrianlikins.com/2009/04/ring-ring-fedoraphone/</link>
		<comments>http://adrianlikins.com/2009/04/ring-ring-fedoraphone/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 18:34:34 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[fedora]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://adrianlikins.com/?p=520</guid>
		<description><![CDATA[I managed to get one of my machines installed with a os version I didn&#8217;t want, and no way to change it. Normally, this means it&#8217;s time to koan/cobbler to get it re-provisioned. But I couldn&#8217;t log into the machine &#8230; <a href="http://adrianlikins.com/2009/04/ring-ring-fedoraphone/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I managed to get one of my machines installed with a os version I didn&#8217;t want, and no way to change it. Normally, this means it&#8217;s time to koan/cobbler to get it re-provisioned. But I couldn&#8217;t log into the machine to do anything. I could of reinstalled it from a cd/dvd, but I hate burning cd/dvd&#8217;s for that. I could of written an image to usb key and installed from that, but I didn&#8217;t have any with me.</p>
<p>So I decided to try what <a href="http://www.awe.com/mark/blog/20090330.html">Mark Cox</a>; did and try to boot it from my phone. I more or less just followed the steps he mentioned, though I had to get some 3rd party software to expose the storage card as a usb device.</p>
<p>But that aside, it worked. Not the fastest way to boot, but it got the live image running so I could do a hard drive install.  Kind of cool. Wonder if there is anyway to support i386/x86_64 live images on the same card?</p>
]]></content:encoded>
			<wfw:commentRss>http://adrianlikins.com/2009/04/ring-ring-fedoraphone/feed/</wfw:commentRss>
		<slash:comments>3</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>it will blend</title>
		<link>http://adrianlikins.com/2009/02/it-will-blend/</link>
		<comments>http://adrianlikins.com/2009/02/it-will-blend/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 22:27:08 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[art]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://adrianlikins.com/?p=485</guid>
		<description><![CDATA[Spent most of Sunday trying to learn how to use Blender (Blender the 3d modelling app, not the home appliance. I&#8217;ve already gotten my KACBO [Kitchen Aid Certified Blender Operator certification]). I knew it was a fairly impressive app, just &#8230; <a href="http://adrianlikins.com/2009/02/it-will-blend/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Spent most of Sunday trying to learn how to use <a href="http://www.blender.org/">Blender</a> (Blender the 3d modelling app, not the home appliance. I&#8217;ve already gotten my KACBO [Kitchen Aid Certified Blender Operator certification]).</p>
<p>I knew it was a fairly impressive app, just from seeing what the kids did at the <a href="http://www.blendernation.com/2007/07/16/red-hat-high-2007/">Red Hat High</a> blender course a few years ago. </p>
<p>It&#8217;s not the easiest thing to learn how to use, especially since I haven&#8217;t really tried any 3d apps in about 10 years. The last time I tried it, it was all CSG based apps for building models for <a href="http://www.povray.org/">POV-RAY</a>. Blender is mostly a mesh based modelling tool, like most modern 3d apps. </p>
<p>The main motivation being a combination of sites that offer web based 3d printing like <a href="http://www.shapeways.com">shapeways.com</a> and the possibility of <a href="http://www.techshoprdu.com">Techshop Durham</a> getting a 3d printer in the future. </p>
<p>I only made it through a couple of the tutorials so far, but it&#8217;s been fun. Just need to figure out something cool to design and print. </p>
]]></content:encoded>
			<wfw:commentRss>http://adrianlikins.com/2009/02/it-will-blend/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

