<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Aaron Barker</title>
	
	<link>http://www.aaronbarker.net</link>
	<description />
	<lastBuildDate>Thu, 05 Aug 2010 15:25:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/AaronBarker" /><feedburner:info uri="aaronbarker" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>CSS Icon Sprite System</title>
		<link>http://feedproxy.google.com/~r/AaronBarker/~3/K132w1yNyCM/</link>
		<comments>http://www.aaronbarker.net/2010/08/css-icon-sprite-system/#comments</comments>
		<pubDate>Thu, 05 Aug 2010 15:25:21 +0000</pubDate>
		<dc:creator>Aaron</dc:creator>
				<category><![CDATA[HTML, CSS and Javascript]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[icons]]></category>
		<category><![CDATA[sprites]]></category>

		<guid isPermaLink="false">http://www.aaronbarker.net/?p=135</guid>
		<description><![CDATA[At work, we make a lot of web apps. These are usually very data driven, so lots of tables and forms. To help identify actions on each page we use a number of icons for easy recognition. We use icons in a few distinct ways. As a stand alone icon with no text and as [...]]]></description>
			<content:encoded><![CDATA[<p>At work, we make a lot of web apps. These are usually very data driven, so lots of tables and forms. To help identify actions on each page we use a number of icons for easy recognition.</p>
<p>We use icons in a few distinct ways. As a stand alone icon with no text and as an icon with text.  The icon with text could be on it&#8217;s own, or floated left or right with other icons with text as potential actions.</p>
<p>As often happens in teams where many people are touching the CSS, we don&#8217;t know what all other team members have added to the site.  I would find several declaration of the same icon, sometimes with the same styling but with different names such as &#8220;add-property&#8221; and then again as &#8220;add-agreement&#8221;.</p>
<p>So I set out to make a more efficient system for using our icons. I think this may have been around the time I first saw Nicole Sullivans <a href="http://www.stubbornella.org/content/2009/03/23/object-oriented-css-video-on-ydn/">Object Oriented CSS</a> talk so I was inspired to make things a little more&#8230; object oriented (reusable chunks not tied to any given structure).</p>
<p>This is what I came up with.<br />

<style>
.sprite { background:url(/files/diagonalsprites/sprite-diagonal.png) no-repeat top left;} .sprite.icon { height:16px; width:16px; overflow:hidden; display:inline-block; text-indent:100em; cursor:hand; cursor:pointer; } *+html .sprite.icon { text-indent:0; width:0; padding-left:16px; } /*IE7 sucks*/ .sprite.prefix { padding-left:20px; height:20px; display:inline-block; } .sprite.right { float:right; margin-left:15px; } .sprite.left { float:left; margin-right:15px; } .accept { background-position: -234px -0px;  } .add { background-position: -208px -26px;  } .bomb { background-position: -182px -52px;  } .delete { background-position: -156px -78px;  } .feed { background-position: -130px -104px;  } .heart { background-position: -104px -130px;  } .lock { background-position: -78px -156px;  } .pencil { background-position: -52px -182px;  } .star { background-position: -26px -208px;  } .user { background-position: -0px -234px;  } </style>
</p>
<h2>How it works</h2>
<p>First, lets make the element we want to act on semantically correct.  Use the appropriate element (anchor, span, etc) and insert the appropriate text.</p>
<p><code>&lt;a href="#d"&gt;Delete property&lt;/a&gt;</code></p>
<p><a href="#d">Delete property</a></p>
<p>To make the site a bit more performant I wanted this system to use CSS sprites.  So I combined the most commonly used icons into a <a href="http://www.aaronbarker.net/2010/07/diagonal-sprites/">diagonal sprite</a>. Adding the class of &#8220;sprite&#8221; loads the sprite image into the layer. Since we are using a diagonal sprite that is positioned to 0,0 by default, it would show nothing. Or more specifically, the empty white space in the top left corner.</p>
<p><code>&lt;a href="#d" <strong>class="sprite"</strong>&gt;Delete property&lt;/a&gt;</code></p>
<p><a class="sprite" href="#d">Delete property</a></p>
<p>Not much of a change.</p>
<p>You then call the class of the icon within the sprite (code near end of article) that you want such as delete, edit, info, etc. This positions the sprite correctly to show the specific icon you want but it is still not spaced correctly.</p>
<p><code>&lt;a href="#d" class="sprite <strong>delete</strong>"&gt;Delete property&lt;/a&gt;</code></p>
<p><a class="sprite delete" href="#d">Delete property</a></p>
<p>Then you can add one of the following classes that define how the icon will be used (spacing).  Each <strong>must</strong> be accompanied by the <strong>sprite</strong> class or they won&#8217;t work. They are as follows:</p>
<h3>.icon</h3>
<p>This will hide the text and show the icon only.  The element will be set to the icon height (usually 16&#215;16). Useful for a delete/edit/etc column in a table. The text is hidden, but still there for accessibility and potentially SEO if public.</p>
<p><code>&lt;a href="#d" class="sprite delete <strong>icon</strong>"&gt;Delete property&lt;/a&gt;</code></p>
<p><a class="sprite delete icon" href="#d">Delete property</a></p>
<h3>.prefix</h3>
<p>This will add padding to the left side of the element to make room for the icon and a little space in-between (20px total).</p>
<p><code>&lt;a href="#d" class="sprite delete <strong>prefix</strong>"&gt;Delete property&lt;/a&gt;</code></p>
<p><a class="sprite delete prefix" href="#d">Delete property</a></p>
<h3>.right</h3>
<p>Floats the element to the right and adds a margin-left to provide spacing between multiple floated elements.</p>
<p><code>&lt;a href="#d" class="sprite delete prefix <strong>right</strong>"&gt;Delete property&lt;/a&gt;</code></p>
<p><a class="sprite delete prefix right" href="#d">Delete property</a></p>
<h3>.left</h3>
<p class="clearfix">Floats the element to the left and adds a margin-right to provide spacing between multiple floated elements.</p>
<p><code>&lt;a href="#d" class="sprite delete prefix <strong>left</strong>"&gt;Delete property&lt;/a&gt;</code></p>
<div class="cleared"><a class="sprite delete prefix left" href="#d">Delete property</a></div>
<p>Hopefully it&#8217;s obvious how, by mixing the correct classes, you can create many more options then are specifically defined.  You can easily add or change icons without having to go back to the CSS to create new combinations each time. You can just add a new &#8220;print&#8221; icon and instantly use it with the icon/prefix/etc classes. You don&#8217;t need to add print-icon, print-prefix, etc.</p>
<h2>Here is the CSS</h2>
<p><code>/* Set up the utility classes */<br />
.sprite	{ background:url(/files/diagonalsprites/sprite-diagonal.png) no-repeat top left;}<br />
.sprite.icon	{ height:16px; width:16px; overflow:hidden; display:inline-block; text-indent:100em; cursor:hand; cursor:pointer; }<br />
*+html .sprite.icon	{ text-indent:0; width:0; padding-left:16px; } /*IE7 sucks*/<br />
.sprite.prefix	{ padding-left:20px; height:20px; display:inline-block; }<br />
.sprite.right	{ float:right; margin-left:15px; }<br />
.sprite.left	{ float:left; margin-right:15px; }<br />
/* Now the individual icons */<br />
.accept	{ background-position: -234px -0px;  }<br />
.add	{ background-position: -208px -26px;  }<br />
.bomb	{ background-position: -182px -52px;  }<br />
.delete	{ background-position: -156px -78px;  }<br />
.feed	{ background-position: -130px -104px;  }<br />
.heart	{ background-position: -104px -130px;  }<br />
.lock	{ background-position: -78px -156px;  }<br />
.pencil	{ background-position: -52px -182px;  }<br />
.star	{ background-position: -26px -208px;  }<br />
.user	{ background-position: -0px -234px;  }</code></p>
<h2>Conclusion</h2>
<p>I hope this system, or a derivative of it, can help you in your work. Several on my team have found this to be a great time saver. Once you understand the system and can remember the names of the specific icons, you can easily create many different displays for your icons without ever having to go back to the CSS. I use this almost daily at work and love the simplicity it bring to my pages.</p>
<p>I would love any feedback on how it can be improved and to hear of how you leverage it your own projects.</p>
<img src="http://feeds.feedburner.com/~r/AaronBarker/~4/K132w1yNyCM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.aaronbarker.net/2010/08/css-icon-sprite-system/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.aaronbarker.net/2010/08/css-icon-sprite-system/</feedburner:origLink></item>
		<item>
		<title>Diagonal CSS Sprites</title>
		<link>http://feedproxy.google.com/~r/AaronBarker/~3/K64ey03hHe4/</link>
		<comments>http://www.aaronbarker.net/2010/07/diagonal-sprites/#comments</comments>
		<pubDate>Tue, 27 Jul 2010 05:16:19 +0000</pubDate>
		<dc:creator>Aaron</dc:creator>
				<category><![CDATA[HTML, CSS and Javascript]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[sprites]]></category>

		<guid isPermaLink="false">http://www.aaronbarker.net/?p=131</guid>
		<description><![CDATA[So you&#8217;ve got your sprite created, and it&#8217;s working great. 30+ icons in one image&#8230; major HTTP connections saved. You have made your little corner of the interwebs a little happier and faster. Steve Souders would be proud. Until you find that your sprite is used on an element that is tall enough to expose [...]]]></description>
			<content:encoded><![CDATA[<p>So you&#8217;ve got your <a href="http://www.alistapart.com/articles/sprites">sprite</a> created, and it&#8217;s working great. 30+ icons in one image&#8230; major <a href="http://developer.yahoo.net/blog/archives/2007/04/rule_1_make_few.html">HTTP connections saved</a>. You have made your little corner of the interwebs a little happier and faster. <a href="http://stevesouders.com/">Steve Souders</a> would be proud.</p>
<p><a href="http://www.aaronbarker.net/wp-content/uploads/2010/07/spritechunks-exposed.png"><img class="alignright size-full wp-image-140" title="spritechunks-exposed" src="http://www.aaronbarker.net/wp-content/uploads/2010/07/spritechunks-exposed.png" alt="" width="234" height="94" /></a>Until you find that your sprite is used on an element that is tall enough to expose the next image component down in the sprite.  The 50px of spacing between components you thought would be enough&#8230; isn&#8217;t. 50px isn&#8217;t enough so 100px should be right? Better make it 200px to be ultra safe. So you increase the space between all of your components from 50px to 200px which increases the height by 400% and probably increases the filesize a bit too.</p>
<p>The 200px spacing surely is tall enough&#8230; right?  RIGHT??!? Surely no content maintainer would ever put more then 200px of content in there after you hand it off. *gulp*</p>
<p>I figured there had to be a better way to make <strong>sure</strong> this didn&#8217;t happen. Horizontally spacing the sprite would solve the too tall issue, but then it has to be spaced out pretty decently as well. Probably even more than the vertical spacing.  What I wanted was the best of both worlds. Horizontal AND vertical spacing.</p>
<p>What do you get when you both horizontally and vertically space something? A diagonal.  I searched around but couldn&#8217;t find any mention of a diagonal sprite. I didn&#8217;t know if that meant this was a new idea, or a bad one that no one was willing to publish. I&#8217;m hoping it&#8217;s the former.</p>
<h2>Why a Diagonal Sprite?</h2>
<p><a href="http://www.aaronbarker.net/wp-content/uploads/2010/07/diagonal-in-action.png"><img class="size-full wp-image-143 alignright" title="diagonal-in-action" src="http://www.aaronbarker.net/wp-content/uploads/2010/07/diagonal-in-action.png" alt="" width="250" height="142" /></a>With the sprite built on a diagonal there are no components below or to the right of the component you are showing. This allows for the element using the sprite to be as wide or as tall as it needs to be with no worry of exposing the next component.</p>
<p>Unfortunately there is a filesize tradeoff. You add a LOT of unused whitespace. For one 30 or so component sprite that I changed from vertically stacked to diagonally stacked, there was only about a 10% increase in size.  For another that had around 60 images, it was a 45% increase. The 10% increase was pretty easy to swallow for the benefit gained. The 45% is a bit harder. So your mileage may vary.</p>
<p><img class="alignleft" title="Diagonal Sprite" src="/files/diagonalsprites/sprite-diagonal.png" alt="" width="200" height="200" />Since you don&#8217;t have to put as much spacing between your sprite components (I do 10px vertically and horizontally to allow a little per component manipulation) the sprite dimensions are significantly smaller.  My 60 sprite image with 50px of space between components was 2142px tall. Spacing it out to 200px between components took it to over 8000px. The diagonal sprite using the same 60 components, with 10px padding ends up being around 1500px tall and wide. As far as I can tell this only really matters to the <a href="http://spritegen.website-performance.org/section/what-are-css-sprites">Opera browser</a>. I can&#8217;t find information on any other browser having issues with ginormous dimensions, but would love to hear feedback if you know of other issues.</p>
<p>So that you can see this in practice, I created a simple 10 component sprite from a few icons from the <a href="http://www.famfamfam.com/lab/icons/silk/">famfamfam silk icon</a> set (seen above). You can view an <a href="/files/diagonalsprites/example.html">example page</a> that shows the 50px, 200px and diagonally spaced sprites. The filesizes and dimensions ended up being: <a href="http://www.aaronbarker.net/files/diagonalsprites/sprite50.png">50px</a> &#8211; 16&#215;610 5,723 bytes, <a href="/files/diagonalsprites/sprite200.png">200px</a> &#8211; 16&#215;1960 5,967 bytes, <a href="/files/diagonalsprites/sprite-diagonal.png">diagonal</a> &#8211; 250&#215;250 6,554 bytes.</p>
<p>Resize the page to be fairly narrow to get content to wrap and even the 200px spaced sprite exposes an additional component.</p>
<h2>Making the Diagonal Sprite</h2>
<p>When making my normal vertically stacked sprites I use the fantastic online tool <a href="http://spritegen.website-performance.org/">CSS Sprite Generator</a>.  I noticed that the back end for that was open source and so <a href="https://launchpad.net/css-sprite-generator">grabbed a copy</a>.</p>
<p>After significant pain in getting the required components installed on my local machine (post on that coming later), I tweaked their code to output the sprite in a diagonal. At the moment the code is kind of quick and dirty since I wasn&#8217;t sure if it was going to work. If there is interest in me making it available, please let me know in the comments below and I&#8217;ll try to get it cleaned up and released.</p>
<p>In the end I think this is a pretty decent solution to the problem I ran into. It probably doesn&#8217;t work for everyone and the filesize increase is something to consider, but it is an interesting option to have in the back pocket. I would love to hear your thoughts on this solution.</p>
<img src="http://feeds.feedburner.com/~r/AaronBarker/~4/K64ey03hHe4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.aaronbarker.net/2010/07/diagonal-sprites/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		<feedburner:origLink>http://www.aaronbarker.net/2010/07/diagonal-sprites/</feedburner:origLink></item>
		<item>
		<title>SXSW 2010: Amazing Food</title>
		<link>http://feedproxy.google.com/~r/AaronBarker/~3/fZWf6C8iEh8/</link>
		<comments>http://www.aaronbarker.net/2010/03/sxsw-2010-amazing-food/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 04:29:27 +0000</pubDate>
		<dc:creator>Aaron</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bbq]]></category>
		<category><![CDATA[food]]></category>
		<category><![CDATA[meat]]></category>
		<category><![CDATA[sxsw]]></category>

		<guid isPermaLink="false">http://www.aaronbarker.net/?p=102</guid>
		<description><![CDATA[Wow.  What an amazing week of food. I&#8217;m really nervous to step on a scale when I get home.  Here&#8217;s the highlights. Right after touching down in Austin we headed off to Lockhart, Texas.  This is a town about 30 miles outside of Austin that has 3 legendary BBQ joints.  The first one we went [...]]]></description>
			<content:encoded><![CDATA[<p>Wow.  What an amazing week of food. I&#8217;m really nervous to step on a scale when I get home.  Here&#8217;s the highlights.</p>
<p><a href="http://www.aaronbarker.net/wp-content/uploads/2010/03/IMG_0083.jpg"><img class="alignleft size-medium wp-image-113" title="IMG_0083" src="http://www.aaronbarker.net/wp-content/uploads/2010/03/IMG_0083-300x225.jpg" alt="" width="300" height="225" /></a>Right after touching down in Austin we headed off to Lockhart, Texas.  This is a town about 30 miles outside of Austin that has 3 legendary BBQ joints.  The first one we went to was <a href="http://www.blacksbbq.com/">Blacks BBQ</a>, a place that has been run by the same family for like 75 years.</p>
<p>Here we learned to be careful about what you ordered.  My ribs were some of the best I have ever had, but my brisket was so-so and kinda dry.  For others on the table it was the exact opposite.  Awesome brisket (nice and moist) and so-so ribs.  It all depends on where you get the cut from within the slab of meat.  Some of that can be chalked up to timing of when you reach the counter vs where they are in the slab.  Some you can actually ask for (wet end of brisket).</p>
<p><a href="http://www.aaronbarker.net/wp-content/uploads/2010/03/IMG_0082.jpg"><img class="alignright size-thumbnail wp-image-114" title="IMG_0082" src="http://www.aaronbarker.net/wp-content/uploads/2010/03/IMG_0082-150x150.jpg" alt="" width="150" height="150" /></a>We got to go on a tour of their pit that are the originals the grandfather had built 75 years ago with 300lb lids.  They use post oak to smoke the meat. The oak is plentiful in the area and is aged a year after cutting.  They cook their meat to about 90% done and then put it in a cooler for a few DAYS, not a few hours like I do.  This gives the meat a lot of time to redistribute juices and stuff.  Then they pull it out and cook it the last 10% before serving.</p>
<p><a href="http://www.aaronbarker.net/wp-content/uploads/2010/03/IMG_0088.jpg"><img class="size-medium wp-image-112 alignleft" title="IMG_0088" src="http://www.aaronbarker.net/wp-content/uploads/2010/03/IMG_0088-150x150.jpg" alt="" width="150" height="150" /></a>We went back the next day to another of the 3 places.  This time to <a href="http://www.smittysmarket.com/">Smitty&#8217;s Market</a>. More awesome ribs, but in a different way.  They had a bit of a sweet glaze on them that rocked. No utensils are provided (much to the dismay of the ladies in the group) so it&#8217;s all with your hands. A great ambiance to this place, but I think Black&#8217;s barely edged them out.</p>
<p>The next day we stayed more local to Austin and went to a chain BBQ place called <a href="http://www.rudys.com/">Rudy&#8217;s</a>. The place was awesome. Great atmosphere, great brand, great food!  Of the four (one more coming up) BBQ places I ate, on this trip. If someone only had time to go to one place, this would be the one I would tell them to eat at. Best all around experience, close to town, great food.</p>
<p><a href="http://www.aaronbarker.net/wp-content/uploads/2010/03/IMG_0089.jpg"><img class="size-medium wp-image-111 alignnone" title="IMG_0089" src="http://www.aaronbarker.net/wp-content/uploads/2010/03/IMG_0089-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://www.aaronbarker.net/wp-content/uploads/2010/03/IMG_0090.jpg"><img class="size-thumbnail wp-image-110 alignnone" title="IMG_0090" src="http://www.aaronbarker.net/wp-content/uploads/2010/03/IMG_0090-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://www.aaronbarker.net/wp-content/uploads/2010/03/IMG_0091.jpg"><img class="alignnone size-thumbnail wp-image-109" title="IMG_0091" src="http://www.aaronbarker.net/wp-content/uploads/2010/03/IMG_0091-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://www.aaronbarker.net/wp-content/uploads/2010/03/IMG_0092.jpg"><img class="alignnone size-thumbnail wp-image-108" title="IMG_0092" src="http://www.aaronbarker.net/wp-content/uploads/2010/03/IMG_0092-150x150.jpg" alt="" width="150" height="150" /></a></p>
<p>Last time I came to SXSW we ate at a wing place called <a href="http://www.pluckers.com/">Pluckers</a>, and we just HAD to make a return trip. My two favorite flavors are the Dr. Pepper wings and the Lemon Pepper. Sooo yummy.  We just don&#8217;t have good wing places in Utah.  We found out too late that they have a Buffalo Wild Wings as well (weekly visit back in KC).  Sadly, no pictures were taken.</p>
<p><a href="http://www.aaronbarker.net/wp-content/uploads/2010/03/IMG_0102.jpg"><img class="alignleft size-medium wp-image-107" title="IMG_0102" src="http://www.aaronbarker.net/wp-content/uploads/2010/03/IMG_0102-300x225.jpg" alt="" width="300" height="225" /></a>Last, but not least is the Salt Lick.  This is a BBQ joint out in the middle of nowhere.  But they also serve thousands of people a week.  This one is all you can eat pork ribs, brisket, sausage and sides.  This time Salt Lick ranked at the bottom of my list BBQ wise, but was second (after Rudy&#8217;s) for experience. But being last in this list is like saying a 2011 Camero is last after a Ferrari, Lamborghini and <a href="http://twitter.com/zelph/status/10528236798">2011 Corvette</a> <a href="http://twitter.com/zelph/status/10535187982">Grand Sport</a>. It&#8217;s still better then anything you have probably ever driven (or eaten as the case may be).  So you&#8217;d take it on any day of the week.<a href="http://twitter.com/zelph/status/10535187982"><br />
</a></p>
<p>That&#8217;s the end of the list.  There were a few &#8220;lighter&#8221; meals along the way, but nothing worth mentioning.</p>
<p>I sure miss living in a BBQ town, especially now that I am <a href="http://www.aaronbarker.net/2009/06/ive-taken-up-smoking/">a lot more into it</a>. I would definitely take more advantage of the KC area if I moved back.  So many places I heard of but didn&#8217;t try.</p>
<p>Utah is sorely lacking in iconic places to eat.  It&#8217;s starting to get a few good <a href="http://http://www.lonscookinshack.com/">BBQ</a> <a href="http://www.patsbbq.com/">places</a>, but not enough.</p>
<p>Thanks for the extra poundage Austin.  It was a pleasure to get fatter with your BBQy goodness.</p>
<p>Oh, and we hit Rudy&#8217;s one more time on the way out.  The scale said I am now about 8lbs more pig and cow then I was before I left <img src='http://www.aaronbarker.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<img src="http://feeds.feedburner.com/~r/AaronBarker/~4/fZWf6C8iEh8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.aaronbarker.net/2010/03/sxsw-2010-amazing-food/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.aaronbarker.net/2010/03/sxsw-2010-amazing-food/</feedburner:origLink></item>
		<item>
		<title>OK Go – This Too Shall Pass – Rube Goldberg Machine version</title>
		<link>http://feedproxy.google.com/~r/AaronBarker/~3/26d32zqBOf8/</link>
		<comments>http://www.aaronbarker.net/2010/03/ok-go-this-too-shall-pass-rube-goldberg-machine-version/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 05:51:15 +0000</pubDate>
		<dc:creator>Aaron</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[videos]]></category>

		<guid isPermaLink="false">http://www.aaronbarker.net/?p=97</guid>
		<description><![CDATA[I know I&#8217;m late to the game (since it has over 6 million views as of now), but this is hands down the coolest music video I have ever seen. No computers. No trickery. All one camera shot.  Amazing]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="385" 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/qybUFnY7Y8w&amp;hl=en_US&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="385" src="http://www.youtube.com/v/qybUFnY7Y8w&amp;hl=en_US&amp;fs=1&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>I know I&#8217;m late to the game (since it has over 6 million views as of now), but this is hands down the coolest music video I have ever seen.</p>
<p>No computers. No trickery. All one camera shot.  Amazing</p>
<img src="http://feeds.feedburner.com/~r/AaronBarker/~4/26d32zqBOf8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.aaronbarker.net/2010/03/ok-go-this-too-shall-pass-rube-goldberg-machine-version/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.aaronbarker.net/2010/03/ok-go-this-too-shall-pass-rube-goldberg-machine-version/</feedburner:origLink></item>
		<item>
		<title>Defending the Family</title>
		<link>http://feedproxy.google.com/~r/AaronBarker/~3/YhvOi4FuPdQ/</link>
		<comments>http://www.aaronbarker.net/2009/10/defending-the-family/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 05:48:06 +0000</pubDate>
		<dc:creator>Aaron</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.aaronbarker.net/?p=71</guid>
		<description><![CDATA[For the past year or so I have kept it kind of hidden that I now own a handgun and occasionally carry it out in public. For some reason the other day I thought that I should share my thoughts on why I do this, so here it goes. Why own a gun in the [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-77" title="XD40Subcompact" src="http://www.aaronbarker.net/wp-content/uploads/2009/10/XD40Subcompact.jpg" alt="XD40Subcompact" width="320" height="240" />For the past year or so I have kept it kind of hidden that I now own a handgun and occasionally carry it out in public. For some reason the other day I thought that I should share my thoughts on why I do this, so here it goes.</p>
<h2>Why own a gun in the first place?</h2>
<p><a href="http://www.aaronbarker.net/2009/06/ive-taken-up-smoking/">Yet again</a> this is <a href="http://twitter.com/hallrandy">Randy</a>&#8216;s fault as he got into it first and got me thinking about it. About a year ago there was rumor of a few robberies in my neighboorhood.  Randy had recently purchased a handgun and as a good friend was trying to suck me into it as well.  One night Kaylene and I were talking about the neighborhood break-ins and I wondered what I would really do if it happened in our home.  If some crazed individual (or individuals) were to break into our home what would I do?  How would I get to my sons&#8217; rooms across the hall crossing in front of whatever danger was on it&#8217;s way up the steps? How would I defend them?  Go ahead and think through this scenario right now.  Imagine you are in bed and you hear a window break.  What is your plan of action?  How do you get your family safe and what will you use to defend them?</p>
<p>I did this very thing.  I looked around the bedroom to see what I could use as some form of a weapon if it happened right then.  The most threatening thing I could find was the $10 table lamp from Wal-mart&#8230; literally.  There was no bat or pole or metal bar to use as clubs. Nothing heavy to throw.  I had a lamp to defend my family with.  My inner cave man was screaming that this was not acceptable.  I had no way to defend my family other then my fists and a lamp.  This wasn&#8217;t going to dissuade someone who had already crossed the line of coming into my home.</p>
<p>This started a several month process of research, pondering and convincing on my part to get Kaylene to let me get the gun.  One day she finally said yes, and I bought the gun the next day before she could change her mind.  The gun I purchased is a <a href="http://www.springfield-armory.com/xd.php?version=62">Springfield Armory XD Sub-Compact 40S&amp;W</a>. I also immediately signed up for a class to allow me to get my Concealed Firearm Permit to allow me to carry my gun in a concealed manner. More on this further down.</p>
<h2>Think of the Children</h2>
<p><img class="alignleft size-full wp-image-80" src="http://www.aaronbarker.net/wp-content/uploads/2009/10/519121901_wCHFD-S.jpg" alt="" width="350" height="233" />How to keep the kids safe around a firearm was my top priority.  The day I purchased the gun I also purchased a safe for it on the way home.  The safe I purchased is a <a href="http://www.gunvault.com/minisafe.nxg">GunVault Mini</a>. This is a small safe but it is large enough to hold the gun and an extra magazine of rounds.  What good would the gun be if it took a while to get to in an emergency (in the closet under some clothes or wherever). I wanted it within reach when I was asleep and the small size allowed it to fit under my bedside table.</p>
<p>It has a keypad that your fingers can easily find for entering the combination in the dark. After 3 incorrect attempts is locks for a few minutes.  This means that when the boys inevitably were playing with the buttons they had 3 chances at that 1 in 12 million chance of guessing my combo before it locked up.</p>
<p>On the microscopic chance they got into the safe, or if by my stupidity the safe was left open or the gun laying around (at point I would get rid of the gun myself due to negligence) then the gun I chose has a number of safety&#8217;s built into it.</p>
<ol>
<li>At this point in time I do not leave the gun in a state where you can just pull the trigger to fire it.  You would first need to pull back the slide to rack the first round (you know, like you see in the movies).  This takes a decent amount of force and is a hair difficult for me, a bit difficult for Kaylene and near impossible for a 4 year old.  Keeping it in this state makes it slower for me to be ready to engage a threat, but for now it gives me peace of mind with the kids.</li>
<li>If another evil miracle occurs and a 4 year old is able to rack the slide there are two safetys built into the gun for firing.  There is a trigger safety as well as a grip safety.  You have to pull the trigger as well as be pushing in fairly hard on the back of the grip for the gun to fire.  Fairly hard means there have been a few times where I have gone to shoot when practicing and it wouldn&#8217;t fire because my grip was incorrect or I wasn&#8217;t squeezing hard enough.  These safety&#8217;s make it so it won&#8217;t go off if it&#8217;s dropped.  You can&#8217;t just pull the trigger by itself and have it go off. In the world of handguns&#8230; this is a fairly safe gun.</li>
</ol>
<p>With these precautions in place (which were all part of my discussions with Kaylene before hand) I feel very safe with a gun in the house with children.  Kaylene is still a bit wary, but that is a good thing and keeps me in check.</p>
<p>Randy also gave me a link to a cheesy little video that he has shown to his kids about <a href="http://www.youtube.com/watch?v=wIEBrb_wRYc">gun safety</a>.  I have watched this many times with Dallin and will review the principles from it with him from time to time.</p>
<h2>Carrying Outside the Home</h2>
<p>As of this writing, I don&#8217;t carry outside of the home every time I leave. Nor do I carry most the time when I am at home.  I will carry when I am going to the store, out to run errands, or going on a family drive.  Unfortunately my place of employment does not allow carrying on the premises, nor leaving the gun in a vehicle (I have another safe for in the car). So this makes it difficult to carry on a daily basis. But when I am not going to work, or to church (they don&#8217;t allow it either) I try to carry as often as I can remember to.</p>
<p>For carrying at home I have the dilemma of how to interact with my rambunctious 4 year old.  It&#8217;s hard to spontaneously wrestle with him or have him grab me with a painful hunk of metal on my hip, which happens to be his head height.  I have to constantly be aware of what side to keep him on in the wrestling so he doesn&#8217;t get hurt by it, and I don&#8217;t like having to do that.  So for now, playing with the kid trumps the extra safety at home.  Yeah that doesn&#8217;t match with my logic for having the gun in the first place, but that&#8217;s just how it goes.</p>
<p><img class="alignleft size-full wp-image-79" title="fire-extinguishers-2-02" src="http://www.aaronbarker.net/wp-content/uploads/2009/10/fire-extinguishers-2-02.jpg" alt="fire-extinguishers-2-02" width="200" height="200" />But Aaron, we live in Happy Valley&#8230; nothing is going to happen where you will need a gun.  Tell that to the people who were at <a href="http://en.wikipedia.org/wiki/Trolley_Square_shooting">Trolley square</a> or this story of a guy simply <a href="http://www.utahconcealedcarry.com/viewtopic.php?f=5&amp;t=6410">driving down a dirt road</a>. I honestly hope that I never have to use my gun in self defense.  But I also wear a seatbelt hoping to never get in an accident. I don&#8217;t wear it because it&#8217;s the law, I wear it because in the rare chance I get in an accident, I want to come home to my family. I don&#8217;t have a fire extinguisher in the closet hoping to put out a fire (ok, secretly that would be awesome&#8230; just not INSIDE my house please), but just in case there is one.  There are many precautions we take every day on the off chance of bad things happening.  For me, this is just another one of those precautions.  Something that will allow me to get home to my family in the rare chance that it is needed.  Or if inside my home, keep the bad thing away from them so they are safe.</p>
<h2>Guns Aren&#8217;t for Everyone</h2>
<p>I respect the fact that not everyone wants guns in their home.  In addition to the places I listed above, I have a friend or two that I have brought it up with and they said their wife isn&#8217;t comfortable with guns in their home. I either don&#8217;t wear my gun when going there, or I leave it in the gun safe in my car when I get there.  If I haven&#8217;t brought it up with someone yet, I err to the side of caution and leave the gun in the car.  This can be a very touchy subject (although I personally don&#8217;t think it needs to be), and so I feel it&#8217;s best to avoid the issue of them finding out I brought a gun into their home without their knowledge.</p>
<p>Hopefully this article gives me a chance to open a dialogue with more friends and family about why I choose to carry and what it&#8217;s all about.</p>
<p>I try to go out to practice every now and then and would love the opportunity to take any of my friends or family who are interested in learning more about guns or just want to try to shoot one to see what it&#8217;s like. I try to be very safety conscious and will make it a good experience.  I take gun ownership very seriously and would expect anyone who wants to handle one to do so as well.</p>
<h2>Conclusion</h2>
<p>So that&#8217;s it. That&#8217;s my announcement to the world that I have a gun, I occasionally carry it around, and why I have it in the first place.  Hopefully it has been enlightening to some.  If you made it this far, congrats.</p>
<p>I now have the ability to defend my family.  If I hear the window break, I can reach down to the side of my bed and have a significant weapon in my hand within a few seconds.  When I need to go into the hallway to get to my kids rooms the odds are that I will be more prepared then the threat that could be coming up the stairs.  I will feel more comfortable taking that step out into the hallway knowing that just the sight of a gun will deter a threat, let alone the force of actually using the gun.  Again, I hope to never have to use it for defense, just like I hope to never really NEED my seat belt.  But it is a comfort to me to know that it is there if the need arises.</p>
<img src="http://feeds.feedburner.com/~r/AaronBarker/~4/YhvOi4FuPdQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.aaronbarker.net/2009/10/defending-the-family/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		<feedburner:origLink>http://www.aaronbarker.net/2009/10/defending-the-family/</feedburner:origLink></item>
		<item>
		<title>Three Presentations</title>
		<link>http://feedproxy.google.com/~r/AaronBarker/~3/yzJTirnoriM/</link>
		<comments>http://www.aaronbarker.net/2009/08/three-presentations/#comments</comments>
		<pubDate>Mon, 31 Aug 2009 14:08:20 +0000</pubDate>
		<dc:creator>Aaron</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.aaronbarker.net/?p=65</guid>
		<description><![CDATA[I have spent the last month working on three presentations to give at an internal conference at work.  Two on jQuery (intermediate and advanced) and one on Designing Faster Websites. I have a new respect for those who give presentations.  It takes many many, many hours to come up with 45 minutes worth of thoughtful [...]]]></description>
			<content:encoded><![CDATA[<p>I have spent the last month working on three presentations to give at an internal conference at work.  Two on jQuery (intermediate and advanced) and one on Designing Faster Websites.</p>
<p>I have a new respect for those who give presentations.  It takes many many, many hours to come up with 45 minutes worth of thoughtful information.  Making sure you have the right content, making sure it is accurate and timely, putting it in an order that makes sense, making sure it is in a pleasant format that the audience will be able to consume easily, creating examples, tossing in humor or other elements to break up the constant stream of information you are trying to provide, etc, etc.  All that and I haven&#8217;t even had to go through the discomfort of actually presenting them yet.</p>
<p>Unfortunately due to this being an internal conference I won&#8217;t be able to put the slides up here when I&#8217;m done. It&#8217;s not like these subjects haven&#8217;t been done to death or anything, I&#8217;m just putting a spin on them that is more specific to those that I work with and the work that we do.</p>
<p>Yes, this was a lame little post to at least have SOMETHING on the blog this month.</p>
<img src="http://feeds.feedburner.com/~r/AaronBarker/~4/yzJTirnoriM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.aaronbarker.net/2009/08/three-presentations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.aaronbarker.net/2009/08/three-presentations/</feedburner:origLink></item>
		<item>
		<title>Local Hero: Tim “the balloon man” Taylor</title>
		<link>http://feedproxy.google.com/~r/AaronBarker/~3/FTDLRfhc9KI/</link>
		<comments>http://www.aaronbarker.net/2009/07/local-hero-tim-the-balloon-man-taylor/#comments</comments>
		<pubDate>Sat, 04 Jul 2009 04:26:19 +0000</pubDate>
		<dc:creator>Aaron</dc:creator>
				<category><![CDATA[People]]></category>

		<guid isPermaLink="false">http://www.aaronbarker.net/?p=40</guid>
		<description><![CDATA[One of our family traditions has always been to go to the Freedom Festival balloon launch.  We go all 3 days, getting up at 5:30am to be there by 6am to watch them inflate and launch. Yeah I know, nuts.  But give it a try once&#8230; you&#8217;ll be hooked . Over the years I have [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/zelph/2639127807/in/set-72157605981264165/"><img class="alignnone" title="Tim flying away in his balloon" src="http://farm4.static.flickr.com/3018/2639127807_6f0cb271df.jpg?v=0" alt="" width="500" height="333" /></a></p>
<p>One of our family traditions has always been to go to the Freedom Festival balloon launch.  We go all 3 days, getting up at 5:30am to be there by 6am to watch them inflate and launch. Yeah I know, nuts.  But give it a try once&#8230; you&#8217;ll be hooked <img src='http://www.aaronbarker.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p><img class="alignleft" title="Tim Taylor" src="http://farm4.static.flickr.com/3265/2639931364_ab45399cd2_m.jpg" alt="" />Over the years I have been in love with one specific balloon (above).  What I always called &#8220;the flag balloon&#8221; but then found out it is actually the Dee III.  There are two reasons I love this balloon.  One, it&#8217;s just gorgeous.  Two, the pilot (is that what balloonists are called?) Tim Taylor.</p>
<p>Now Tim may be a gorgeous man in his own right (I have no opinion on that), but that isn&#8217;t the reason I like the man.  For all these years that I have chased his balloon around to get pics I have always been amazed at how he treats the public.</p>
<p><a href="http://www.flickr.com/photos/zelph/2637497676/in/set-72157605956426916"><img class="alignright" title="In the Envelope" src="http://farm4.static.flickr.com/3084/2637497676_05efd956d5_m.jpg" alt="" width="240" height="160" /></a>When he is preparing his balloon for launch, he always grabs a group of kids and walks them under the balloon. They are probably thinking how cool it is that they get to walk under a balloon, but then the unthinkable happens.  He stops in the middle and opens one of the air vents and all the kids are now standing in the middle of a 105,000 cubic foot balloon envelope.  Looking around with jaws open, and parents frantically taking pictures from the bottom opening.  Pure awesomeness.</p>
<p>When most balloons land, the crew keeps people as far away as possible.  When Tim lands, he gets them as close as possible.  He invites everyone in to help him put his balloon away.</p>
<p><a href="http://www.aaronbarker.net/wp-content/uploads/2009/07/IMG_2559.jpg"><img class="size-medium wp-image-51 alignleft" title="Line of kids helping with the balloon" src="http://www.aaronbarker.net/wp-content/uploads/2009/07/IMG_2559-300x200.jpg" alt="Line of kids helping with the balloon" width="300" height="200" /></a>Now this isn&#8217;t just the responsible adults that he invites, but every kid in the area&#8230; such as my rambunctious 3 year old Dallin.  He trusts his balloon (worth 10&#8242;s of thousands) to the hands of kids&#8230; and loves doing it.</p>
<p>Through a series of events last year I got to know Tim and his wonderful wife Daren.  He told me how he loves to see the faces of the kids when they get asked to come closer, instead of being pushed away.  Then to find out that they not only get to look, but to touch.  He knows that he is creating memories that will last lifetimes for these kids (and their parents).</p>
<p><a href="http://www.aaronbarker.net/wp-content/uploads/2009/07/IMG_2576.jpg"><img class="size-medium wp-image-47 alignright" title="Tim talking to Dallin" src="http://www.aaronbarker.net/wp-content/uploads/2009/07/IMG_2576-300x200.jpg" alt="Tim talking to Dallin" width="300" height="200" /></a>I speak from experience where as a result of our chats, he has taken Dallin under his wing whenever he sees him.  Dallin thinks he is the coolest guy in the word (well 2nd after me of course <img src='http://www.aaronbarker.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> ).  Tim always takes the time to say hi to him and listen to whatever cute ramblings he is spouting at that moment.  Not the normal adult &#8220;yeah get it over with&#8221; but with genuine interest.</p>
<p>This year when I went out to chase Tim&#8217;s balloon, I decided to skip the artsy balloon pictures I normally take of the Dee III (I only have like 900 of them so far) and to focus on the kids that would inevitably show.  It was very cool to see things through his eyes, even more so then I recognized in the past.</p>
<p><a href="http://www.aaronbarker.net/wp-content/uploads/2009/07/IMG_2563.jpg"><img class="size-medium wp-image-49 alignleft" title="Tim talking to the kids that came to help" src="http://www.aaronbarker.net/wp-content/uploads/2009/07/IMG_2563-300x200.jpg" alt="Tim talking to the kids that came to help" width="300" height="200" /></a>Tim actively seeks out places to land where he will be able to get the most kids involved.  Sure the wind and balloon gods have something to do with where he lands, but when they aren&#8217;t in control the kids are.  Several times I have seen him land in the street in neighborhoods and watched as dozens of kids come out of their houses in their pajamas, awoken by frantic parents alerting them of the hot air balloon that just landed outside.</p>
<p>These kids come out groggy and sleepy eyed, and slowly you watch the transformation as they are invited in.  They are in awe, they are excited, and when Tim is done with them they leave with an experience they will be telling their friends about for weeks, and a new love for hot air balloons.</p>
<p>Tim may think that my family is stalking him, and to some extent we are.  But we just love to see the man in action, and to watch a neighborhood light up by his presence.  We feel honored to call him a friend, and are glad that he is someone that we can be happy that our son looks up to.</p>
<p><a href="http://www.aaronbarker.net/wp-content/uploads/2009/07/IMG_2537.jpg"><img class="alignleft size-medium wp-image-55" title="Tim stepping aside to even make a teenagers day" src="http://www.aaronbarker.net/wp-content/uploads/2009/07/IMG_2537-300x200.jpg" alt="Tim stepping aside to even make a teenagers day" width="300" height="200" /></a><a href="http://www.aaronbarker.net/wp-content/uploads/2009/07/IMG_2543.jpg"><img class="alignleft size-medium wp-image-54" title="Line of kids helping with the balloon" src="http://www.aaronbarker.net/wp-content/uploads/2009/07/IMG_2543-300x200.jpg" alt="Line of kids helping with the balloon" width="300" height="200" /></a><a href="http://www.aaronbarker.net/wp-content/uploads/2009/07/IMG_2569.jpg"><img class="alignleft size-medium wp-image-48" title="Tim talking to the kids in his superman pose" src="http://www.aaronbarker.net/wp-content/uploads/2009/07/IMG_2569-300x200.jpg" alt="Tim talking to the kids in his superman pose" width="300" height="200" /></a><a href="http://www.aaronbarker.net/wp-content/uploads/2009/07/IMG_2551-Edit.jpg"><img class="alignnone size-medium wp-image-60" title="Panorama of kids helping out" src="http://www.aaronbarker.net/wp-content/uploads/2009/07/IMG_2551-Edit-300x51.jpg" alt="Panorama of kids helping out" width="300" height="51" /></a></p>
<img src="http://feeds.feedburner.com/~r/AaronBarker/~4/FTDLRfhc9KI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.aaronbarker.net/2009/07/local-hero-tim-the-balloon-man-taylor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.aaronbarker.net/2009/07/local-hero-tim-the-balloon-man-taylor/</feedburner:origLink></item>
		<item>
		<title>Searching for an HD Video camera… an excercise in pain</title>
		<link>http://feedproxy.google.com/~r/AaronBarker/~3/Z4raDAMDFjs/</link>
		<comments>http://www.aaronbarker.net/2009/06/searching-for-an-hd-video-camera-an-excercise-in-pain/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 03:48:38 +0000</pubDate>
		<dc:creator>Aaron</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[hd]]></category>
		<category><![CDATA[hi-def]]></category>
		<category><![CDATA[pain]]></category>
		<category><![CDATA[suffering]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.aaronbarker.net/?p=27</guid>
		<description><![CDATA[With some upcoming trips I thougt it was time for us to move to the world of HD video recording.  I bumped into a sweet deal at Costco on one and so picked it up (can&#8217;t remember the model&#8230; a Canon something or other). Got it home and loved the quality of the video when [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-medium wp-image-33" title="ce24057-l" src="http://www.aaronbarker.net/wp-content/uploads/2009/06/ce24057-l-300x235.jpg" alt="ce24057-l" width="300" height="235" />With some upcoming trips I thougt it was time for us to move to the world of HD video recording.  I bumped into a sweet deal at Costco on one and so picked it up (can&#8217;t remember the model&#8230; a Canon something or other).</p>
<p>Got it home and loved the quality of the video when plugging into the HDMI port and watching on my HDTV.</p>
<p>That&#8217;s where the fun ended.</p>
<p>When you save off the video from the camera it saved with a mt2s extension which is in a <a href="http://en.wikipedia.org/wiki/AVCHD">AVCHD</a> format (yes those lovely acronymns of confusion).  There is most likely nothing on your computer that can read this format.  There are very few programs period that can read this format.  Most of the programs that CAN read this format, cost you some coin&#8230; sometimes some serious coin.</p>
<p>Our current video situation is using the video mode on our Canon S2-IS, that is 640&#215;480 @ 30 fps.  The main issues I have with this is it&#8217;s not wide format, and can only go for 1GB at a time, or about 7 minutes. BUT&#8230; I can pull the video off of the camera and instantly watch it as they are simple .avi files which most computers have several programs that can read (my personal fav is <a href="http://www.videolan.org/vlc/">VLC</a>).</p>
<p>The fact that I had to download the video, and then run it through some converter (that I apparently need to pay for) before being able to watch it really bugged me.  I tried several freebies and all of them produced choppy results.  Even the esteemed iMovie on my work MacBook Pro came out choppy.</p>
<p>Not to mention the conversion process for a 2 minute video was like 30 minutes.</p>
<p><img class="alignright size-medium wp-image-31" title="flip-ultra-hd-02a" src="http://www.aaronbarker.net/wp-content/uploads/2009/06/flip-ultra-hd-02a-242x300.jpg" alt="flip-ultra-hd-02a" width="194" height="240" />This was plain unacceptable to me so I returned it to Costco (love their return policy).  A few weeks later we picked up a <a href="http://www.theflip.com/products_flip_ultra.shtml">Flip Ultra HD</a>.  This little unit has the advantage of being small, shoots 720p (for better then 480 quality, but not the ginormous size of 1080), shoots up to 2 hours of video (all at once if desired) and saves as .mov files for instant viewing.</p>
<p>The disadantages are it has no zoom (well 2x digital zoom, but yuck!) and no image stabilization. I thought I could live with this, but the image stabalization is REALLY getting to me.  Every one of our videos is incredibly shaky.  It also just seems to randomly skip frames or something, which I need to contact their customer support about, as it&#8217;s really bad.</p>
<p>So again, I am left wanting in the HD video market. Is it really THAT hard to come out with a useable product?  Something that has decent features including the ability to watch the videos I take without paying for additional software and goign through hours of conversion processes?</p>
<p>If anyone knows of something out there that has a decent 10x or so zoom, image stabalization, the ability to record for longer then 20 mins at a stretch (most photo cameras that do video have this type of restriction) and that I can watch as soon as I copy it to my comptuer, let me know.  I&#8217;d love to give some company my money, but no one seems to be ready to take it.</p>
<img src="http://feeds.feedburner.com/~r/AaronBarker/~4/Z4raDAMDFjs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.aaronbarker.net/2009/06/searching-for-an-hd-video-camera-an-excercise-in-pain/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.aaronbarker.net/2009/06/searching-for-an-hd-video-camera-an-excercise-in-pain/</feedburner:origLink></item>
		<item>
		<title>I’ve taken up smoking</title>
		<link>http://feedproxy.google.com/~r/AaronBarker/~3/yAcS9z539Dc/</link>
		<comments>http://www.aaronbarker.net/2009/06/ive-taken-up-smoking/#comments</comments>
		<pubDate>Sat, 06 Jun 2009 00:29:47 +0000</pubDate>
		<dc:creator>Aaron</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[food]]></category>
		<category><![CDATA[smoker]]></category>

		<guid isPermaLink="false">http://www.aaronbarker.net/?p=17</guid>
		<description><![CDATA[No, not that kind of smoking.  Meat smoking. My friend Randy recently found the instructions for a UDS, or Ugly Drum Smoker.  It&#8217;s a meat smoker that it made out of a 55 gallon drum that when working correctly can go for up to 15 hours without intervention.  It is able to stay at the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.aaronbarker.net/wp-content/uploads/2009/06/p-1600-1200-f03b8d18-e07b-42db-81ca-11a2508a8841.jpeg"><img class="alignleft size-medium wp-image-22" title="The Beast Itself" src="http://www.aaronbarker.net/wp-content/uploads/2009/06/p-1600-1200-f03b8d18-e07b-42db-81ca-11a2508a8841-225x300.jpg" alt="p-1600-1200-f03b8d18-e07b-42db-81ca-11a2508a8841.jpeg" width="225" height="300" /></a>No, not that kind of smoking.  Meat smoking.</p>
<p>My friend <a href="http://twitter.com/mojambo">Randy</a> recently found the instructions for a <a href="http://www.cbbqa.org/wiki/index.php?title=Ugly_Drum_Smoker">UDS, or Ugly Drum Smoker</a>.  It&#8217;s a meat smoker that it made out of a 55 gallon drum that when working correctly can go for up to 15 hours without intervention.  It is able to stay at the requisite temperatures for longer then smokers you purchase at the local Home Depot or wherever, hold more meat, and are cheaper to make then buy.  All great qualities <img src='http://www.aaronbarker.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Thus far I have had issues with mine keeping a consistent temperature, but I am pretty sure that is due to a faulty lid, which I have now got a replacement for.</p>
<p>So far I have cooked two Pork Butts (shoulder actually) and some chicken.  Not sure what I&#8217;ll try this weekend.  They have all tasted great, even though I have had temperature or timing problems on each one.  They will taste all the better when I get the temperature, timing and process all nailed down.</p>
<p>Quality pictures thanks to my iPhone.  Yeah not my <a title="Aaron Barker Photography" href="http://blog.aaronbarkerphotography.com/">normal quality</a>, but it was the camera that was handy.</p>
<p><a href="http://www.aaronbarker.net/wp-content/uploads/2009/06/l-1600-1200-4ef491c2-70c3-4fa4-886a-e1cdcedf68a3.jpeg"><img class="alignnone size-medium wp-image-21" title="Pulled Pork" src="http://www.aaronbarker.net/wp-content/uploads/2009/06/l-1600-1200-4ef491c2-70c3-4fa4-886a-e1cdcedf68a3-300x225.jpg" alt="l-1600-1200-4ef491c2-70c3-4fa4-886a-e1cdcedf68a3.jpeg" width="300" height="225" /></a></p>
<img src="http://feeds.feedburner.com/~r/AaronBarker/~4/yAcS9z539Dc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.aaronbarker.net/2009/06/ive-taken-up-smoking/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.aaronbarker.net/2009/06/ive-taken-up-smoking/</feedburner:origLink></item>
		<item>
		<title>New Carpet, and how to prepare for it</title>
		<link>http://feedproxy.google.com/~r/AaronBarker/~3/rFGvyiDLHZ8/</link>
		<comments>http://www.aaronbarker.net/2009/05/new-carpet-and-how-to-prepare-for-it/#comments</comments>
		<pubDate>Sat, 30 May 2009 21:01:20 +0000</pubDate>
		<dc:creator>Aaron</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[carpet]]></category>
		<category><![CDATA[home repair]]></category>
		<category><![CDATA[house]]></category>
		<category><![CDATA[sad]]></category>

		<guid isPermaLink="false">http://www.aaronbarker.net/?p=10</guid>
		<description><![CDATA[So as part of our preparing to move we wanted to get new carpet.  The stuff the came with the house was nasty and dirty, and Dallin had grabbed a hold of a few strings of it and pulled, leaving nice long lines of no carpet. After a bit of a search we went with [...]]]></description>
			<content:encoded><![CDATA[<p>So as part of our preparing to move we wanted to get new carpet.  The stuff the came with the house was nasty and dirty, and Dallin had grabbed a hold of a few strings of it and pulled, leaving nice long lines of no carpet.</p>
<p>After a bit of a search we went with Home Depot who had a good deal on Stainmaster carpet, plus $150 or so installation for the whole house.  Long story short&#8230; it took them 3 weeks to get it installed.  This was the final thing we had to get done before putting the house on the market, and so it delayed our plans by 3 weeks.  But we had a LOT of junk to declutter from our house, so it was probably a good thing in the end.</p>
<p>So the night before they come to install we start ripping out the carpet.  I Google on how to remove carpet staples and get lots of talk about needle-nose pliers being the best.  So that&#8217;s what Kaylene and I do&#8230; for 6 hours.  12 man/woman hours of staple pulling.  Blisters, sore knees, all the fun that comes with it.</p>
<p>We leave one patch of carpet under the TV stand so Dallin could watch TV while we waited for them to come (sometimes between 12:01 AM and midnight).  When they get here we move the stand, pull up the carpet and I kneel down with my pliers to start pulling the 5 or so staples out.</p>
<p>Then the carpet installer guy says &#8220;I can get those&#8221;, and busts out a <a href="http://www.homedepot.com/webapp/wcs/stores/servlet/ProductDisplay?storeId=10051&amp;langId=-1&amp;catalogId=10053&amp;productId=100188949">scraper</a> and takes care of all 5 staples in about 2 seconds.  He then goes around the whole room in about 2 minutes.  The room we had spend 2 man/woman hours the night before meticulously pulling out staples.  I was dumbfounded.</p>
<p>I don&#8217;t know why Google failed me, but here it is for Google to index.</p>
<p>When removing flooring staples DO NOT USE pliers.  Go get you a floor scraper and be done in a fraction of the time, and with less body aches and blisters.  Let me say this again in a few different ways to make sure Google gets it.</p>
<p>To remove floor staples don&#8217;t use needle nose pliers.  Go rent a scraper from Home Depot.</p>
<p>Get a scraper to remove carpet pad staples.</p>
<p>When removing staples from carpet or padding, use a scraper to save yourself some pain and heartache.</p>
<p>Hopefully someone will find this post and save themselves some effort.</p>
<img src="http://feeds.feedburner.com/~r/AaronBarker/~4/rFGvyiDLHZ8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.aaronbarker.net/2009/05/new-carpet-and-how-to-prepare-for-it/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.aaronbarker.net/2009/05/new-carpet-and-how-to-prepare-for-it/</feedburner:origLink></item>
	</channel>
</rss>
