<?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>Jordan Has a Blog</title>
	<atom:link href="http://jordanmessina.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://jordanmessina.com</link>
	<description></description>
	<lastBuildDate>Tue, 27 Jul 2010 20:24:47 +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>Whoops and Sorry!!!</title>
		<link>http://jordanmessina.com/2010/07/27/whoops-and-sorry/</link>
		<comments>http://jordanmessina.com/2010/07/27/whoops-and-sorry/#comments</comments>
		<pubDate>Tue, 27 Jul 2010 20:24:47 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jordanmessina.com/?p=178</guid>
		<description><![CDATA[  
]]></description>
			<content:encoded><![CDATA[<p> <img src='http://jordanmessina.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://jordanmessina.com/2010/07/27/whoops-and-sorry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Django &#8211; Allow users to log in using email rather than username</title>
		<link>http://jordanmessina.com/2010/06/12/django-allow-users-to-log-in-using-email-rather-than-username/</link>
		<comments>http://jordanmessina.com/2010/06/12/django-allow-users-to-log-in-using-email-rather-than-username/#comments</comments>
		<pubDate>Sat, 12 Jun 2010 17:45:17 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jordanmessina.com/?p=145</guid>
		<description><![CDATA[One of the annoying things about Django is that it doesn&#8217;t allow logins via email out of the box if you&#8217;re using their built-in user authentication .  You must create your own authentication backend in order to accomplish this.  However, one of the things I love about Django is the ability to create [...]]]></description>
			<content:encoded><![CDATA[<p>One of the annoying things about Django is that it doesn&#8217;t allow logins via email out of the box if you&#8217;re using their built-in user authentication .  You must create your own authentication backend in order to accomplish this.  However, one of the things I love about Django is the ability to create authentication backends without too much of a headache.  This comes in handy when dealing with things like allowing users to log in via Twitter, Facebook Connect, any OpenID providers, or allowing them to login via email and password.</p>
<p>Django authentication backends are quite simple, essentially whenever you call the <code>django.contrib.auth.authenticate()</code> function, Django uses the authenticate method in any of the classes specified by the <code>AUTHENTICATION_BACKENDS</code> tuple set in your settings.py.  If one of the classes fails to authenticate the user, Django moves on to the next one until either one successfully returns a user object or there are no other backends to attempt, in which case it results in a failed login.  A very simple authentication backend which allows users to login via email rather than username is the following code in backends.py:<br />
<code><br />
from django.conf import settings<br />
from django.contrib.auth.models import User</p>
<p>class EmailModelBackend(object):<br />
&nbsp;&nbsp;&nbsp;&nbsp;def authenticate(self, username=None, password=None):<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;kwargs = {'email': username}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;try:<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;user = User.objects.get(**kwargs)<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if user.check_password(password):<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return user<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;except User.DoesNotExist:<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return None</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;def get_user(self, user_id):<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;try:<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return User.objects.get(pk=user_id)<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;except User.DoesNotExist:<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return None<br />
</code></p>
<p>And you simply need to add to your settings.py:<br />
<code><br />
AUTHENTICATION_BACKENDS = (<br />
'path.to.this.backends.EmailModelBackend',<br />
'django.contrib.auth.backends.ModelBackend',<br />
)<br />
</code></p>
<p>I generally place my backends in whatever app I create to store extra user info, but you can put it anywhere, just make sure it&#8217;s in your PYTHONPATH.</p>
]]></content:encoded>
			<wfw:commentRss>http://jordanmessina.com/2010/06/12/django-allow-users-to-log-in-using-email-rather-than-username/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Django 1.2 &#8211; CSRF verification failed. Request aborted.</title>
		<link>http://jordanmessina.com/2010/05/24/django-1-2-csrf-verification-failed/</link>
		<comments>http://jordanmessina.com/2010/05/24/django-1-2-csrf-verification-failed/#comments</comments>
		<pubDate>Tue, 25 May 2010 00:25:52 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jordanmessina.com/?p=140</guid>
		<description><![CDATA[I was getting this 403 error today while attempting to make a POST request to a view:
403 Forbidden
CSRF verification failed. Request aborted.
Help
Reason given for failure:
 
CSRF cookie not set.

Hopefully this saves you some time because I sure wasted a lot of mine solving it.  I ended up having to add ‘django.middleware.csrf.CsrfViewMiddleware’, and  ‘django.middleware.csrf.CsrfResponseMiddleware’ to my [...]]]></description>
			<content:encoded><![CDATA[<p>I was getting this 403 error today while attempting to make a POST request to a view:<br />
<code>403 Forbidden</code></p>
<p><code>CSRF verification failed. Request aborted.<br />
Help</code></p>
<p><code>Reason given for failure:</code></p>
<p><code> </code></p>
<p><code>CSRF cookie not set.<br />
</code><br />
Hopefully this saves you some time because I sure wasted a lot of mine solving it.  I ended up having to add ‘django.middleware.csrf.CsrfViewMiddleware’, and  ‘django.middleware.csrf.CsrfResponseMiddleware’ to my MIDDLEWARE_CLASSES in settings.py and my problems were solved.  All I had to say was mutha eff.  Django also was no help with their debug.  My MIDDLEWARE_CLASSES now looks like:<br />
<code> </code><br />
<code>MIDDLEWARE_CLASSES = (<br />
'django.middleware.common.CommonMiddleware',<br />
'django.contrib.sessions.middleware.SessionMiddleware',<br />
'django.middleware.csrf.CsrfViewMiddleware',<br />
'django.middleware.csrf.CsrfResponseMiddleware',<br />
'django.contrib.auth.middleware.AuthenticationMiddleware',<br />
'django.contrib.messages.middleware.MessageMiddleware',<br />
)</code></p>
<p>Hope this helps.</p>
]]></content:encoded>
			<wfw:commentRss>http://jordanmessina.com/2010/05/24/django-1-2-csrf-verification-failed/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Duke vs. West Virginia NCAA Butler and Huggins getting close</title>
		<link>http://jordanmessina.com/2010/04/03/duke-vs-west-virginia-ncaa-butler-and-huggins-getting-close/</link>
		<comments>http://jordanmessina.com/2010/04/03/duke-vs-west-virginia-ncaa-butler-and-huggins-getting-close/#comments</comments>
		<pubDate>Sun, 04 Apr 2010 03:07:27 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
				<category><![CDATA[Funny]]></category>

		<guid isPermaLink="false">http://jordanmessina.com/?p=124</guid>
		<description><![CDATA[Wow I&#8217;ve never been so uncomfortable watching a basketball game before&#8230;

]]></description>
			<content:encoded><![CDATA[<p>Wow I&#8217;ve never been so uncomfortable watching a basketball game before&#8230;<br />
<object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/0oK_feFKolQ&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/0oK_feFKolQ&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://jordanmessina.com/2010/04/03/duke-vs-west-virginia-ncaa-butler-and-huggins-getting-close/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Super Duper Fast Nexus One Review</title>
		<link>http://jordanmessina.com/2010/03/27/my-super-duper-fast-nexus-one-review/</link>
		<comments>http://jordanmessina.com/2010/03/27/my-super-duper-fast-nexus-one-review/#comments</comments>
		<pubDate>Sat, 27 Mar 2010 21:32:29 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
				<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://jordanmessina.com/?p=120</guid>
		<description><![CDATA[
You don&#8217;t realize having the ability to run apps in the background is a necessity with a smart phone until you have it.  Honestly, I&#8217;m not going back to the iPhone until it gets that feature.
]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/2w25njFuq0I&amp;hl=en_US&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="385" src="http://www.youtube.com/v/2w25njFuq0I&amp;hl=en_US&amp;fs=1&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>You don&#8217;t realize having the ability to run apps in the background is a necessity with a smart phone until you have it.  Honestly, I&#8217;m not going back to the iPhone until it gets that feature.</p>
]]></content:encoded>
			<wfw:commentRss>http://jordanmessina.com/2010/03/27/my-super-duper-fast-nexus-one-review/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A University That Really Gets It</title>
		<link>http://jordanmessina.com/2010/03/27/a-university-that-really-gets-it/</link>
		<comments>http://jordanmessina.com/2010/03/27/a-university-that-really-gets-it/#comments</comments>
		<pubDate>Sat, 27 Mar 2010 13:32:32 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
				<category><![CDATA[Business]]></category>

		<guid isPermaLink="false">http://jordanmessina.com/?p=113</guid>
		<description><![CDATA[
Yesterday I made the trip from Pittsburgh to Syracuse to attend the Syracuse University iSchool&#8217;s SXSW Report (and to see some family, but that doesn&#8217;t make it sound as cool).  I really had no idea who these students were or why they were doing this presentation nearly a week after SXSW but I figured I&#8217;d [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-116" title="SXSW Report" src="http://jordanmessina.com/wp-content/uploads/2010/03/Picture-11.png" alt="" width="202" height="115" /></p>
<p>Yesterday I made the trip from Pittsburgh to Syracuse to attend the <a title="Syracuse University iSchool" href="http://ischool.syr.edu/" target="_self">Syracuse University iSchool&#8217;s</a> SXSW Report (and to see some family, but that doesn&#8217;t make it sound as cool).  I really had no idea who these students were or why they were doing this presentation nearly a week after SXSW but I figured I&#8217;d give it a shot.  I was greeted by cool people and beer so I knew it wasn&#8217;t going to be a complete bust.  Come to find out, the SU iSchool actually paid for the <em>entire</em> trip for these students because they recognized how important the event was.  That completely blew me away, an educational institution that realized how important and relevant SXSW was for its students that it sponsored them 100%.</p>
<p>Kate Holloway (@<a title="KatiePunkin" hreflang="en" href="http://twitter.com/KatiePunkin">KatiePunkin</a>), Shay Colson (@<a title="shaycolson" hreflang="en" href="http://twitter.com/shaycolson">shaycolson</a>), and Andrew Farah (@<a title="andrewfarah" hreflang="en" href="http://twitter.com/andrewfarah">andrewfarah</a>) did a great job sharing their experiences of SXSW.  As an entrepreneur I was happy to hear them say that they recognized how many small companies that were there that were simply building and hustling as opposed to going after large amounts of investment to start their venture.  They said that seemed to be the theme with most of the companies, a lot of them were bootstrapped or had received a very small amount of funding to start up.  I think a lot of people are finally realizing how cheap it is to start a business and aren’t writing huge business plans, instead choosing to get their hands dirty and build it themselves.  They also confirmed that Mark Cuban is indeed an asshole all the time, not just at Mavericks games and on his blog.</p>
<p>It was really great meeting the people from the <a title="iVenture Upstate Forum" href="http://iventureupstate.ning.com" target="_self">iVenutre Upstate Forum</a>, I think there is a great thing going on there and I hope to see a lot more people start to contribute to the discussions.  I must say my heart has officially moved to Pittsburgh but I like to do anything I can to help create opportunities like the one I have been given from Alphalab in Syracuse, and last night proved that the right things are being done for that to happen.</p>
<p>Again, it was great meeting everyone last night and thank you for opening the event up to the public.  I really enjoyed myself.</p>
]]></content:encoded>
			<wfw:commentRss>http://jordanmessina.com/2010/03/27/a-university-that-really-gets-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is Google Wave?</title>
		<link>http://jordanmessina.com/2009/12/12/what-is-google-wave/</link>
		<comments>http://jordanmessina.com/2009/12/12/what-is-google-wave/#comments</comments>
		<pubDate>Sun, 13 Dec 2009 00:21:44 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
				<category><![CDATA[Funny]]></category>

		<guid isPermaLink="false">http://jordanmessina.com/?p=102</guid>
		<description><![CDATA[I can&#8217;t tell you how many people have asked me this over the last couple of months.  So for many people I simply say that I&#8217;ll give them an invite and they can figure it out themselves.  Unfortunately I still end up getting this question:

I don&#8217;t actually think Google Wave is worthless, it&#8217;s just the [...]]]></description>
			<content:encoded><![CDATA[<p>I can&#8217;t tell you how many people have asked me this over the last couple of months.  So for many people I simply say that I&#8217;ll give them an invite and they can figure it out themselves.  Unfortunately I still end up getting this question:</p>
<p style="text-align: center;"><a href="http://jordanmessina.com/images/googleWave.jpg"><img class="aligncenter" title="Google Wave" src="http://jordanmessina.com/images/googleWave.jpg" alt="Google Wave" width="529" height="302" /></a></p>
<p style="text-align: left;">I don&#8217;t actually think Google Wave is worthless, it&#8217;s just the fact that no one has found any practical use that allows everyone to see the value in it.</p>
]]></content:encoded>
			<wfw:commentRss>http://jordanmessina.com/2009/12/12/what-is-google-wave/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>This guy&#8217;s life sucks&#8230;</title>
		<link>http://jordanmessina.com/2009/12/11/this-guys-life-sucks/</link>
		<comments>http://jordanmessina.com/2009/12/11/this-guys-life-sucks/#comments</comments>
		<pubDate>Sat, 12 Dec 2009 02:54:08 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
				<category><![CDATA[Funny]]></category>

		<guid isPermaLink="false">http://jordanmessina.com/?p=99</guid>
		<description><![CDATA[Seriously though, he does Lotus Notes support for my current employer.  Lotus Notes is the worst piece of shiz I&#8217;ve ever used in my life.  The application has it&#8217;s own executable which is unofficially recommended by all IBMers that I have talked to which kills all processes that have loaded the notes DLLs.  There have [...]]]></description>
			<content:encoded><![CDATA[<p>Seriously though, he does Lotus Notes support for my current employer.  Lotus Notes is the worst piece of shiz I&#8217;ve ever used in my life.  The application has it&#8217;s own executable which is unofficially recommended by all IBMers that I have talked to which kills all processes that have loaded the notes DLLs.  There have been coworkers that have attempted to pay the Help Desk to give them Outlook back and they had to assure the Help Desk that they weren&#8217;t joking.  I cannot wait for the day that I never have to use this joke of a product again.</p>
<p style="text-align: center;"><a href="http://jordanmessina.com/images/poorGuy.jpg"><img class="aligncenter" title="This Poor Guy" src="http://jordanmessina.com/images/poorGuy.jpg" alt="" width="532" height="439" /></a></p>
<p>Anyone else who absolutely hates Lotus Notes, please check out <a title="I Hate Lotus Notes" href="http://www.ihatelotusnotes.com/" target="_blank">I Hate Lotus Notes</a> where you can vent your frustrations and even buy a T-Shirt to show your anti-support.</p>
]]></content:encoded>
			<wfw:commentRss>http://jordanmessina.com/2009/12/11/this-guys-life-sucks/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Youth Entrepreneurs of Syracuse Conference</title>
		<link>http://jordanmessina.com/2009/11/21/youth-entrepreneurs-of-syracuse-conference/</link>
		<comments>http://jordanmessina.com/2009/11/21/youth-entrepreneurs-of-syracuse-conference/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 23:50:54 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
				<category><![CDATA[Business]]></category>

		<guid isPermaLink="false">http://jordanmessina.com/?p=96</guid>
		<description><![CDATA[I startled myself this afternoon.  I realized as I was pulling into my parent&#8217;s driveway that I hadn&#8217;t listened to the radio on the entire ride home from the YES Conference.  The whole drive I simply thought about what I had just experienced.
I went on the YES Conference Facebook group page last night to see [...]]]></description>
			<content:encoded><![CDATA[<p>I startled myself this afternoon.  I realized as I was pulling into my parent&#8217;s driveway that I hadn&#8217;t listened to the radio on the entire ride home from the <a title="YES Conference" href="http://whitman.syr.edu/eee/yes/" target="_blank">YES Conference</a>.  The whole drive I simply thought about what I had just experienced.</p>
<p>I went on the YES Conference Facebook group page last night to see what type of activity and discussion there was about the event.  To my surprise there was only 23 people in the group, and a mere 4 comments on the wall.  I then started doing Twitter searches with every combination of search words imaginable to see if people were having any discussion about the event on Twitter.  Of course I found nothing again.</p>
<p>So I arrive at the conference today with no idea what to expect.  Walking in I realize there were only around 100 people there, 98% of which are high school students.  This event was &#8220;advertised&#8221; for 12-25 year old aspiring entrepreneurs, and only 2% were 19 or older.  On top of that, there were only 2 students from Syracuse University actually attending the event, and Syracuse University was the one putting on the conference in the first place.  That&#8217;s not to say there weren&#8217;t Students from the Whitman School of Management helping, but I found it very odd that during the keynote speaker these students who are getting &#8220;Entrepreneurship&#8221; degrees (whatever the hell that even means) weren&#8217;t even interested to hear the story of a successful entrepreneur and simply hung out in the common area.</p>
<p>They kicked off the conference by showing Shark Tank (if you like Shark Tank, and I really hope you don&#8217;t, please watch <a title="TWiST" href="http://thisweekinstartups.com/" target="_blank">This Week in Startups</a> instead because Shark Tank is reality TV and isn&#8217;t how things work) and during intermissions they had a fantastic DJ blasting beats forcing you to scream during every conversation which made networking extra easy.</p>
<p>Very disappointing conference, with little to show of what comes out of the EEE program at Syracuse University.  As I&#8217;ve heard many people mention, there are only 2 companies in the last 9 years that are even doing anything right now who came out of the Universities Entrepreneur program.  Not the best track record considering how many come out of the program in the first place.  However, there was some good that came out of the day.  I had the pleasure of meeting some of the smartest young guys who are very motivated and I have no doubt are going to kill it one day.  I wish I knew as much as these guys do now back when I was in high school.  It&#8217;s just very unfortunate that they will most likely be successful anywhere but Syracuse.  It&#8217;s just lost opportunities like these that make Syracuse the dying city it is.</p>
]]></content:encoded>
			<wfw:commentRss>http://jordanmessina.com/2009/11/21/youth-entrepreneurs-of-syracuse-conference/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>What I do at work all day</title>
		<link>http://jordanmessina.com/2009/10/27/what-i-do-at-work-all-day/</link>
		<comments>http://jordanmessina.com/2009/10/27/what-i-do-at-work-all-day/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 00:45:24 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
				<category><![CDATA[Funny]]></category>
		<category><![CDATA[Picture]]></category>

		<guid isPermaLink="false">http://jordanmessina.com/?p=86</guid>
		<description><![CDATA[A lot of people ask me what I do at work all day.  I usually explain to them that I&#8217;m a programmer so I do a lot of computer stuff, really high tech things they just wouldn&#8217;t understand.  They usually start praising me about how smart I am and how they wish they were me [...]]]></description>
			<content:encoded><![CDATA[<p>A lot of people ask me what I do at work all day.  I usually explain to them that I&#8217;m a programmer so I do a lot of computer stuff, really high tech things they just wouldn&#8217;t understand.  They usually start praising me about how smart I am and how they wish they were me and this and that, you know the deal.  But I decided to finally post something that I can refer people to every time I get the question.  So here it is, what I do all day at work&#8230;</p>
<p><a href="http://jordanmessina.com/images/sametime.jpg"><img class="aligncenter" title="What I do at work all day" src="http://jordanmessina.com/images/sametime.jpg" alt="" width="478" height="570" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://jordanmessina.com/2009/10/27/what-i-do-at-work-all-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
