<?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>Trey Connell &#187; Development</title>
	<atom:link href="http://www.treyconnell.com/category/web-development/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.treyconnell.com</link>
	<description>sunny on the outside. monsoon in the middle.</description>
	<lastBuildDate>Mon, 28 Nov 2011 14:24:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Sublime Text 2 &#8211; An Alternative To Textmate</title>
		<link>http://www.treyconnell.com/sublime-text-2-alternative-textmate/</link>
		<comments>http://www.treyconnell.com/sublime-text-2-alternative-textmate/#comments</comments>
		<pubDate>Mon, 31 Oct 2011 18:14:41 +0000</pubDate>
		<dc:creator>Trey Connell</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[sublime text]]></category>
		<category><![CDATA[textmate]]></category>

		<guid isPermaLink="false">http://www.treyconnell.com/?p=1297</guid>
		<description><![CDATA[I&#8217;ve been using Textmate for a long time and am a huge fan. A friend recommended I try Sublime Text 2. Holy crap it is awesome, and I may not be going back to Textmate. Here are some great tips to get you started.]]></description>
		<wfw:commentRss>http://www.treyconnell.com/sublime-text-2-alternative-textmate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Barcamp Jonesboro</title>
		<link>http://www.treyconnell.com/barcamp-jonesboro/</link>
		<comments>http://www.treyconnell.com/barcamp-jonesboro/#comments</comments>
		<pubDate>Wed, 05 Oct 2011 23:21:53 +0000</pubDate>
		<dc:creator>Trey Connell</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[barcamp]]></category>
		<category><![CDATA[startups]]></category>
		<category><![CDATA[tradeomics]]></category>

		<guid isPermaLink="false">http://www.treyconnell.com/?p=1285</guid>
		<description><![CDATA[Nick Brewer, Luke Irvin and I headed up to Barcamp Jonesboro a couple of weeks ago. I really didn&#8217;t know what to expect. It&#8217;s been so long since I&#8217;ve been to any kind of conference or seminar regarding technology, and I don&#8217;t exactly get out and socialize with fellow geeks and tech folks since I work [...]]]></description>
		<wfw:commentRss>http://www.treyconnell.com/barcamp-jonesboro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick Look: SproutCore</title>
		<link>http://www.treyconnell.com/quick-sproutcore/</link>
		<comments>http://www.treyconnell.com/quick-sproutcore/#comments</comments>
		<pubDate>Sat, 21 May 2011 17:41:50 +0000</pubDate>
		<dc:creator>Trey Connell</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Web Dev Links]]></category>

		<guid isPermaLink="false">http://www.treyconnell.com/?p=1258</guid>
		<description><![CDATA[SproutCore is a javascript framework for building applications online. I haven&#8217;t used it, but it looks really interesting.]]></description>
		<wfw:commentRss>http://www.treyconnell.com/quick-sproutcore/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Calculate New Image Dimensions in Ruby</title>
		<link>http://www.treyconnell.com/calculate-image-dimensions-ruby/</link>
		<comments>http://www.treyconnell.com/calculate-image-dimensions-ruby/#comments</comments>
		<pubDate>Fri, 07 Jan 2011 14:21:21 +0000</pubDate>
		<dc:creator>Trey Connell</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[helper]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://www.treyconnell.com/?p=1214</guid>
		<description><![CDATA[Here&#8217;s a helper method I wrote in order to resize an image for display. And yes, you should always try to physically resize an image and not just change the height and width in the image tag so that you save space and bandwidth and load time. However, I ran into a situation where this [...]]]></description>
		<wfw:commentRss>http://www.treyconnell.com/calculate-image-dimensions-ruby/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Automatically Raise RecordNotFound Exceptions in Rails</title>
		<link>http://www.treyconnell.com/automatically-raise-recordnotfound-exceptions-rails/</link>
		<comments>http://www.treyconnell.com/automatically-raise-recordnotfound-exceptions-rails/#comments</comments>
		<pubDate>Wed, 29 Dec 2010 15:51:32 +0000</pubDate>
		<dc:creator>Trey Connell</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[ActiveRecord]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.treyconnell.com/?p=1211</guid>
		<description><![CDATA[I typically have the following code in my application_controller.rb file in Rails apps: # any time we get a RecordNotFound Exception we're going to rescue from it and throw a 404 rescue_from ActiveRecord::RecordNotFound, :with => :throw_404 # Used to take the user to a 404 page def throw_404 @browser_title = "Page Not Found" render_optional_error_file("404") true [...]]]></description>
		<wfw:commentRss>http://www.treyconnell.com/automatically-raise-recordnotfound-exceptions-rails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Force SSL Protocol in Ruby on Rails</title>
		<link>http://www.treyconnell.com/force-ssl-protocol-ruby-rails/</link>
		<comments>http://www.treyconnell.com/force-ssl-protocol-ruby-rails/#comments</comments>
		<pubDate>Tue, 30 Nov 2010 12:09:12 +0000</pubDate>
		<dc:creator>Trey Connell</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://www.treyconnell.com/?p=1197</guid>
		<description><![CDATA[I had to modify an application to ensure the https protocol was used on some important pages such as new user registration, login, shopping cart checkout, etc.  Here&#8217;s a really easy method you can place into your application_controller.rb and call as a before_filter within your controllers. def require_ssl redirect_to :protocol =&#62; "https://" unless (request.ssl? or [...]]]></description>
		<wfw:commentRss>http://www.treyconnell.com/force-ssl-protocol-ruby-rails/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Web Designers Versus Web Developers</title>
		<link>http://www.treyconnell.com/web-developers-web-designers/</link>
		<comments>http://www.treyconnell.com/web-developers-web-designers/#comments</comments>
		<pubDate>Fri, 12 Nov 2010 14:43:45 +0000</pubDate>
		<dc:creator>Trey Connell</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.treyconnell.com/?p=1192</guid>
		<description><![CDATA[]]></description>
		<wfw:commentRss>http://www.treyconnell.com/web-developers-web-designers/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Tracks and Basecamp</title>
		<link>http://www.treyconnell.com/tracks-basecamp/</link>
		<comments>http://www.treyconnell.com/tracks-basecamp/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 00:35:58 +0000</pubDate>
		<dc:creator>Trey Connell</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[basecamp]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[tracks]]></category>

		<guid isPermaLink="false">http://www.treyconnell.com/?p=1173</guid>
		<description><![CDATA[I started working today on integrating Tracks and Basecamp for the heck of it. So far it&#8217;s coming together pretty well. You can check out the latest where I forked Tracks on github.com. The project integration is done, and to-do lists are up next. Shouldn&#8217;t take much longer. I&#8217;m not sure exactly how useful it [...]]]></description>
		<wfw:commentRss>http://www.treyconnell.com/tracks-basecamp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Few Git Tips You Didn&#8217;t Know About</title>
		<link>http://www.treyconnell.com/git-tips/</link>
		<comments>http://www.treyconnell.com/git-tips/#comments</comments>
		<pubDate>Mon, 02 Aug 2010 15:50:37 +0000</pubDate>
		<dc:creator>Trey Connell</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[git]]></category>

		<guid isPermaLink="false">http://www.treyconnell.com/?p=1169</guid>
		<description><![CDATA[Mislav posted some really good tips for using Git. http://mislav.uniqpath.com/2010/07/git-tips/]]></description>
		<wfw:commentRss>http://www.treyconnell.com/git-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JQuery Tools from Flowplayer</title>
		<link>http://www.treyconnell.com/jquery-tools-flowplayer/</link>
		<comments>http://www.treyconnell.com/jquery-tools-flowplayer/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 23:36:05 +0000</pubDate>
		<dc:creator>Trey Connell</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.treyconnell.com/?p=1149</guid>
		<description><![CDATA[I long ago decided to use JQuery over other javascript frameworks like Prototype. JQuery just seems to fit with the way I think about solutions and how to attack challenges. I also think the community is amazing, with many new tools and tutorials and exciting APIs springing up everywhere. One such tool is from Flowplayer [...]]]></description>
		<wfw:commentRss>http://www.treyconnell.com/jquery-tools-flowplayer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

