<?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 &#187; Jordan</title>
	<atom:link href="http://jordanmessina.com/author/admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://jordanmessina.com</link>
	<description></description>
	<lastBuildDate>Fri, 20 Aug 2010 17:04:06 +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>I&#8217;m calling myself out</title>
		<link>http://jordanmessina.com/2010/08/20/im-calling-myself-out/</link>
		<comments>http://jordanmessina.com/2010/08/20/im-calling-myself-out/#comments</comments>
		<pubDate>Fri, 20 Aug 2010 17:04:06 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jordanmessina.com/?p=182</guid>
		<description><![CDATA[Last night while I was in the car with my roommate, I was discussing how if I had just kept up with a few projects that I had started in the past that I&#8217;d probably have some mild success and traction with at least one of them by now.  I just finished up Rework [...]]]></description>
			<content:encoded><![CDATA[<p>Last night while I was in the car with my roommate, I was discussing how if I had just kept up with a few projects that I had started in the past that I&#8217;d probably have some mild success and traction with at least one of them by now.  I just finished up Rework by 37signals and I think I got the most out of the very last page of the book from the essay about Inspiration.  Inspiration is perishable, when you have it you work your ass off nonstop until you literally can&#8217;t work anymore.  It&#8217;s an amazing feeling and such a high to be working on something that you truly believe can change the world.  As my roommate says, it&#8217;s 20 hours of work for 10 minutes of fun and that&#8217;s what all my past projects have seemed to end as, only 10 minutes of fun.</p>
<p>So I realized the problem is that once the inspiration goes away, and it always seems to run out at some point, I end with this &#8216;meh&#8217; feeling and things just aren&#8217;t as fun as they use to be.  It sucks to admit this happens, and I&#8217;m writing this blog post to help myself from making lies in believing that I&#8217;m still pumped about things I&#8217;ve started earlier and convincing myself that I&#8217;m just too busy at the moment to put time into it.  Instead, I need to just suck it up and get back to work on things that I&#8217;ve started until they&#8217;re finished.  If I was excited enough at one point to put so much work into it, I might as well complete it and stick to it so that it at least has a shot.  My goal with any project of mine is to just have people use it and appreciate it, not to make millions and cash out quick.  So quitting is obviously the worst thing I can do, but also the easiest thing to do, because I can always make excuses as to why it would never have worked anyway.  </p>
<p>Some of the past projects I&#8217;ve quit include a web app directory in 2007 that I didn&#8217;t see a market for after it was all built and complete.  It was also designed terribly code wise so changes took far too long, never try to roll your own framework if you really don&#8217;t know what you&#8217;re doing.  Now I see about 5 or 6 clones that all have a decent user base and I think, that could have been me.</p>
<p>I also had a podcast with two friends that was running for about a month back in 2008.  We had about 10 listeners by episode 5 and since we were expecting overnight success and didn&#8217;t get it we decided that &#8220;we just don&#8217;t have the time to keep doing this.&#8221;</p>
<p>Finally, I created a Craigslist alert app which, after spamming twitter quite a bit, ended up with about 100 happy users.  I saw some opportunity to make it even better so I started from scratch and started developing what I would describe now as Notifo + Twilio + other cool features.  Neither of these services existed at the time, and I had a family friend who is an amazing web designer on board for equity to help out.  I had some personal issues that set me back about 6 months and by the time I came around I saw too many competitors in the space and decided to stop development and not even give it a shot.</p>
<p>So after thinking last night about all these things, I ended up little disappointed with myself, and here I am writing a blog post to make sure I never make these mistakes again.  So I&#8217;m asking you to keep me in check, if I say I have a project to share with you, hound me until I release it.  </p>
]]></content:encoded>
			<wfw:commentRss>http://jordanmessina.com/2010/08/20/im-calling-myself-out/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>16</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>
