<?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>a resource for web developers, programmers and fermentors - thehokie.com</title>
	<atom:link href="http://www.thehokie.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thehokie.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Thu, 05 Aug 2010 00:44:56 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Saying Goodbye to an Old Friend</title>
		<link>http://www.thehokie.com/saying-goodbye-to-an-old-friend/</link>
		<comments>http://www.thehokie.com/saying-goodbye-to-an-old-friend/#comments</comments>
		<pubDate>Tue, 03 Aug 2010 01:45:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Other Things]]></category>

		<guid isPermaLink="false">http://www.thehokie.com/?p=74</guid>
		<description><![CDATA[[editor's note: this has nothing to do with web development, programming or fermentation. but, it is my blog, so... yeah.]
Every year since I&#8217;ve been able to, I&#8217;ve grown a beard for the winter. Having grown up in Maine, and having spent a few years in Colorado, it was the natural thing to do. Keep it [...]]]></description>
			<content:encoded><![CDATA[<p><small><i>[editor's note: this has nothing to do with web development, programming or fermentation. but, it is my blog, so... yeah.]</i></small></p>
<p>Every year since I&#8217;ve been able to, I&#8217;ve grown a beard for the winter. Having grown up in Maine, and having spent a few years in Colorado, it was the natural thing to do. Keep it tidy during the warmer months, and when the leaves started to fall, make sure I started on my personal protection from the cold.</p>
<p>This year, however, was a bit different. I had grown a fairly sizable beard this past winter when a request was placed. My good friend Jake&#8217;s lovely fiance (at the time) couldn&#8217;t bear the thought of the whiskers not making an appearance at the wedding.  So, she asked if I&#8217;d keep the beard. Not wanting to raise the ire of a bride to be, I said I would do my best. Keeping the beard wasn&#8217;t much of a stretch, as I really take pride in my facial hair. As the wedding approached, the temperatures began to rise. People began to doubt whether I&#8217;d be able to make it.</p>
<p>Such little faith.</p>
<p>Then came July 31st, the day Jake and Allie were to marry. Before the ceremony, I took a little good-natured ribbing for having such a ZZ Top-esque face at a wedding. It was easy to brush off, &#8220;The bride requested it,&#8221; I said.</p>
<p>That was a couple of days ago.  During these last few days, I&#8217;ve been hemming and hawing about keeping the beard. Should I cut it off? Should I keep it? I couldn&#8217;t make up my mind. But, then it dawned on me, fall was approaching rather quickly. If I didn&#8217;t cut it now, I&#8217;d have to keep it into next winter.</p>
<p>Alas, the bearded jig was up.</p>
<p><span id="more-74"></span></p>
<p><img class="aligncenter size-full wp-image-78" title="The Beard: Before and After" src="http://www.thehokie.com/wp-content/uploads/2010/08/before_after.jpg" alt="" width="500" height="316" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thehokie.com/saying-goodbye-to-an-old-friend/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>JSON Facepalm</title>
		<link>http://www.thehokie.com/json-facepalm/</link>
		<comments>http://www.thehokie.com/json-facepalm/#comments</comments>
		<pubDate>Thu, 24 Jun 2010 01:33:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.thehokie.com/?p=67</guid>
		<description><![CDATA[I&#8217;ve only recently been dabbling in the world of JSON, and I&#8217;m realizing that it is an excellent alternative to XML. Being fairly new to it, however, has found me on a few code-based wild goose chases. For a side project I&#8217;m working on, I decided it would be slick to have the chosen value [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve only recently been dabbling in the world of JSON, and I&#8217;m realizing that it is an excellent alternative to XML. Being fairly new to it, however, has found me on a few code-based wild goose chases. For a side project I&#8217;m working on, I decided it would be slick to have the chosen value from one HTML select element populate. I found a few code samples and hacked them together to work for my form.</p>
<p>Using the jQuery function $.getJSON, I had it running in no time. Now, keep in mind I was testing in Firefox. More often then not, when I put something together in javascript or jQuery it seems to work flawlessly in Firefox. But when I come to check it in Chrome or Safari, something is amuck.</p>
<p>Have spent a good twenty minutes on the Google tubes searching for what could be the matter, I came up empty handed. After some debugging in the ten line jQuery script, I realized that data from my JSON response wasn&#8217;t being passed along. To the JSON I went! And that&#8217;s where I found the issue:</p>
<p><code>[{"key0": "value0",  "key1": "value1"},{"key0": "value2,  "key1": "value3"},]</code></p>
<p>Hanging out at the tail end of the string was the wayward &#8216;,&#8217;! No doubt the result of some careless output from the database. It worked like a charm in Chrome after cleaning it up with a simple line of PHP before adding the final &#8216;]&#8217;:</p>
<p><code>$output = substr($output,'',-1);</code></p>
<p>So, as you can see, it wasn&#8217;t a case of ajax not working in Chrome, but rather a case of invalid JSON working in Firefox. While I appreciate Firefox&#8217;s leniency, this isn&#8217;t the first time it has bit me the ass. But, in the end, a great lesson learned regarding the output of valid JSON.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thehokie.com/json-facepalm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Fermentations Appear</title>
		<link>http://www.thehokie.com/the-fermentations-appear/</link>
		<comments>http://www.thehokie.com/the-fermentations-appear/#comments</comments>
		<pubDate>Fri, 28 May 2010 22:36:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Fermentation]]></category>

		<guid isPermaLink="false">http://www.thehokie.com/?p=56</guid>
		<description><![CDATA[To be honest, it really doesn&#8217;t feel like it&#8217;s been two months since I&#8217;ve posted anything here. I&#8217;ve been keeping myself busy with a few projects. The biggest of the projects is called Buying Club Software. The name is pretty self explainatory and it&#8217;s been an amazing learning process so far. I realize that we [...]]]></description>
			<content:encoded><![CDATA[<p>To be honest, it really doesn&#8217;t feel like it&#8217;s been two months since I&#8217;ve posted anything here. I&#8217;ve been keeping myself busy with a few projects. The biggest of the projects is called <a href="http://www.buyingclubsoftware.com/" target="_blank">Buying Club Software</a>. The name is pretty self explainatory and it&#8217;s been an amazing learning process so far. I realize that we have a long way to go, but I&#8217;m very happy with where the project currently stands.</p>
<p>But, really, I digress. The motivation for today&#8217;s posts comes from the fact that I recently realized I have yet to write anything about fermentation. Here I am touting my site as a resource for fermentors and there&#8217;s not a word regarding the topic.</p>
<p>In the last two years, I&#8217;ve really gotten into fermenting. Depending on what crops are coming from the earth locally, you can find in my apartment an assortment of bubbling crocks, jars, growlers and carboys. I&#8217;ve been experimenting in beer, mead, kimchi, sour pickles, sauerkraut and sour beets. Miraculously, almost every experiment has gone very well. The exceptions range from exploding beer bottles, a bursting mead bottle and, recently, some very, very, very funky sour pickles. If I had to pick my favorite fermentation so far, it would have to be the <a href="http://www.epicurious.com/recipes/food/views/traditional-napa-cabbage-kimchi-233839" target="_blank">Traditional Napa Cabbage Kimchi</a>. And though I strayed pretty far from the recipe, it worked excellently as a reference point. My other go to reference for all things fermentation is Sandor Katz&#8217;s book, <a href="http://www.amazon.com/Wild-Fermentation-Flavor-Nutrition-Live-Culture/dp/1931498237" target="_blank">Wild Fermentation</a>. If you know anything about fermentation, you&#8217;ve heard of this book, but if you&#8217;re looking to get into fermentation for the first time, I would highly recommend his book.</p>
<p>My friend, <a href="http://www.incessantrambling.com/" target="_blank">Jake</a>, and I have been having some very good luck brewing beer in the last few batches. Our most recent, a summer blond, came out better than I could have hoped. And our previously beer, a double chocolate oatmeal stout was a real crowd-pleaser. I&#8217;m looking forward to our next brew, even though I&#8217;m not entirely sure what it will be.</p>
<p><img class="alignright size-medium wp-image-58" title="Fiddleheads" src="http://www.thehokie.com/wp-content/uploads/2010/06/fiddleheads-184x300.jpg" alt="" width="184" height="300" />I&#8217;d like to wrap this post up by talking about my first-ever experience pickling. I realize it&#8217;s not technically fermentation, but vinegar is a product of fermentation, so I&#8217;m going with it. I decided, having already done a few batches of sour pickles, that I wasn&#8217;t going to start with cucumbers. Instead, I chose a seasonal favorite, <a href="http://en.wikipedia.org/wiki/Fiddlehead_fern" target="_blank">Fiddleheads</a>. As the linked Wikipedia page explains, they are essentially baby ferns. And while they are an acquired taste, I could help but think, how would these little fellas taste pickled? I ordered two pounds through my local coop and pickled half of them. Based loosely off of <a href="http://fat-of-the-land.blogspot.com/2009/05/pickled-fiddleheads.html" target="_blank">this recipe</a>, I used water, vinegar (duh!), garlic, ginger and dill. In one of the jars, I added lemon zest, and in the other I added three <a href="http://en.wikipedia.org/wiki/Bird%27s_eye_chili" target="_blank">thai chili peppers</a>. To say that I&#8217;m excited to try them in several weeks time is an understatement.</p>
<p>So, now that I&#8217;ve started sharing my fermentation stories with you, I&#8217;ll be sure to continue in the future. If you have any questions, or would like to share a story of your own, feel free to contact me at <a href="mailto:mhokie@thehokie.com">mhokie@thehokie.com</a> or on <a href="http://twitter.com/mhokie" target="_blank">twitter</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thehokie.com/the-fermentations-appear/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Grids in a UITableView?</title>
		<link>http://www.thehokie.com/grids-in-a-uitableview/</link>
		<comments>http://www.thehokie.com/grids-in-a-uitableview/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 00:08:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[grids]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[sdk]]></category>
		<category><![CDATA[tabular data]]></category>
		<category><![CDATA[UITableView]]></category>

		<guid isPermaLink="false">http://www.thehokie.com/?p=41</guid>
		<description><![CDATA[As I explained a few posts ago, one of the reasons I&#8217;m firing this site back up is to help fellow developers, programmers and fermentors find answers to their questions.  I spend a good chunk of my day both at home and work Google-ing how to do this or that.
This quick post is to give [...]]]></description>
			<content:encoded><![CDATA[<p>As I explained a few posts ago, one of the reasons I&#8217;m firing this site back up is to help fellow developers, programmers and fermentors find answers to their questions.  I spend a good chunk of my day both at home and work Google-ing how to do this or that.</p>
<p>This quick post is to give a little shout out to TJS over at <a href="http://dewpoint.snagdata.com" target="_blank">dewpoint.snagdata.com</a>.  In particular, their post titled, <a href="http://dewpoint.snagdata.com/2008/10/31/drawing-a-grid-in-a-uitableview/" target="_blank">Drawing a Grid in a UITableView</a>.  I had a similar experience to the author when I started trying to figure out how to display tabular data within a UITableView.  It seemed like a grid system should be built in, but alas, it was not.  I tried inserting tabs, messing with alignments but nothing really worked.  I considered inserting individual labels into the cell, but I wasn&#8217;t sure how to go about it.</p>
<p>After searching for what seemed like an hour, I couldn&#8217;t find anything.  Finally, I happened upon TJS&#8217;s solution and immediately knew I had found what I was looking for.  After tweaking the label&#8217;s size, font color and setting the background color to &#8216;clear&#8217;, I was in business.</p>
<p>So, besides keeping the authors info intact in the file headers, I wanted to give an internet high five and maybe in doing so, help the post get a better positioning in the Googles.  If anyone is having any issues with their Objective C code, feel free to hit me up on Twitter, <a href="http://www.twitter.com/mhokie" target="_blank">@mhokie</a>.  I&#8217;m by no means an expert, but I&#8217;ve learned a few things in the last year or so.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thehokie.com/grids-in-a-uitableview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick Thought on Google in China</title>
		<link>http://www.thehokie.com/quick-thought-on-google-in-china/</link>
		<comments>http://www.thehokie.com/quick-thought-on-google-in-china/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 18:42:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Other Things]]></category>

		<guid isPermaLink="false">http://www.thehokie.com/?p=33</guid>
		<description><![CDATA[In a blog post from Google, released yesterday, the company explains that they have implemented the new plan regarding how they will deal with China. In January of 2010, they made the announcement that they had to develop &#8216;a new approach to China&#8217;.  This new approach was necessitated when Google detected highly sophisticated attacks on [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-36" title="China &amp; Google" src="http://www.thehokie.com/wp-content/uploads/2010/03/china-google-300x200.png" alt="" width="300" height="200" />In a <a href="http://googleblog.blogspot.com/2010/03/new-approach-to-china-update.html" target="_blank">blog post</a> from Google, released yesterday, the company explains that they have implemented the new plan regarding how they will deal with China. In January of 2010, they made the announcement that they had to develop <a href="http://googleblog.blogspot.com/2010/01/new-approach-to-china.html" target="_blank">&#8216;a new approach to China&#8217;</a>.  This new approach was necessitated when Google detected highly sophisticated attacks on their networks.  After some research, they determined it was indeed originating from China, and were generally, but not exclusively, targeting the GMail accounts of Chinese human rights activists.</p>
<p>Basically, the new plan is to reroute requests for google.cn to google.hk.  The Hong Kong version of Google has simple Chinese implemented and, most importantly, is uncensored.  If you&#8217;ve followed any of the news surrounding Google&#8217;s relationship with the Chinese government, you know it has focused almost solely on censorship.  Google wants the Chinese traffic and business, but the not-so-democratic Chinese government isn&#8217;t cool with an open internet.</p>
<p>I, personally, applaud the efforts of Google in working with China.  While I realize it isn&#8217;t entirely altruistic (ad revenue, etc.), I can only imagine how hard it must be to censor what is already a highly complex database. Furthermore, they&#8217;ve taken a ton of flack for bending to the demands of the Chinese government.  But really, I think it&#8217;s better that the Chinese people have censored access to Google than no access at all.</p>
<p>As a side note, Google has created a page to allow everyone to see what services are currently allowed in China. Check it out <a href="http://www.google.com/prc/report.html#hl=en" target="_blank">here</a>.</p>
<p>What are your thoughts?  Please let me know in the comments!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thehokie.com/quick-thought-on-google-in-china/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Genetic A/B Testing</title>
		<link>http://www.thehokie.com/genetic-ab-testing/</link>
		<comments>http://www.thehokie.com/genetic-ab-testing/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 04:02:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.thehokie.com/?p=24</guid>
		<description><![CDATA[I&#8217;m not sure I remember being this excited about a piece of open source code.  While the premise is fairly simple, the algorithms at play and the potential uses are vast.  Before I get too far ahead of myself, please let me clarify.  I&#8217;m talking about a piece of software called Genetify.
The code, in a [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-thumbnail wp-image-28" title="Genetics" src="http://www.thehokie.com/wp-content/uploads/2010/03/genetics-150x150.jpg" alt="" width="150" height="150" />I&#8217;m not sure I remember being this excited about a piece of open source code.  While the premise is fairly simple, the algorithms at play and the potential uses are vast.  Before I get too far ahead of myself, please let me clarify.  I&#8217;m talking about a piece of software called <a href="http://genetify.com/demo/" target="_blank">Genetify</a>.</p>
<p>The code, in a nutshell, allows for the real time testing of variations on aspects of a website.  These aspects range from html elements to css styles to javascript variables.  With a few small lines of javascript and a several variations in the code, you can let &#8216;genetics&#8217; take care of the rest.  For more information on how the software works, check out the <a href="http://wiki.github.com/gregdingle/genetify/usage" target="_blank">usage section</a> of the Github page.</p>
<p>I first read of this code being used on <a href="http://www.shoemoney.com/" target="_blank">shoemoney.com</a>.  In the post titled, &#8216;Split Testing with a Genetic Algorithm&#8217;, the company&#8217;s CTO explained how he used Genetify to split test several lines of text, colors of buttons and various call to action arrow configurations.  Over several thousand page views, the algorithms eventually determined which combination of elements resulted in the highest success rate.  Read more about how the use of genetic algorithms increased their sales figures <a href="http://www.shoemoney.com/2010/03/03/split-testing-with-a-genetic-algorithm/" target="_blank">in the article</a>.</p>
<p>After poking around a bit, I learned that the software has been around in some form for a while now.  It was set to the back burner for some time while the creators explored a more lucrative version of the concept, <a href="http://www.snapads.com/" target="_blank">SnapAds</a>.  In a November 2008 <a href="http://ejohn.org/blog/genetic-ab-testing-with-javascript/" target="_blank">post</a>, John Resig talks about being very excited about the rumor of the Genetify code being open sourced.  A quick look in the <a href="http://github.com/gregdingle/genetify/commits/master" target="_blank">Github history</a> of the project shows that less than one month later, author gregdingle committed the first version.  A year later, we have the most current commit, which is what I&#8217;ve been experimenting with.</p>
<p>The most obvious use for this code seems to be for advertisement landing pages and product sales pages.  That being said, I&#8217;d love to find a use for it in my freelancing.  Being a web developer first, and barely a designer second, it&#8217;s a very intriguing to think that I could allow a site&#8217;s user base to determine a very important design decision.  I&#8217;d be very interested to know what web designers think of this use of genetic algorithms.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thehokie.com/genetic-ab-testing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sponsored Tweets</title>
		<link>http://www.thehokie.com/sponsored-tweets/</link>
		<comments>http://www.thehokie.com/sponsored-tweets/#comments</comments>
		<pubDate>Sat, 27 Feb 2010 03:25:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.thehokie.com/?p=16</guid>
		<description><![CDATA[Recently, I signed up with a company called Sponsored Tweets.  It&#8217;s a pretty simple system really.  You sign up and set the price you&#8217;d like to get paid per tweeted ad.  On the other side, Sponsored Tweets has a whole group of advertisers looking to have you tweet an advertisement for them.  If they think [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://bit.ly/bLWW7k"><img style="border: 0; margin: 0 0 0 10px;" src="https://app.sponsoredtweets.com/images/tweeter_signup_125_2.jpg" alt="SponsoredTweets referral badge" width="125" height="125" align="right" /></a>Recently, I signed up with a company called Sponsored Tweets.  It&#8217;s a pretty simple system really.  You sign up and set the price you&#8217;d like to get paid per tweeted ad.  On the other side, Sponsored Tweets has a whole group of advertisers looking to have you tweet an advertisement for them.  If they think your price fits your twitter account&#8217;s reach and influence, then they contact you.  At this point, you agree on a price, and you send out a tweet advertising their product.  Very simple, and an affective way for companies to harness the power of Twitter.</p>
<p>I&#8217;ve mentioned this product to a few people, and their initial reaction is generally bordering on disgust.  When I ask what caused their face to turn sour, they almost always describe some sort of assumed purity in their Twitter feed.  This, as a developer, has a tendency to irk me in several ways.  After taking a few nerd breaths, I recompose myself and ask one simple question:</p>
<p>&#8220;How much are you paying to use Twitter?&#8221;</p>
<p>This is the exact same question I pose to folks who complain about design and policy changes on Facebook.  Or those who are still pouting about the inclusion of Buzz in Google&#8217;s *ahem* free e-mail service, GMail.  I am continually perplexed by the vast amount of entitlement assumed by the citizens of the internet. The last I checked, no one forced you to sign up for these services.  Nor did anyone ask you to disregard the respective services&#8217; legal terms.</p>
<p>My other point of contention is the assumption that some phantom benefactor is paying for these services&#8217; operational fees.  Server space, employee wages and legal fees are not paid with pictures of your dog, Snookie, or your tweet regarding a hot new bar in town.  They are, however, paid by allowing advertisers to target their ads in a very direct manner.</p>
<p>So, as a developer, I have no issue what so ever with seeing ads in my twitter feed, nor tweeting the occasional ad.  Do I want to see an ad every other tweet, not really. But if while Twitter takes its time figuring out how to monetize their system, far be it from me to not make a little extra cash while I tweet.</p>
<p>With all that being said, I&#8217;m interested in what you have to say.  So please,  developers and non-developers alike, chime in with your thoughts on the topics discussed above.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thehokie.com/sponsored-tweets/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>And we&#8217;re back!</title>
		<link>http://www.thehokie.com/and-were-back/</link>
		<comments>http://www.thehokie.com/and-were-back/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 15:29:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Other Things]]></category>

		<guid isPermaLink="false">http://www.thehokie.com/?p=1</guid>
		<description><![CDATA[Ahhh, yes&#8230; it feels good to be back up and running.  thehokie.com has been offline for a while now, but I figured it was just about time to revive the beast.
I&#8217;ve been getting into many new things since I last posted on this site.  I&#8217;ve started developing applications for the iPhone.  I have been doing [...]]]></description>
			<content:encoded><![CDATA[<p>Ahhh, yes&#8230; it feels good to be back up and running.  thehokie.com has been offline for a while now, but I figured it was just about time to revive the beast.</p>
<p>I&#8217;ve been getting into many new things since I last posted on this site.  I&#8217;ve started developing applications for the iPhone.  I have been doing some freelance web work.  Most recently, I&#8217;ve been working on a larger project, creating online shopping software for buying clubs.</p>
<p>Off of the computer, I&#8217;ve been spending a lot of time fermenting many things.  My friend Jake and I have been homebrewing now for about a year.  I&#8217;ve had several successful batches of sauerkraut and kimchi.  Throw in some exploding mead, a few tasty sour pickles and about two quarts of pickled beets and there have been a lot of things bubbling in my apartment.</p>
<p>The one thing that unifies everything above is that, for the first time in my life, I&#8217;ve continually ran into a lack of resources on the web.  If I Googled, &#8220;fermentation with whey&#8221;, I&#8217;d get a few sites, but nothing very specific.  Changing the color of several elements in a view-based navigation style iPhone app?  Again, nothing very useful.</p>
<p>Through stringing information from a few random websites, coupled with trial and error, I&#8217;ve figured out most of the things I was searching for.  But then I realized I should probably be writing this stuff down, lest someone else is searching for the same things to no avail.</p>
<p>And there you have it.  As the title indicates, I hope to make this website a resource for all things web development, programming and fermentation.  We&#8217;ll see how it goes!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thehokie.com/and-were-back/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
