<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Clint Hill</title>
	<atom:link href="http://clint-hill.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://clint-hill.com</link>
	<description>Father, Husband, Son, Brother, Uncle and a little software</description>
	<lastBuildDate>Wed, 30 May 2012 06:16:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='clint-hill.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Clint Hill</title>
		<link>http://clint-hill.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://clint-hill.com/osd.xml" title="Clint Hill" />
	<atom:link rel='hub' href='http://clint-hill.com/?pushpress=hub'/>
		<item>
		<title>Parse, Heroku, OpenShift and building the mobile web</title>
		<link>http://clint-hill.com/2012/05/30/parse-heroku-openshift-and-building-the-mobile-web/</link>
		<comments>http://clint-hill.com/2012/05/30/parse-heroku-openshift-and-building-the-mobile-web/#comments</comments>
		<pubDate>Wed, 30 May 2012 02:36:09 +0000</pubDate>
		<dc:creator>Clint Hill</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[mobile sdk]]></category>
		<category><![CDATA[nodejs]]></category>
		<category><![CDATA[platform as a service]]></category>

		<guid isPermaLink="false">http://clint-hill.com/?p=169</guid>
		<description><![CDATA[I recently walked through the steps of setting up Parse, Heroku and OpenShift accounts in order to get familiar with each and learn more about developing in an entirely *aaS environment. It&#8217;s my own exercise to see if you can &#8230; <a href="http://clint-hill.com/2012/05/30/parse-heroku-openshift-and-building-the-mobile-web/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clint-hill.com&#038;blog=12465104&#038;post=169&#038;subd=clinthill&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I recently walked through the steps of setting up <a href="https://parse.com/" target="_blank">Parse</a>, <a href="http://www.heroku.com/" target="_blank">Heroku</a> and <a href="https://openshift.redhat.com" target="_blank">OpenShift</a> accounts in order to get familiar with each and learn more about developing in an entirely *aaS environment. It&#8217;s my own exercise to see if you can build a device/web application and never touch the command line of a server. I wanted to answer the question &#8220;how easy is it to build a mobile app that includes data services on *aaS providers today?&#8221;</p>
<p>I chose these 3 because they popped up in my reading for different reasons and had the things I was looking for. Each has their own toolsets, SDKs and specialized features. They all covered the architecture necessary for data services. They also share the features of being free (at some basic level) and completely cloud based. Here is how each advertises itself:</p>
<ul>
<li>Parse: Backend data-store and Mobile SDK</li>
<li>Heroku: Cloud application platform</li>
<li>OpenShift: Platform as a Service</li>
</ul>
<p>In this list, one is pretty clearly not like the others. Parse is more like a data-store for your application than anything else. Heroku and OpenShift are more like hosting and are nearly equivalent in features. These providers seem to be able to cover all of the architecture I would imagine needing for an application. So what&#8217;s it like to get started?</p>
<h4>Parse</h4>
<p>Parse starts with a very nice &#8220;QuickStart Guide&#8221; tutorial and basically gives you a templated project that includes everything you need to save your first record in your account. This is comforting. Seeing your first &#8220;save&#8221; happen and being able to verify it immediately is a huge win. The Dashboard is also very impressive. I mean &#8211; a Data Browser? Wow. Nice touch. I have no idea how this looks or performs with millions of records, but just the presence of it is very nice. Lastly the coup d&#8217;etat is the &#8220;Export Data&#8221; feature. Really? I can get all my data back? Very cool.</p>
<h4>Heroku</h4>
<p>With Heroku you begin by setting up the Toolbelt. This is a set of command line tools that integrate really nicely with all of the Heroku services. Essentially it&#8217;s based off the Git workflow: when you push code it installs it and runs it on the Heroku platform. However it adds other tools such as Foreman which is a way to run your app locally. The &#8220;Resources&#8221; management of your applications is also very slick. It&#8217;s almost too easy. You could quickly setup your account to have <em>everything</em>. Including a database which they advertise as the largest and most reliable Postgres service in the world. The most intriguing part of Heroku in my opinion is that many of the tools they provide are available open-sourced on Github. I do want to elbow them on 1 particular thing: Node.js is not a language. You should change that in your Dev Center docs. It&#8217;s kinda silly. But with that said &#8211; they cover all of the more popular languages right now and that&#8217;s cool.</p>
<h4>OpenShift</h4>
<p>OpenShift also has a command line tool to facilitate service integration. They also provide a very clean and impressive application templating system. You select the &#8220;runtime&#8221; you&#8217;d prefer and it provides a template project with a lot of commented code to demonstrate integration with the rest of the platform. Very nice touch. One of the more interesting features with OpenShift is it&#8217;s Jenkins integration. It appears (I&#8217;ve not set this up yet) that you can add a Jenkins app to your account and have any other apps CI with that Jenkins install. This is &#8211; as far as I know &#8211; the first CI service provided by a *aaS provider. In my opinion what OpenShift has going  over other *aaS providers is the &#8220;Do-it-Yourself&#8221; cartridge. Essentially they are giving you a RedHat instance, an IP and a Port. Is this better than a command line to a server?</p>
<p>So that&#8217;s more or less the advertising for each of these providers and a little bit about the first interactions with each. Now I&#8217;m going to mock out my services etc and see which one makes it easy.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/clinthill.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/clinthill.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/clinthill.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/clinthill.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/clinthill.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/clinthill.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/clinthill.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/clinthill.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/clinthill.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/clinthill.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/clinthill.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/clinthill.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/clinthill.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/clinthill.wordpress.com/169/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clint-hill.com&#038;blog=12465104&#038;post=169&#038;subd=clinthill&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://clint-hill.com/2012/05/30/parse-heroku-openshift-and-building-the-mobile-web/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/eb6ca1943e287398e9b81acad2db919d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">clinthill</media:title>
		</media:content>
	</item>
		<item>
		<title>Insight and Perspective</title>
		<link>http://clint-hill.com/2012/05/16/insight-and-perspective-4/</link>
		<comments>http://clint-hill.com/2012/05/16/insight-and-perspective-4/#comments</comments>
		<pubDate>Wed, 16 May 2012 06:09:11 +0000</pubDate>
		<dc:creator>Clint Hill</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://clint-hill.com/?p=166</guid>
		<description><![CDATA[There was a flurry of debate on the internet the last few days about a blog post by Jeff Atwood. In it he made the argument that you shouldn&#8217;t desire to learn to program because it&#8217;s hard. And that we &#8230; <a href="http://clint-hill.com/2012/05/16/insight-and-perspective-4/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clint-hill.com&#038;blog=12465104&#038;post=166&#038;subd=clinthill&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There was a flurry of debate on the internet the last few days about a blog post by Jeff Atwood. In it he made the argument that you shouldn&#8217;t desire to learn to program because it&#8217;s hard. And that we don&#8217;t need more mediocre programmers. And that you shouldn&#8217;t want to write code at all. Let&#8217;s say it didn&#8217;t get a positive reaction. </p>
<p><a href="http://influencehacks.com/why-i-desperately-needed-to-learn-to-code" target="_blank">http://influencehacks.com/why-i-desperately-needed-to-learn-to-code</a></p>
<p>This is a blog post that seems to be in response to that. I believe the lessons learned listed in this blog post are worth more than the whole debate about learning to program or not. </p>
<p>I like the list. I like the perspective gained. I wish this was more pervasive.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/clinthill.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/clinthill.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/clinthill.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/clinthill.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/clinthill.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/clinthill.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/clinthill.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/clinthill.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/clinthill.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/clinthill.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/clinthill.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/clinthill.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/clinthill.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/clinthill.wordpress.com/166/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clint-hill.com&#038;blog=12465104&#038;post=166&#038;subd=clinthill&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://clint-hill.com/2012/05/16/insight-and-perspective-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/eb6ca1943e287398e9b81acad2db919d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">clinthill</media:title>
		</media:content>
	</item>
		<item>
		<title>OpenShift</title>
		<link>http://clint-hill.com/2012/05/16/openshift/</link>
		<comments>http://clint-hill.com/2012/05/16/openshift/#comments</comments>
		<pubDate>Wed, 16 May 2012 05:46:28 +0000</pubDate>
		<dc:creator>Clint Hill</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[platform as a service]]></category>
		<category><![CDATA[software platform]]></category>

		<guid isPermaLink="false">http://clint-hill.com/?p=150</guid>
		<description><![CDATA[Created an OpenShift account tonight. The application creation is pretty simple, but the cartridges that are available are pretty limited. And the Ruby apps seem wanting at only version 1.8.7. Don&#8217;t understand why that&#8217;s the case and why not 1.9.2? &#8230; <a href="http://clint-hill.com/2012/05/16/openshift/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clint-hill.com&#038;blog=12465104&#038;post=150&#038;subd=clinthill&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Created an <a href="https://openshift.redhat.com/app/" target="_blank">OpenShift</a> account tonight. The application creation is pretty simple, but the cartridges that are available are pretty limited. And the Ruby apps seem wanting at only version 1.8.7. Don&#8217;t understand why that&#8217;s the case and why not 1.9.2? It seems to me that with RVM the version should be a choice. But who knows, there is likely an architectural nuance that forces their hand to limit it to 1.8.7.</p>
<p>Regardless it&#8217;s a rather clean and simple setup. The rhc client is nice and it&#8217;s extremely cool that the project starts with a template (at least the Node.js application I created did). The project template has README files documenting available cartridges and hooks for build/deployment cycles (nice touch).</p>
<p>I&#8217;m a big fan of <a href="http://www.heroku.com/" target="_blank">Heroku</a>. I have an account there too. Now if I&#8217;d only build applications to host on each of them <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/clinthill.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/clinthill.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/clinthill.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/clinthill.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/clinthill.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/clinthill.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/clinthill.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/clinthill.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/clinthill.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/clinthill.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/clinthill.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/clinthill.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/clinthill.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/clinthill.wordpress.com/150/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clint-hill.com&#038;blog=12465104&#038;post=150&#038;subd=clinthill&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://clint-hill.com/2012/05/16/openshift/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/eb6ca1943e287398e9b81acad2db919d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">clinthill</media:title>
		</media:content>
	</item>
		<item>
		<title>The Virtual Machine &#8211; why just Java?</title>
		<link>http://clint-hill.com/2012/05/14/the-virtual-machine-why-just-java/</link>
		<comments>http://clint-hill.com/2012/05/14/the-virtual-machine-why-just-java/#comments</comments>
		<pubDate>Mon, 14 May 2012 17:03:21 +0000</pubDate>
		<dc:creator>Clint Hill</dc:creator>
				<category><![CDATA[observations]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Virtual Machine]]></category>

		<guid isPermaLink="false">http://clint-hill.com/?p=142</guid>
		<description><![CDATA[I&#8217;ve mentioned it before and I think it&#8217;s worth repeating: Oracle should remove the name &#8220;Java&#8221; from the Java Virtual Machine. Popularity of other languages besides Java is growing and specifically growing on the JVM. This article points out some &#8230; <a href="http://clint-hill.com/2012/05/14/the-virtual-machine-why-just-java/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clint-hill.com&#038;blog=12465104&#038;post=142&#038;subd=clinthill&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve <a href="http://clint-hill.com/2011/07/30/virtual-machine/">mentioned it before</a> and I think it&#8217;s worth repeating: Oracle should remove the name &#8220;Java&#8221; from the Java Virtual Machine. Popularity of other languages besides Java is growing and specifically growing on the JVM. <a href="http://thecodegeneral.wordpress.com/2012/03/04/the-big-three-jvm-languages/" target="_blank">This article</a> points out some poll data showing Groovy, Scala and Clojure use on the JVM.</p>
<p>Seems to me it would be cool to a name like &#8220;Polyglot Virtual Machine&#8221;.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/clinthill.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/clinthill.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/clinthill.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/clinthill.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/clinthill.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/clinthill.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/clinthill.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/clinthill.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/clinthill.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/clinthill.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/clinthill.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/clinthill.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/clinthill.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/clinthill.wordpress.com/142/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clint-hill.com&#038;blog=12465104&#038;post=142&#038;subd=clinthill&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://clint-hill.com/2012/05/14/the-virtual-machine-why-just-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/eb6ca1943e287398e9b81acad2db919d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">clinthill</media:title>
		</media:content>
	</item>
		<item>
		<title>Changing how CSS works: Hitch</title>
		<link>http://clint-hill.com/2012/05/06/changing-how-css-works-hitch/</link>
		<comments>http://clint-hill.com/2012/05/06/changing-how-css-works-hitch/#comments</comments>
		<pubDate>Sun, 06 May 2012 18:35:51 +0000</pubDate>
		<dc:creator>Clint Hill</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Hitch]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[software-development]]></category>
		<category><![CDATA[W3C]]></category>
		<category><![CDATA[web browers]]></category>

		<guid isPermaLink="false">http://clint-hill.com/?p=111</guid>
		<description><![CDATA[One of the most popular technologies in web development today is CSS. It&#8217;s a language that controls the presentation of HTML pages to browsers. It&#8217;s also one of the most complicated languages to truly master. CSS has a deceivingly easy &#8230; <a href="http://clint-hill.com/2012/05/06/changing-how-css-works-hitch/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clint-hill.com&#038;blog=12465104&#038;post=111&#038;subd=clinthill&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>One of the most popular technologies in web development today is <a title="CSS" href="http://en.wikipedia.org/wiki/Cascading_Style_Sheets" target="_blank">CSS</a>. It&#8217;s a language that controls the presentation of HTML pages to browsers. It&#8217;s also one of the most complicated languages to truly master. CSS has a deceivingly easy syntax and rule construction, but is as close to any imperative/declarative language as can be in its execution.</p>
<p>To further complicate things, web browers (Chrome / Firefox / Opera / Internet Explorer) all treat the rules of CSS differently. Even though there are <a title="CSS Standards and Specs" href="http://www.w3.org/standards/techs/css#w3c_all" target="_blank">standards</a> written on what should happen for certain features and constructs, they still each have their own nuances. Seemingly simple things like rounded-corners are handled differently by a few of these browsers.</p>
<p>Now you can reverse that paradigm: <a title="Hitch" href="http://www.hitchjs.com/" target="_blank">Hitch</a></p>
<p>Right now browser vendors (Google / Microsoft / Mozilla / Apple) control how CSS works in the browser you&#8217;re using. There are utilities out there that make writing CSS easier and better, while trying to minimize these vendor differences. For example, <a title="Sass" href="http://sass-lang.com/" target="_blank">Sass</a> is a CSS superset in which you can write CSS with certain syntactical features and Sass will re-compile your Sass into standard CSS and specifically for each vendor&#8217;s nuances. It does not however change how CSS works, and relies on the browser&#8217;s current functionality for CSS features. There is also <a title="LESS" href="http://lesscss.org/" target="_blank">LESS</a> &#8211; very similar to Sass.<em> (These are both wonderful utilities and you should use them.)</em></p>
<p>Hitch switches the control of the web page from the vendor to the developer. It provides true functional changes via CSS, not just syntactical extensions. The way Hitch does this is through a JavaScript API that <em>hitches</em> onto the execution of CSS, intercept it, change it and then let it continue. Specifically it&#8217;s designed to extend the CSS <a title="W3C CSS Pseudo Elements and Classes" href="http://www.w3.org/TR/CSS2/selector.html#pseudo-elements" target="_blank">pseudo elements and pseudo classes</a> by making them more like filters.</p>
<h4>An Example</h4>
<p>Imagine you need to style the links in your web page according to an information architecture where the nested level of the link&#8217;s URL path is important. For example the URL path /2012/05 is important because it represents a month and /2012/05/05 is important because it represents a day. The markup for these is very simple:</p>
<pre><code>&lt;a href="/2012"&gt;View 2012&lt;/a&gt; 
&lt;a href="/2012/05"&gt;View May&lt;/a&gt; 
&lt;a href="/2012/05/05"&gt;View May 5th&lt;/a&gt;</code></pre>
<p>With standard CSS there is no way to apply a style based on the path nesting. But with Hitch there is:</p>
<pre><code>/* links with /-- should be black */ 
a:-links-local(0) { 
    color: #000000; 
} 
/* links with /--/-- should be blue */ 
a:-links-local(1) { 
    color: #336699; 
} 
/* links with /--/--/-- should be gray */ 
a:-links-local(2){ 
    color: #333333; 
}</code></pre>
<p>With the <a title="Links Pseudo Class " href="http://hitchjs.com/describe/bkardell.links/1" target="_blank">Link Pseudo Class</a> filters you can specify a style for any number of nested paths and even base the style on whether the path is local to your web page or external. The CSS rules are subtly different (but still very standard) while the functionality is extremely new and currently not doable without Hitch.</p>
<p>Not only does Hitch come with a few built-in features like <a title="Hitch Repository" href="http://hitchjs.com/repo/" target="_blank">filters, widgets and constants</a> &#8211; it is also extensible by you. And this is where it breaks the current paradigm:</p>
<p><strong>Now you can control your CSS functionality and not be bound to a vendor.</strong></p>
<blockquote><p>Note: Hitch is a rather new project. It has amazing potential and also a few things yet to be built. It&#8217;s open sourced and available on Github: <a title="Hitch on Github" href="https://github.com/bkardell/Hitch/" target="_blank">https://github.com/bkardell/Hitch/</a>. Fork it. Change how CSS works!</p></blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/clinthill.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/clinthill.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/clinthill.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/clinthill.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/clinthill.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/clinthill.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/clinthill.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/clinthill.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/clinthill.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/clinthill.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/clinthill.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/clinthill.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/clinthill.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/clinthill.wordpress.com/111/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clint-hill.com&#038;blog=12465104&#038;post=111&#038;subd=clinthill&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://clint-hill.com/2012/05/06/changing-how-css-works-hitch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/eb6ca1943e287398e9b81acad2db919d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">clinthill</media:title>
		</media:content>
	</item>
		<item>
		<title>Things I&#8217;m working on</title>
		<link>http://clint-hill.com/2012/05/06/things-im-working-on/</link>
		<comments>http://clint-hill.com/2012/05/06/things-im-working-on/#comments</comments>
		<pubDate>Sun, 06 May 2012 03:49:51 +0000</pubDate>
		<dc:creator>Clint Hill</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://clint-hill.com/?p=102</guid>
		<description><![CDATA[I&#8217;m listing out a few things that I&#8217;m going to spend more effort working on in my free time. Some of this I&#8217;ve already started. Most of this is entirely new to me and I&#8217;m treating as education. Parsers There &#8230; <a href="http://clint-hill.com/2012/05/06/things-im-working-on/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clint-hill.com&#038;blog=12465104&#038;post=102&#038;subd=clinthill&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m listing out a few things that I&#8217;m going to spend more effort working on in my free time. Some of this I&#8217;ve already started. Most of this is entirely new to me and I&#8217;m treating as education.</p>
<h3>Parsers</h3>
<p>There are tons of parsers out there. And frankly the field is quite big. But honestly I&#8217;m pretty humble about my expectations. I created a project called <a title="Peggy.js" href="http://clintjhill.github.com/Peggy.js/" target="_blank">Peggy.js</a> and I hope to get some activity in that library. I&#8217;d like to be involved in the many web projects out there that require their own grammar/parser. What I&#8217;m learning so far is that nearly everything in software development is some form of parsing (more than one might imagine). And it can be very difficult.</p>
<h3>Sentiment Analysis</h3>
<p>Sentiment analysis is another field that is rather big and actually becoming quite popular (or trendy I suppose). To be honest, I&#8217;m not even sure that the field has a name like that. It&#8217;s basically the study of emotion/attitude/opinion in content users submit to web applications. At least that&#8217;s my definition. Essentially I&#8217;m interested in the Front-End perspective. How do web/mobile applications handle sentiment analysis? Is there a way to do so on the Front-End that will add better user experience? Or is it really only suited in the post-content-submission perspective. I&#8217;ve started (I use that term very loosely) 2 projects for this. One in Ruby and one in JavaScript: <a title="Sentiment.js" href="https://github.com/clintjhill/Sentiment.js" target="_blank">Sentiment.js</a> and <a title="Altimeter" href="https://github.com/clintjhill/altimeter" target="_blank">Altimeter</a>. I&#8217;m really hoping to capitalize these projects as not only learning experiences, but potentially career altering opportunities.</p>
<p>I have a ton to learn. I&#8217;m very interested in these things. Hopefully something will come of it.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/clinthill.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/clinthill.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/clinthill.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/clinthill.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/clinthill.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/clinthill.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/clinthill.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/clinthill.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/clinthill.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/clinthill.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/clinthill.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/clinthill.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/clinthill.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/clinthill.wordpress.com/102/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clint-hill.com&#038;blog=12465104&#038;post=102&#038;subd=clinthill&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://clint-hill.com/2012/05/06/things-im-working-on/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/eb6ca1943e287398e9b81acad2db919d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">clinthill</media:title>
		</media:content>
	</item>
		<item>
		<title>Nothing goes as planned</title>
		<link>http://clint-hill.com/2011/08/11/nothing-goes-as-planned/</link>
		<comments>http://clint-hill.com/2011/08/11/nothing-goes-as-planned/#comments</comments>
		<pubDate>Thu, 11 Aug 2011 13:57:44 +0000</pubDate>
		<dc:creator>Clint Hill</dc:creator>
				<category><![CDATA[observations]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">https://clinthill.wordpress.com/?p=97</guid>
		<description><![CDATA[This last week has been great and exhausting. It has reminded me that nothing goes as planned. When you&#8217;re a kid you plan on big things. You believe in big ideas. Some time later you give up on a few &#8230; <a href="http://clint-hill.com/2011/08/11/nothing-goes-as-planned/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clint-hill.com&#038;blog=12465104&#038;post=97&#038;subd=clinthill&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This last week has been great and exhausting. It has reminded me that nothing goes as planned. </p>
<p>When you&#8217;re a kid you plan on big things. You believe in big ideas. Some time later you give up on a few of those. Then as age creeps up on you, it starts to remove the gloss on those shiny plans you had. </p>
<p>It&#8217;s so obvious, and yet very hard to really accept. Plans are meant to be broken. You just can&#8217;t control life. Fate or higher power, call it whatever you want, just understand it&#8217;s not you.</p>
<p>Willie wrote once: &#8220;We are not in control. And that&#8217;s Ok.&#8221;</p>
<p>If you let plans slip, and allow it to be Ok, life is much easier to understand. Otherwise you can waste a lot of time being frustrated and confused.</p>
<p>This week a one or two things didn&#8217;t go as planned and it caused me a lot of stress and frustration. My patience got really thin a few times. But I can look back to this week and be happy, because while my plans changed my life didn&#8217;t. </p>
<p>And that&#8217;s Ok.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/clinthill.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/clinthill.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/clinthill.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/clinthill.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/clinthill.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/clinthill.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/clinthill.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/clinthill.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/clinthill.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/clinthill.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/clinthill.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/clinthill.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/clinthill.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/clinthill.wordpress.com/97/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clint-hill.com&#038;blog=12465104&#038;post=97&#038;subd=clinthill&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://clint-hill.com/2011/08/11/nothing-goes-as-planned/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/eb6ca1943e287398e9b81acad2db919d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">clinthill</media:title>
		</media:content>
	</item>
		<item>
		<title>Virtual Machine</title>
		<link>http://clint-hill.com/2011/07/30/virtual-machine/</link>
		<comments>http://clint-hill.com/2011/07/30/virtual-machine/#comments</comments>
		<pubDate>Sat, 30 Jul 2011 17:15:36 +0000</pubDate>
		<dc:creator>Clint Hill</dc:creator>
				<category><![CDATA[observations]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://clint-hill.com/?p=92</guid>
		<description><![CDATA[Something that Oracle could do to truly revolutionize the Sun stack they bought: drop the &#8220;Java&#8221; from the Virtual Machine name. This would solidify the fact that you can use nearly any style language you wish, not just Java. Twitter &#8230; <a href="http://clint-hill.com/2011/07/30/virtual-machine/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clint-hill.com&#038;blog=12465104&#038;post=92&#038;subd=clinthill&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Something that Oracle could do to truly revolutionize the Sun stack they bought: drop the &#8220;Java&#8221; from the Virtual Machine name. This would solidify the fact that you can use nearly any style language you wish, not just Java.</p>
<span style="text-align:center; display: block;"><a href="http://clint-hill.com/2011/07/30/virtual-machine/"><img src="http://img.youtube.com/vi/ohHdZXnsNi8/2.jpg" alt="" /></a></span>
<p><a title="Twitter moving to the JVM more and more" href="http://ontwik.com/rails/oreilly-oscon-java-2011-raffi-krikorian-twitter-from-ruby-on-rails-to-the-jvm/" target="_blank">Twitter moving to the JVM more and more</a></p>
<p>The important part of this presentation is about the virtual machine and it&#8217;s performance/scaling. Not the language. In fact if he never mentioned languages at all the presentation is still valuable.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/clinthill.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/clinthill.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/clinthill.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/clinthill.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/clinthill.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/clinthill.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/clinthill.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/clinthill.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/clinthill.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/clinthill.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/clinthill.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/clinthill.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/clinthill.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/clinthill.wordpress.com/92/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clint-hill.com&#038;blog=12465104&#038;post=92&#038;subd=clinthill&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://clint-hill.com/2011/07/30/virtual-machine/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/eb6ca1943e287398e9b81acad2db919d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">clinthill</media:title>
		</media:content>
	</item>
		<item>
		<title>Next Exciting Thought Exercise</title>
		<link>http://clint-hill.com/2011/07/23/next-exciting-thought-exercise/</link>
		<comments>http://clint-hill.com/2011/07/23/next-exciting-thought-exercise/#comments</comments>
		<pubDate>Sat, 23 Jul 2011 07:27:00 +0000</pubDate>
		<dc:creator>Clint Hill</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[applications]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">https://clinthill.wordpress.com/?p=89</guid>
		<description><![CDATA[At work and personally my next new shiny thing is the design of a framework for delivering JavaScript applications. It&#8217;s more than building modules, listing them in a gallery and then HOWTO documents, rather a top-to-bottom application UX delivery system. &#8230; <a href="http://clint-hill.com/2011/07/23/next-exciting-thought-exercise/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clint-hill.com&#038;blog=12465104&#038;post=89&#038;subd=clinthill&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>At work and personally my next new shiny thing is the design of a framework for delivering JavaScript applications. It&#8217;s more than building modules, listing them in a gallery and then HOWTO documents, rather a top-to-bottom application UX delivery system.</p>
<p>This is more tricky than might be imagined. It&#8217;s a gallery of modules. It&#8217;s a development environment. It&#8217;s a hosting environment. It&#8217;s a core library. And not always in this order.</p>
<p>It&#8217;s exciting stuff to think about. And it&#8217;s really cool to think about doing it with JavaScript (client and server sides). A few things that cause concern are the definitions of things.</p>
<ul>
<li>What is a module?</li>
<li>What is a component?</li>
<li>Is there a difference?</li>
<li>Or are components applications?</li>
<li>What does &#8220;development environment&#8221; mean?</li>
<li>Does hosting mean you get what you get or does it mean you can get what you want?</li>
</ul>
<p>It&#8217;s answers to these questions that are critical in designing a system like this.</p>
<p>Fun stuff.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/clinthill.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/clinthill.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/clinthill.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/clinthill.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/clinthill.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/clinthill.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/clinthill.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/clinthill.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/clinthill.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/clinthill.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/clinthill.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/clinthill.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/clinthill.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/clinthill.wordpress.com/89/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clint-hill.com&#038;blog=12465104&#038;post=89&#038;subd=clinthill&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://clint-hill.com/2011/07/23/next-exciting-thought-exercise/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/eb6ca1943e287398e9b81acad2db919d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">clinthill</media:title>
		</media:content>
	</item>
		<item>
		<title>1 week down</title>
		<link>http://clint-hill.com/2011/07/17/1-week-down/</link>
		<comments>http://clint-hill.com/2011/07/17/1-week-down/#comments</comments>
		<pubDate>Sun, 17 Jul 2011 17:20:24 +0000</pubDate>
		<dc:creator>Clint Hill</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://clint-hill.com/?p=74</guid>
		<description><![CDATA[Finished a week of vacation. I accomplished most of what I wanted to do. Nothing for example was something I&#8217;d hoped to achieve. Check. There was a list of other things I&#8217;d hoped to do, and I did a little &#8230; <a href="http://clint-hill.com/2011/07/17/1-week-down/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clint-hill.com&#038;blog=12465104&#038;post=74&#038;subd=clinthill&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Finished a week of vacation. I accomplished most of what I wanted to do. Nothing for example was something I&#8217;d hoped to achieve. Check. There was a list of other things I&#8217;d hoped to do, and I did a little bit of each. I have 3 more days off. I think I&#8217;ll try to cram that list into these last few days.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/clinthill.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/clinthill.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/clinthill.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/clinthill.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/clinthill.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/clinthill.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/clinthill.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/clinthill.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/clinthill.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/clinthill.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/clinthill.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/clinthill.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/clinthill.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/clinthill.wordpress.com/74/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clint-hill.com&#038;blog=12465104&#038;post=74&#038;subd=clinthill&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://clint-hill.com/2011/07/17/1-week-down/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/eb6ca1943e287398e9b81acad2db919d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">clinthill</media:title>
		</media:content>
	</item>
	</channel>
</rss>
