<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.3" -->
<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/"
	>

<channel>
	<title>Total Fail</title>
	<link>http://blog.crspy.net</link>
	<description>A shameless self-promotion of myself</description>
	<pubDate>Fri, 01 Aug 2008 21:34:38 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
	<language>en</language>
			<item>
		<title>MyBrackets - A New NFL and College Football Pick &#8216;Em Site</title>
		<link>http://blog.crspy.net/2008/08/01/mybrackets-a-new-nfl-and-college-football-pick-em-site/</link>
		<comments>http://blog.crspy.net/2008/08/01/mybrackets-a-new-nfl-and-college-football-pick-em-site/#comments</comments>
		<pubDate>Fri, 01 Aug 2008 21:34:38 +0000</pubDate>
		<dc:creator>Adam Podolnick</dc:creator>
		
		<category><![CDATA[Projects]]></category>

		<category><![CDATA[Ruby on Rails]]></category>

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

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

		<guid isPermaLink="false">http://blog.crspy.net/2008/08/01/mybrackets-a-new-nfl-and-college-football-pick-em-site/</guid>
		<description><![CDATA[Last year I created a site called shackbrackets as an attempt to build a simple online sporting game. I found that games like fantasy football were too complicated and time consuming for my tastes. I liked the idea of a simple pick &#8216;em game and was unhappy with some of the implementations out there. ESPN.com&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>Last year I created a site called shackbrackets as an attempt to build a simple online sporting game. I found that games like fantasy football were too complicated and time consuming for my tastes. I liked the idea of a simple pick &#8216;em game and was unhappy with some of the implementations out there. ESPN.com&#8217;s game, for instance, only had a limited number of college football games to choose from where as I wanted to pick every single game. I also had a grand vision to have pick &#8216;em games from every single sport and have a meta game where the person with the most points from all them games would win a large prize. I sat down and programmed the site in PHP and a whole bunch of people (well around 100) signed up and played. I was pretty happy with how everything turned out.</p>
<p>A few months ago, I decided to rewrite the site and re-brand it as well. I had originally bought the domain to create a march madness bracket game for the community at <a href="http://www.shacknews.com">shacknews</a> but didn&#8217;t have the time to build a site before the championship began. This time around, I wanted the site to be more generic and appeal to a wider audience so I could perhaps make more money from ad revenue and thus give out bigger prizes. I re-wrote the site, using Ruby on Rails this time, and focused on just football (since a post-mortem from last year reveild that those were the games most people were interested in anyway).</p>
<p>Some new features this year:</p>
<ul>
<li>Revamped Team News Pages: The news pages grab news from all over the internet now and also aggregates video from a variety of different sites as well. <a href="http://www.mybrackets.net/team/NFL/nyj">Check it out!</a></li>
<li>Personalized homepage: You can now add a team as one of your favorite teams. When you do so, you&#8217;ll get a personalized homepage with the news and videos from all of your favorite teams at a url like http://adam.mybrackets.net. (this is still under development).</li>
<li>College Football now only has games from the AP top 25. People complained that there were too many games for college football so now there will be at most 25 games a week. To add a level of difficulty the picks will be based on the spread. If you pick the team that is favored you are picking on them to beat the spread. Otherwise pick the other underdog.</li>
<li>I&#8217;m thinking about adding the ability to create groups and adding friend to make it kind of a social networking app since it wouldn&#8217;t take very long to do</li>
</ul>
<p>That about covers the changes for this year so go ahead and sign up now! <strong><a href="http://www.mybrackets.net">http://www.mybrackets.net</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.crspy.net/2008/08/01/mybrackets-a-new-nfl-and-college-football-pick-em-site/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Tweenlite and Flex SDK</title>
		<link>http://blog.crspy.net/2008/06/04/tweenlite-and-flex-sdk/</link>
		<comments>http://blog.crspy.net/2008/06/04/tweenlite-and-flex-sdk/#comments</comments>
		<pubDate>Thu, 05 Jun 2008 02:34:06 +0000</pubDate>
		<dc:creator>Adam Podolnick</dc:creator>
		
		<category><![CDATA[Actionscript]]></category>

		<guid isPermaLink="false">http://blog.crspy.net/2008/06/04/tweenlite-and-flex-sdk/</guid>
		<description><![CDATA[I don&#8217;t use the Flash IDE to do any of my actionscript programming so I use the free Flex SDK to compile all of my code.
The other day I was having a hard time getting TweenLite, lightweight and fast tweening engine, to work because I was trying to import the easing functions like this:

import fl.transitions.easing.*;

It [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t use the Flash IDE to do any of my actionscript programming so I use the free <a href="http://opensource.adobe.com/wiki/display/flexsdk/Flex+SDK">Flex SDK</a> to compile all of my code.</p>
<p>The other day I was having a hard time getting <a href="http://blog.greensock.com/tweenliteas3/">TweenLite</a>, lightweight and fast tweening engine, to work because I was trying to import the easing functions like this:</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript"><span style="color: #0066CC;">import</span> fl.<span style="color: #006600;">transitions</span>.<span style="color: #006600;">easing</span>.<span style="color: #006600;">*</span>;</pre></div></div>

<p>It turns out that all of the fl packages are specific to the Flash IDE and are not available in the Flex SDK. I&#8217;m aware that there are several workarounds to get them to work (<a href="http://www.laflash.org/node/486">here</a>, for instance), but I found that the easiest way to get the easing functions to work is just to substitute the import statement above with the following:</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript"><span style="color: #0066CC;">import</span> mx.<span style="color: #006600;">effects</span>.<span style="color: #006600;">easing</span>.<span style="color: #006600;">*</span>;</pre></div></div>

<p>You will have access to almost all of the same easing functions but you&#8217;ll have to check the <a href="http://livedocs.adobe.com/flex/2/langref/mx/effects/easing/package-detail.html">documentation</a> to make sure of the proper easings.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.crspy.net/2008/06/04/tweenlite-and-flex-sdk/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The BCS is Broken.</title>
		<link>http://blog.crspy.net/2008/01/08/the-bcs-is-broken/</link>
		<comments>http://blog.crspy.net/2008/01/08/the-bcs-is-broken/#comments</comments>
		<pubDate>Tue, 08 Jan 2008 18:27:01 +0000</pubDate>
		<dc:creator>Adam Podolnick</dc:creator>
		
		<category><![CDATA[College Football]]></category>

		<guid isPermaLink="false">http://blog.crspy.net/2008/01/08/the-bcs-is-broken/</guid>
		<description><![CDATA[The BCS is broken. I think this season, more than any other in recent history (except for maybe 2004), just goes to show how poorly the BCS works. The major BCS Bowls were all horrible match ups. The Rose Bowl featured the Pac 10 champions, The USC Trojans vs. the Fighting Illini. For some reason, [...]]]></description>
			<content:encoded><![CDATA[<p>The BCS is broken. I think this season, more than any other in recent history (except for maybe 2004), just goes to show how poorly the BCS works. The major BCS Bowls were all horrible match ups. The Rose Bowl featured the Pac 10 champions, The USC Trojans vs. the Fighting Illini. For some reason, the Rose Bowl commission decided to preserve the Big 10 vs. Pac 10 match up instead of picking a more compelling showdown in USC vs. Georgia. I couldn&#8217;t really understand this decision before the game and after the 32 point blowout, I still am confounded by their choice. The Sugar Bowl was also pretty confusing. While Hawaii did manage to navigate the regular season and was the only team to do so, I&#8217;m not sure they really deserved to be in that game. I think after the shocking upset of Oklahoma by Bosie State people feel obligated to give some of the non-BCS conference teams a chance. After Hawaii&#8217;s 31 point loss to Georgia, I think it might be a while before another non-BCS team makes it to a BCS bowl game. West Virginia beat Oklahoma pretty handily in another uninteresting match up and the Orange Bowl featured two really good defenses and two mediocre offenses for yet another boring game.</p>
<p>The National Championship game, on the other hand, was slightly more interesting.Â  The game was exciting and there were lot of big plays by both teams on both sides of the ball. When it came down to it though, LSU was a much better team. What the National Championship failed to do, in my mind anyway, was to crown a true national champion. Ohio State really hadn&#8217;t played anyone. Their only loss was to Illinois, a team that was utterly dismantled by USC in the Rose Bowl. As far as I&#8217;m concerned, the Big 10 isn&#8217;t a very strong conference and Ohio State&#8217;s number one ranking was fairly unwarranted. LSU certainly didn&#8217;t play the best team in the nation and therefore I think it&#8217;s hard to crown them as the national champions.</p>
<p>I&#8217;m not even asking for a playoff since I know it&#8217;ll be a long time before we get on. I&#8217;d just like to see better match ups in these bowl games. USC vs. Georgia would have been one hell of a game. And any of the two loss teams probably could have provided a much better fight than Ohio State did against LSU. I think with a few small tweaks to the ranking system of the BCS we could all see much better match ups which, until we have a playoff system, would keep me entertained enough to be happy.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.crspy.net/2008/01/08/the-bcs-is-broken/feed/</wfw:commentRss>
		</item>
		<item>
		<title>USC Womens Soccer!</title>
		<link>http://blog.crspy.net/2007/12/09/usc-womens-soccer/</link>
		<comments>http://blog.crspy.net/2007/12/09/usc-womens-soccer/#comments</comments>
		<pubDate>Sun, 09 Dec 2007 21:09:48 +0000</pubDate>
		<dc:creator>Adam Podolnick</dc:creator>
		
		<category><![CDATA[Soccer]]></category>

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

		<guid isPermaLink="false">http://blog.crspy.net/2007/12/09/usc-womens-soccer/</guid>
		<description><![CDATA[The USC Women&#8217;s Soccer team is the new 2007 National Champion!
USC defeated FSU 2-0 to win the Womens College Cup! Congratulations and Fight On!
]]></description>
			<content:encoded><![CDATA[<p><span class="Apple-style-span" style="font-weight: bold">The USC Women&#8217;s Soccer team is the new 2007 National Champion!</span></p>
<p>USC defeated FSU 2-0 to win the Womens College Cup! Congratulations and Fight On!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.crspy.net/2007/12/09/usc-womens-soccer/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Congratulations USC Women&#8217;s Soccer Team</title>
		<link>http://blog.crspy.net/2007/12/09/congratulations-usc-womens-soccer-team/</link>
		<comments>http://blog.crspy.net/2007/12/09/congratulations-usc-womens-soccer-team/#comments</comments>
		<pubDate>Sun, 09 Dec 2007 06:36:59 +0000</pubDate>
		<dc:creator>Adam Podolnick</dc:creator>
		
		<category><![CDATA[Soccer]]></category>

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

		<guid isPermaLink="false">http://blog.crspy.net/2007/12/09/congratulations-usc-womens-soccer-team/</guid>
		<description><![CDATA[Â The USC Women&#8217;s Soccer team will be competing in it&#8217;s first ever College Cup this Sunday. USC defeated UCLA in a semi-final match on friday to advance to the  final. Read more here. The game will be broadcast on ESPN2 at 2pm EST. I know I will be watching. Congratulations, good luck, and Fight [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://blog.crspy.net/wp-content/uploads/2007/12/ncaa_a_rodriguez_200.thumbnail.jpg" alt="USC Womens Soccer" class="alignleft" />Â The USC Women&#8217;s Soccer team will be competing in it&#8217;s first ever College Cup this Sunday. USC defeated UCLA in a semi-final match on friday to advance to the  final. Read more <a href="http://sports.espn.go.com/ncaa/columns/story?columnist=hays_graham&amp;id=3146317" target="_blank">here</a>. The game will be broadcast on ESPN2 at 2pm EST. I know I will be watching. Congratulations, good luck, and Fight On!
<div style="clear:both"></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.crspy.net/2007/12/09/congratulations-usc-womens-soccer-team/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Dog vs Roomba</title>
		<link>http://blog.crspy.net/2007/12/08/dog-vs-roomba/</link>
		<comments>http://blog.crspy.net/2007/12/08/dog-vs-roomba/#comments</comments>
		<pubDate>Sun, 09 Dec 2007 02:39:18 +0000</pubDate>
		<dc:creator>Adam Podolnick</dc:creator>
		
		<category><![CDATA[Pelle]]></category>

		<guid isPermaLink="false">http://blog.crspy.net/2007/12/08/dog-vs-roomba/</guid>
		<description><![CDATA[My sister&#8217;s dog, Pelle, happens to hateÂ vacuumÂ cleaners. From what I can tell, this is pretty normal amongst dogs. I&#8217;ve always wondered what Pelle would think of my Roomba. Would it not bother him as much as a regular vacuum cleaner? Would he attack it the second it turned on? Well today was my lucky day. [...]]]></description>
			<content:encoded><![CDATA[<p>My sister&#8217;s dog, Pelle, happens to hateÂ vacuumÂ cleaners. From what I can tell, this is pretty normal amongst dogs. I&#8217;ve always wondered what Pelle would think of my Roomba. Would it not bother him as much as a regular vacuum cleaner? Would he attack it the second it turned on? Well today was my lucky day. My sister came over to my apartment with Pelle and I finally remembered to try turning on the Roomba while he was around. This is what happened:
<p style="text-align: center"><embed src="http://www.jeroenwijering.com/embed/mediaplayer.swf" width="360" height="290" allowfullscreen="true" allowscriptaccess="always" flashvars="&amp;file=http://crspy.net/MVI_0126.flv&amp;height=290&amp;image=http://crspy.net/MVI_0126.jpg&amp;width=360"></embed></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.crspy.net/2007/12/08/dog-vs-roomba/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Gadget Crazy</title>
		<link>http://blog.crspy.net/2007/12/04/gadget-crazy/</link>
		<comments>http://blog.crspy.net/2007/12/04/gadget-crazy/#comments</comments>
		<pubDate>Wed, 05 Dec 2007 02:06:42 +0000</pubDate>
		<dc:creator>Adam Podolnick</dc:creator>
		
		<category><![CDATA[Gadgets]]></category>

		<guid isPermaLink="false">http://blog.crspy.net/2007/12/04/gadget-crazy/</guid>
		<description><![CDATA[I&#8217;ve kind of been on a gadget craze today. First, I decided it was time to purchase an ultra-compact digital camera toÂ complement my DSLR. I wanted something really small and light that I couldÂ carry around in my pocket every day. I decided to go with the Canon Powershot SD1000. Not only was itÂ relativelyÂ cheap ($175.99), but [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://ecx.images-amazon.com/images/I/41D-2AonSrL._AA280_.jpg" class="alignleft" style="width: 140px; height: 140px" height="140" width="140" />I&#8217;ve kind of been on a gadget craze today. First, I decided it was time to purchase an ultra-compact digital camera toÂ complement my DSLR. I wanted something really small and light that I couldÂ carry around in my pocket every day. I decided to go with the Canon Powershot SD1000. Not only was itÂ relativelyÂ cheap ($175.99), but it was one of the smallest and lightest cameras I could find. It should arrive tomorrow so I&#8217;ll write up a review after I play with it for a while.Â </p>
<p><img src="http://edge.macworld.com/2007/09/images/content/vudu.jpg" class="alignright" width="140" />IÂ also was accepted into the Vudu Evangelist program which allowed me toÂ acquireÂ a Vudu box at a heavily discounted rate in exchange for, well,Â evangelizingÂ the product. Vudu is a Â product that allows you to both rent and purchase movies and stream them over the internet to yourÂ televisionÂ over a peer to peer network. I&#8217;ve heard very good things about the product so I can&#8217;t wait to get it hooked up to my TV. If you want to read more about vudu,Â <a href="http://www.vudu.com" title="Vudu" target="_blank">click here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.crspy.net/2007/12/04/gadget-crazy/feed/</wfw:commentRss>
		</item>
		<item>
		<title>VisorLog version 1.0 release</title>
		<link>http://blog.crspy.net/2007/08/25/visor-version-10-release/</link>
		<comments>http://blog.crspy.net/2007/08/25/visor-version-10-release/#comments</comments>
		<pubDate>Sat, 25 Aug 2007 04:32:16 +0000</pubDate>
		<dc:creator>Adam Podolnick</dc:creator>
		
		<category><![CDATA[Javascript]]></category>

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

		<guid isPermaLink="false">http://blog.crspy.net/2007/08/25/visor-version-10-release/</guid>
		<description><![CDATA[Tonight I&#8217;m pleased to announce the release of VisorLog. VisorLog is a simple and unobtrusive javascript logger. My inspiration for this project came from a program for the mac called Visor (Visor provides a systemwide terminal window accessible via a hotkey, much like the consoles found in games such as Quake.) Anyway, It&#8217;s pretty cool [...]]]></description>
			<content:encoded><![CDATA[<p align="justify">Tonight I&#8217;m pleased to announce the release of VisorLog. VisorLog is a simple and unobtrusive javascript logger. My inspiration for this project came from a program for the mac called <a href="http://docs.blacktree.com/visor/visor">Visor</a> (Visor provides a systemwide terminal window accessible via a hotkey, much like the consoles found in games such as Quake.) Anyway, It&#8217;s pretty cool and easy to use. All you need to do is include the .js file and you&#8217;re set to go.</p>
<p>To log a message to the console, you just need to call a function like this:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="javascript">VISOR.<span style="color: #006600;">logger</span>.<span style="color: #006600;">log</span><span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">'debug'</span>, <span style="color: #3366CC;">'this is a debug message'</span><span style="color: #66cc66;">&#41;</span>;</pre></td></tr></table></div>

<p>For more information about VisorLog, check out it&#8217;s <a href="http://blog.crspy.net/projects/visorlog">project page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.crspy.net/2007/08/25/visor-version-10-release/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ShackBrackets.com Launch</title>
		<link>http://blog.crspy.net/2007/08/24/shackbracketscom-launch/</link>
		<comments>http://blog.crspy.net/2007/08/24/shackbracketscom-launch/#comments</comments>
		<pubDate>Fri, 24 Aug 2007 20:21:51 +0000</pubDate>
		<dc:creator>Adam Podolnick</dc:creator>
		
		<category><![CDATA[College Football]]></category>

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

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

		<guid isPermaLink="false">http://blog.crspy.net/2007/08/24/shackbracketscom-launch/</guid>
		<description><![CDATA[Since the College Football season  is drawing very near,  I  figured it was time to mention that I&#8217;ve launched a new site called ShackBrackets.com. The overall plan for the site is to have every kind of fantasy / pick &#8216;em game imaginable and allow for scoring to work across all games. For [...]]]></description>
			<content:encoded><![CDATA[<p>Since the College Football season  is drawing very near,  I  figured it was time to mention that I&#8217;ve launched a new site called <a href="http://www.shackbrackets.com">ShackBrackets.com</a>. The overall plan for the site is to have every kind of fantasy / pick &#8216;em game imaginable and allow for scoring to work across all games. For now, however, I just wrote the College Football Pick &#8216;Em game. I&#8217;ll be giving a prize (in the form of an Amazon.com gift certificate) to the winner of the game. The value of the prize will be based on the revenue generated from the google ads as well as commission from ticket sales from the site. So the more you click on ads and buy tickets the higher the value of the prize will be.</p>
<p>Check out a video demo of the site after the jump or  <a href="http://www.shackbrackets.com">sign up now! </a></p>
<p> <a href="http://blog.crspy.net/2007/08/24/shackbracketscom-launch/#more-16" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.crspy.net/2007/08/24/shackbracketscom-launch/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Greta</title>
		<link>http://blog.crspy.net/2007/07/22/greta/</link>
		<comments>http://blog.crspy.net/2007/07/22/greta/#comments</comments>
		<pubDate>Sun, 22 Jul 2007 07:50:58 +0000</pubDate>
		<dc:creator>Adam Podolnick</dc:creator>
		
		<category><![CDATA[Greta]]></category>

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

		<guid isPermaLink="false">http://blog.crspy.net/?p=10</guid>
		<description><![CDATA[My parents adopted a dog while I was home for my cousin Rachel&#8217;s wedding. Greta, who we believe is a mix between a Husky and a Shepard , is one of the cuter dogs I&#8217;ve seen. She&#8217;s only a puppy but it&#8217;s still incredibly fun to play with her. I&#8217;ve been taking a lot of [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://gallery.crspy.net/7-19-2007/DSC_0119.jpg.php" target="_blank"><img src="http://gallery.crspy.net/cache/7-19-2007/DSC_0119.jpg_100_cw85_ch85.jpg" title="Greta" alt="Greta" align="left" height="85" hspace="10" width="85" /></a>My parents adopted a dog while I was home for my cousin Rachel&#8217;s wedding. Greta, who we believe is a mix between a Husky and a Shepard , is one of the cuter dogs I&#8217;ve seen. She&#8217;s only a puppy but it&#8217;s still incredibly fun to play with her. I&#8217;ve been taking a lot of pictures of her which I have been uploading to my <a href="http://gallery.crspy.net" target="_blank">gallery</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.crspy.net/2007/07/22/greta/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
