<?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>benwann.com</title>
	<atom:link href="http://benwann.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://benwann.com</link>
	<description>All that and a bag of chips</description>
	<lastBuildDate>Thu, 10 May 2012 04:31:57 +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>Running BIND locally on OSX</title>
		<link>http://benwann.com/2012/05/09/running-bind-locally-on-osx/</link>
		<comments>http://benwann.com/2012/05/09/running-bind-locally-on-osx/#comments</comments>
		<pubDate>Thu, 10 May 2012 04:31:57 +0000</pubDate>
		<dc:creator>Ben Wann</dc:creator>
				<category><![CDATA[Craziness]]></category>

		<guid isPermaLink="false">http://benwann.com/?p=354</guid>
		<description><![CDATA[Reached the point this evening where I got sick of editing /etc/hosts when doing local development on my MacBookPro. I have learned enough lately configuring and installing BIND9, that I mustered up the courage to get it running on 127.0.0.1 (theres no place like home). Using this new fangled Google machine, I drummed up this [...]]]></description>
			<content:encoded><![CDATA[<p>Reached the point this evening where I got sick of editing /etc/hosts when doing local development on my MacBookPro.</p>
<p>I have learned enough lately configuring and installing BIND9, that I mustered up the courage to get it running on 127.0.0.1 (theres no place like home).</p>
<p>Using this new fangled Google machine, I drummed up this tasty <a href="http://intridea.com/posts/using-bind-locally-on-os-x-for-easy-access-to-subdomains">post</a>.  OSX comes packaged with BIND (named is the daemon name), but it is disabled.  This post gets you setup and running.</p>
<p>The important thing I have to add to this topic, is that I could not for the life of me figure out what I added my local zone file called mysite.local (versus mysite.com for a production BIND DNS server) it would not respond to queries.  Back to the google.</p>
<p>I search for the phrase "osx bind cant ping local domain", and wouldn't you know it, the Google machine came through again.  I found this <a href="http://forums.bit-tech.net/showpost.php?p=1599299&amp;postcount=4">post</a> dating back from 2002 that solved the problem.  Seeing the date of 2002, I was skeptical since BIND has had some many advances since then, and of course OSX is a totally different beast, but I was desperate.  Low and behold they were correct though.  It appears that Bonjour will snag queries for domains with TLD of ".local", thereby cutting BIND completely out of the deal.</p>
<p>I am sure that there is some configuration that could get one past this, but I am fine just moving my local development domains to .net and calling it a job well done.</p>
<p>Thanks Google machine, what in the world would I do without you! (No seriously, I realized the other day, that I would be 1/100th the programmer I am today, not to mention the productivity and speed, without modern search engines like Google).</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fbenwann.com%2F2012%2F05%2F09%2Frunning-bind-locally-on-osx%2F&amp;title=Running%20BIND%20locally%20on%20OSX" id="wpa2a_2"><img src="http://benwann.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://benwann.com/2012/05/09/running-bind-locally-on-osx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mercurial Add All Unversioned File</title>
		<link>http://benwann.com/2012/05/09/mercurial-add-all-unversioned-file/</link>
		<comments>http://benwann.com/2012/05/09/mercurial-add-all-unversioned-file/#comments</comments>
		<pubDate>Thu, 10 May 2012 04:21:23 +0000</pubDate>
		<dc:creator>Ben Wann</dc:creator>
				<category><![CDATA[Craziness]]></category>

		<guid isPermaLink="false">http://benwann.com/?p=351</guid>
		<description><![CDATA[Needed to add a bunch of files to my (mercurial) hg repo and realized that a command I use all the time in subversion (svn) repos. hg st &#124; grep ? &#124; sed 's/? *//' &#124; xargs hg add Break it down for ya.  Remember the "&#124;" unix character takes the results of stdout and [...]]]></description>
			<content:encoded><![CDATA[<p>Needed to add a bunch of files to my (mercurial) hg repo and realized that a command I use all the time in subversion (svn) repos.</p>
<blockquote><p>hg st | grep ? | sed 's/? *//' | xargs hg add</p></blockquote>
<p>Break it down for ya.  Remember the "|" unix character takes the results of stdout and pipes that as the inputs to the next chain in the command.  For the purposes of explanation, assume I were to create a file called testfile.js in the "js" directory in my repo directory.</p>
<p>1. hg st - this displays the files in an hg repo that are currently not versioned in the repo.  Results are sent to stdout.</p>
<p>Results:</p>
<p>? js/testfile.js</p>
<p>2. grep ? - This looks at each line and returns it valid if there is a ? in the string.</p>
<p>Results:</p>
<p>? js/testfile.js</p>
<p>3. sed 's/? *//' - sed is an awesome text tool for performing operations on text,  in this case a executing a regex on each line that removes that ? from the text.  This is important because the next command does not recognize "?" as in the filename.</p>
<p>Results:</p>
<p>js/testfile.js</p>
<p>4. xargs hg add - Finally, we execute the command on the sanitized string.</p>
<p>A js/testfile.js</p>
<p>Enjoy!</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fbenwann.com%2F2012%2F05%2F09%2Fmercurial-add-all-unversioned-file%2F&amp;title=Mercurial%20Add%20All%20Unversioned%20File" id="wpa2a_4"><img src="http://benwann.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://benwann.com/2012/05/09/mercurial-add-all-unversioned-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Graeters Ice Cream</title>
		<link>http://benwann.com/2011/07/27/349/</link>
		<comments>http://benwann.com/2011/07/27/349/#comments</comments>
		<pubDate>Thu, 28 Jul 2011 01:15:37 +0000</pubDate>
		<dc:creator>Ben Wann</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[vacation]]></category>
		<category><![CDATA[Yum]]></category>

		<guid isPermaLink="false">http://benwann.com/2011/07/27/349/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://benwann.com/wp-content/uploads/2011/07/20110727-091525.jpg"><img src="http://benwann.com/wp-content/uploads/2011/07/20110727-091525.jpg" alt="20110727-091525.jpg" class="alignnone size-full" /></a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fbenwann.com%2F2011%2F07%2F27%2F349%2F&amp;title=Graeters%20Ice%20Cream" id="wpa2a_6"><img src="http://benwann.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://benwann.com/2011/07/27/349/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dad in Training</title>
		<link>http://benwann.com/2011/07/13/dad-in-training/</link>
		<comments>http://benwann.com/2011/07/13/dad-in-training/#comments</comments>
		<pubDate>Wed, 13 Jul 2011 14:32:23 +0000</pubDate>
		<dc:creator>Ben Wann</dc:creator>
				<category><![CDATA[Craziness]]></category>

		<guid isPermaLink="false">http://benwann.com/?p=345</guid>
		<description><![CDATA[As a dad in training, I came across this article today that I was thrilled to read. http://gamesbyemail.com/WoodTape/Default.htm I hope to follow my kids and learn from them as much as they learn from me. &#160;]]></description>
			<content:encoded><![CDATA[<p>As a dad in training, I came across this article today that I was thrilled to read.</p>
<p><a href="http://gamesbyemail.com/WoodTape/Default.htm">http://gamesbyemail.com/WoodTape/Default.htm</a></p>
<p>I hope to follow my kids and learn from them as much as they learn from me.</p>
<p>&nbsp;</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fbenwann.com%2F2011%2F07%2F13%2Fdad-in-training%2F&amp;title=Dad%20in%20Training" id="wpa2a_8"><img src="http://benwann.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://benwann.com/2011/07/13/dad-in-training/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting started with Cloud Foundry using a Node.js and MongoDB application &#124; MIH SWAT</title>
		<link>http://benwann.com/2011/05/05/getting-started-with-cloud-foundry-using-a-node-js-and-mongodb-application-mih-swat/</link>
		<comments>http://benwann.com/2011/05/05/getting-started-with-cloud-foundry-using-a-node-js-and-mongodb-application-mih-swat/#comments</comments>
		<pubDate>Thu, 05 May 2011 15:44:57 +0000</pubDate>
		<dc:creator>Ben Wann</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://benwann.com/?p=343</guid>
		<description><![CDATA[Getting started with Cloud Foundry using a Node.js and MongoDB application &#124; MIH SWAT. This looks pretty cool.  Going to look into this for the work I am doing with node.js]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.mihswat.com/2011/05/04/getting-started-with-cloud-foundry-using-a-node-js-and-mongodb-application/">Getting started with Cloud Foundry using a Node.js and MongoDB application | MIH SWAT</a>.</p>
<p>This looks pretty cool.  Going to look into this for the work I am doing with node.js</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fbenwann.com%2F2011%2F05%2F05%2Fgetting-started-with-cloud-foundry-using-a-node-js-and-mongodb-application-mih-swat%2F&amp;title=Getting%20started%20with%20Cloud%20Foundry%20using%20a%20Node.js%20and%20MongoDB%20application%20%7C%20MIH%20SWAT" id="wpa2a_10"><img src="http://benwann.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://benwann.com/2011/05/05/getting-started-with-cloud-foundry-using-a-node-js-and-mongodb-application-mih-swat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clever</title>
		<link>http://benwann.com/2011/05/02/clever/</link>
		<comments>http://benwann.com/2011/05/02/clever/#comments</comments>
		<pubDate>Mon, 02 May 2011 14:44:02 +0000</pubDate>
		<dc:creator>Ben Wann</dc:creator>
				<category><![CDATA[Craziness]]></category>

		<guid isPermaLink="false">http://benwann.com/?p=339</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://benwann.com/wp-content/uploads/2011/05/osama.jpg"><img class="alignnone size-medium wp-image-340" title="osama" src="http://benwann.com/wp-content/uploads/2011/05/osama-300x190.jpg" alt="" width="300" height="190" /></a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fbenwann.com%2F2011%2F05%2F02%2Fclever%2F&amp;title=Clever" id="wpa2a_12"><img src="http://benwann.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://benwann.com/2011/05/02/clever/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amplify &#8211; A jQuery Component Library</title>
		<link>http://benwann.com/2011/04/09/amplify-a-jquery-component-library/</link>
		<comments>http://benwann.com/2011/04/09/amplify-a-jquery-component-library/#comments</comments>
		<pubDate>Sat, 09 Apr 2011 18:50:16 +0000</pubDate>
		<dc:creator>Ben Wann</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[component]]></category>
		<category><![CDATA[framework]]></category>

		<guid isPermaLink="false">http://benwann.com/?p=332</guid>
		<description><![CDATA[From the guys at .appendTo() have just released the alpha version of Amplify, a jQuery Component Library.  This is a very awesome tool, and I have enjoyed digging in and using it. More on this channel in the near future. http://amplifyjs.com/]]></description>
			<content:encoded><![CDATA[<p>From the guys at .appendTo() have just released the alpha version of Amplify, a jQuery Component Library.  This is a very awesome tool, and I have enjoyed digging in and using it.</p>
<p>More on this channel in the near future.</p>
<p><a href="http://amplifyjs.com/" target="_blank">http://amplifyjs.com/</a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fbenwann.com%2F2011%2F04%2F09%2Famplify-a-jquery-component-library%2F&amp;title=Amplify%20%E2%80%93%20A%20jQuery%20Component%20Library" id="wpa2a_14"><img src="http://benwann.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://benwann.com/2011/04/09/amplify-a-jquery-component-library/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Campfire with family</title>
		<link>http://benwann.com/2011/03/23/campfire-with-family/</link>
		<comments>http://benwann.com/2011/03/23/campfire-with-family/#comments</comments>
		<pubDate>Thu, 24 Mar 2011 02:48:32 +0000</pubDate>
		<dc:creator>Ben Wann</dc:creator>
				<category><![CDATA[Craziness]]></category>
		<category><![CDATA[Camping family]]></category>

		<guid isPermaLink="false">http://benwann.com/2011/03/23/campfire-with-family/</guid>
		<description><![CDATA[Had a great night around the campfire with dad and Rachel's family. Campers stew in my belly.]]></description>
			<content:encoded><![CDATA[<p>Had a great night around the campfire with dad and Rachel's family.  Campers stew in my belly.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fbenwann.com%2F2011%2F03%2F23%2Fcampfire-with-family%2F&amp;title=Campfire%20with%20family" id="wpa2a_16"><img src="http://benwann.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://benwann.com/2011/03/23/campfire-with-family/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Peter Gabriel and The Police = Tonight&#8217;s Programming Fuel</title>
		<link>http://benwann.com/2011/03/22/peter-gabriel-and-the-police-tonights-programming-fuel/</link>
		<comments>http://benwann.com/2011/03/22/peter-gabriel-and-the-police-tonights-programming-fuel/#comments</comments>
		<pubDate>Wed, 23 Mar 2011 02:32:55 +0000</pubDate>
		<dc:creator>Ben Wann</dc:creator>
				<category><![CDATA[Craziness]]></category>
		<category><![CDATA[Fuel]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://benwann.com/?p=325</guid>
		<description><![CDATA[As my sister is across the Pond this week to general live it up AS WELL AS SEE.... PETER....FREAKING....GABRIEL I figured I would dedicate this evening's programming listening pleasure to Peter Gabriel. Also, could not leave out another wonder of the late 70's early 80's .. The Police. PROGRAMMING FUEL!]]></description>
			<content:encoded><![CDATA[<p>As my sister is across the Pond this week to general live it up AS WELL AS SEE.... PETER....FREAKING....GABRIEL</p>
<p>I figured I would dedicate this evening's programming listening pleasure to Peter Gabriel.</p>
<p>Also, could not leave out another wonder of the late 70's early 80's .. The Police.</p>
<p>PROGRAMMING FUEL!</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fbenwann.com%2F2011%2F03%2F22%2Fpeter-gabriel-and-the-police-tonights-programming-fuel%2F&amp;title=Peter%20Gabriel%20and%20The%20Police%20%3D%20Tonight%E2%80%99s%20Programming%20Fuel" id="wpa2a_18"><img src="http://benwann.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://benwann.com/2011/03/22/peter-gabriel-and-the-police-tonights-programming-fuel/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Facebook Integrated to WordPress</title>
		<link>http://benwann.com/2011/03/21/facebook-integrated-to-wordpress/</link>
		<comments>http://benwann.com/2011/03/21/facebook-integrated-to-wordpress/#comments</comments>
		<pubDate>Mon, 21 Mar 2011 20:43:02 +0000</pubDate>
		<dc:creator>Ben Wann</dc:creator>
				<category><![CDATA[Craziness]]></category>

		<guid isPermaLink="false">http://benwann.com/?p=320</guid>
		<description><![CDATA[Aw yeah.]]></description>
			<content:encoded><![CDATA[<p>Aw yeah.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fbenwann.com%2F2011%2F03%2F21%2Ffacebook-integrated-to-wordpress%2F&amp;title=Facebook%20Integrated%20to%20WordPress" id="wpa2a_20"><img src="http://benwann.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://benwann.com/2011/03/21/facebook-integrated-to-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

