<?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/"
	>

<channel>
	<title>Eric Salczynski</title>
	<atom:link href="http://www.ericsal.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ericsal.com</link>
	<description>Web developer, graphic designer, wanna-be marketing guy</description>
	<pubDate>Sat, 16 Jan 2010 03:15:28 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Unobtrusive Javascript for Links in New Windows</title>
		<link>http://www.ericsal.com/2010/01/unobtrusive-javascript-for-links-in-new-windows/</link>
		<comments>http://www.ericsal.com/2010/01/unobtrusive-javascript-for-links-in-new-windows/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 03:15:28 +0000</pubDate>
		<dc:creator>ericsal</dc:creator>
		
		<category><![CDATA[code contributions]]></category>

		<category><![CDATA[javascript]]></category>

		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://www.ericsal.com/?p=105</guid>
		<description><![CDATA[As we all know, the &#8220;target&#8221; attribute is not valid in the XHTML Strict Doctype. That can be kind of a pain in the butt when you want to open a link in a new window.
If you&#8217;re using the Transitional Doctype you can do something like this:
&#60;a href="http://www.wehaventthetime.com" target="_blank"&#62;WeHaventTheTime&#60;/a&#62;
But for the Strict Doctype, that&#8217;s a [...]]]></description>
		<wfw:commentRss>http://www.ericsal.com/2010/01/unobtrusive-javascript-for-links-in-new-windows/feed/</wfw:commentRss>
		</item>
		<item>
		<title>On-click Events for Bar Charts in OFC2</title>
		<link>http://www.ericsal.com/2010/01/on-click-events-for-bar-charts-in-ofc2/</link>
		<comments>http://www.ericsal.com/2010/01/on-click-events-for-bar-charts-in-ofc2/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 16:51:11 +0000</pubDate>
		<dc:creator>ericsal</dc:creator>
		
		<category><![CDATA[code contributions]]></category>

		<category><![CDATA[flex]]></category>

		<category><![CDATA[open source]]></category>

		<category><![CDATA[ruby on rails]]></category>

		<guid isPermaLink="false">http://www.ericsal.com/?p=98</guid>
		<description><![CDATA[Waaaay back in November of 2008, I contributed some code to the Open Flash Chart project. At the time, most charts in the library allowed for click events within the chart - one of the few that didn&#8217;t handle clicks was the bar chart. Unfortunately, that&#8217;s exactly what I needed for bar charts in an [...]]]></description>
		<wfw:commentRss>http://www.ericsal.com/2010/01/on-click-events-for-bar-charts-in-ofc2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Using Delayed::Job with Juggernaut</title>
		<link>http://www.ericsal.com/2009/05/using-delayed-job-with-juggernaut/</link>
		<comments>http://www.ericsal.com/2009/05/using-delayed-job-with-juggernaut/#comments</comments>
		<pubDate>Sun, 10 May 2009 18:00:12 +0000</pubDate>
		<dc:creator>ericsal</dc:creator>
		
		<category><![CDATA[ruby on rails]]></category>

		<category><![CDATA[examples]]></category>

		<category><![CDATA[secret project]]></category>

		<guid isPermaLink="false">http://www.ericsal.com/?p=74</guid>
		<description><![CDATA[So for this top secret project I&#8217;m working on with @TopherBook, I&#8217;ve been looking into using background jobs to handle some long-running tasks that are non-essential to the user experience. I researched a few different options including BackgrounDRb, Background::Job and Delayed::Job. Eventually, I decided on using Delayed::Job because it&#8217;s simple, allows for multiple workers running [...]]]></description>
		<wfw:commentRss>http://www.ericsal.com/2009/05/using-delayed-job-with-juggernaut/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Prototype and Javascript in Ruby on Rails</title>
		<link>http://www.ericsal.com/2009/04/prototype-and-javascript-in-ruby-on-rails/</link>
		<comments>http://www.ericsal.com/2009/04/prototype-and-javascript-in-ruby-on-rails/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 15:13:49 +0000</pubDate>
		<dc:creator>ericsal</dc:creator>
		
		<category><![CDATA[ruby on rails]]></category>

		<category><![CDATA[javascript]]></category>

		<category><![CDATA[jquery]]></category>

		<category><![CDATA[lists]]></category>

		<category><![CDATA[prototype]]></category>

		<guid isPermaLink="false">http://www.ericsal.com/?p=56</guid>
		<description><![CDATA[I am a purist. Or obsessive compulsive. Or maybe just irrational. But I H-A-T-E inline javascript. Unobtrusive javascript (like SWFObject or its predecessor, UFO) is the only way to go in my opinion. Seriously. Keep that stuff out of my markup.
This is why I love the Prototype.js framework and hate Rails javascript helper methods. The [...]]]></description>
		<wfw:commentRss>http://www.ericsal.com/2009/04/prototype-and-javascript-in-ruby-on-rails/feed/</wfw:commentRss>
		</item>
		<item>
		<title>User authentication and authorization in a Rails application</title>
		<link>http://www.ericsal.com/2009/04/user-authentication-and-authorization-in-a-rails-application/</link>
		<comments>http://www.ericsal.com/2009/04/user-authentication-and-authorization-in-a-rails-application/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 00:19:03 +0000</pubDate>
		<dc:creator>ericsal</dc:creator>
		
		<category><![CDATA[ruby on rails]]></category>

		<category><![CDATA[authentication]]></category>

		<category><![CDATA[authorization]]></category>

		<guid isPermaLink="false">http://www.ericsal.com/?p=45</guid>
		<description><![CDATA[So today, despite battling a nasty sinus infection-like cold, I decided to get started on setting up SA.org, a project I&#8217;m working on with @TopherBook. I&#8217;m not going to get into details right now - everything&#8217;s a bit hush-hush right now - but I felt I should mention SA.org to set some context for the [...]]]></description>
		<wfw:commentRss>http://www.ericsal.com/2009/04/user-authentication-and-authorization-in-a-rails-application/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Who&#8217;s in your top 5?</title>
		<link>http://www.ericsal.com/2009/04/whos-in-your-top-5/</link>
		<comments>http://www.ericsal.com/2009/04/whos-in-your-top-5/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 17:25:29 +0000</pubDate>
		<dc:creator>ericsal</dc:creator>
		
		<category><![CDATA[music]]></category>

		<category><![CDATA[beer]]></category>

		<category><![CDATA[Facebook]]></category>

		<category><![CDATA[life]]></category>

		<category><![CDATA[lists]]></category>

		<guid isPermaLink="false">http://www.ericsal.com/?p=30</guid>
		<description><![CDATA[Last week, while we were out at happy hour at Scott&#8217;s Grille, Ashley, Julie and I got onto the topic of the top five most influential albums of our lives. I think we got on the topic because someone mentioned something about that LivingSocial Top 5 application that has invaded our Facebook home pages.
I&#8217;m sure [...]]]></description>
		<wfw:commentRss>http://www.ericsal.com/2009/04/whos-in-your-top-5/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Welcome to the 21st Century</title>
		<link>http://www.ericsal.com/2009/03/welcome-to-the-21st-century/</link>
		<comments>http://www.ericsal.com/2009/03/welcome-to-the-21st-century/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 19:59:34 +0000</pubDate>
		<dc:creator>ericsal</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[AAH]]></category>

		<category><![CDATA[art]]></category>

		<category><![CDATA[Facebook]]></category>

		<category><![CDATA[Harrisburg]]></category>

		<category><![CDATA[marketing]]></category>

		<category><![CDATA[technology]]></category>

		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.ericsal.com/?p=20</guid>
		<description><![CDATA[I think that since I&#8217;ve made my career as a web developer, sometimes I take technology for granted. In a single day, I probably spend more time sitting on my rear-end in front of a computer than I do sleeping. And when I&#8217;m not at the computer, there&#8217;s a good chance I&#8217;m watching TV on [...]]]></description>
		<wfw:commentRss>http://www.ericsal.com/2009/03/welcome-to-the-21st-century/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Hello, World</title>
		<link>http://www.ericsal.com/2009/03/hello-world/</link>
		<comments>http://www.ericsal.com/2009/03/hello-world/#comments</comments>
		<pubDate>Sun, 29 Mar 2009 20:05:55 +0000</pubDate>
		<dc:creator>ericsal</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[blogging]]></category>

		<category><![CDATA[MySpace]]></category>

		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.ericsal.com/?p=3</guid>
		<description><![CDATA[So I&#8217;ve tried this once before and gave up pretty quickly. I guess we&#8217;ll see how long this one lasts&#8230; But I started (and stopped and started again) because I feel like I should be &#8220;blogging.&#8221; All the tech professionals I respect are doing it, so shouldn&#8217;t I be too?
Here&#8217;s where my mom would ask, [...]]]></description>
		<wfw:commentRss>http://www.ericsal.com/2009/03/hello-world/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
