<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Jack of All Trades Web Development</title><description>Marc Grabanski's web development adventures.</description><link>http://marcgrabanski.com/</link><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/allTrades" type="application/rss+xml" /><feedburner:emailServiceId>allTrades</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item><title>jQuery Enlightenment is a Worthy Purchase</title><link>http://feedproxy.google.com/~r/allTrades/~3/hNDzr1I80kk/jquery-enlightenment</link><category><![CDATA[jQuery]]></category><category><![CDATA[Books]]></category><description>&lt;p&gt;Category: &lt;a href="/category/javascript-jquery" base="1"&gt;JavaScript &amp;amp; jQuery&lt;/a&gt; Tags: &lt;a href="/tag/jquery"&gt;jQuery&lt;/a&gt;, &lt;a href="/tag/books"&gt;Books&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://marcgrabanski.com/img/jquery-enlightenment.jpg" /&gt;&lt;/p&gt;
&lt;p&gt;If you haven't heard of or read &lt;a href="http://jqueryenlightenment.com/"&gt;jQuery Enlightenment&lt;/a&gt;, then you probably should go subscribe to more jQuery blogs, this one has been posted everywhere. Simply because this book is an excellent read with excellent examples, worth the $15 purchase. It has live links to code examples you might need down the road.&lt;/p&gt;
&lt;p&gt;And no, I wasn't paid to do this post. All the dough goes straight to Cody Lindley on this self-published e-book, and he deserves every penny. Go Cody go! *cheers*&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/allTrades?a=hNDzr1I80kk:Ea-mQyY1c6U:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/allTrades?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/allTrades?a=hNDzr1I80kk:Ea-mQyY1c6U:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/allTrades?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/allTrades?a=hNDzr1I80kk:Ea-mQyY1c6U:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/allTrades?i=hNDzr1I80kk:Ea-mQyY1c6U:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description><author>m@marcgrabanski.com (Marc Grabanski)</author><pubDate>Mon, 26 Oct 2009 13:58:10 -0700</pubDate><guid isPermaLink="false">http://marcgrabanski.com/article/jquery-enlightenment</guid><feedburner:origLink>http://marcgrabanski.com/article/jquery-enlightenment</feedburner:origLink></item><item><title>Tips to Secure Your Web Hosting Server</title><link>http://feedproxy.google.com/~r/allTrades/~3/HoxhXBb58F0/securing-your-web-hosting-server-tips</link><category><![CDATA[Security]]></category><category><![CDATA[Linux]]></category><description>&lt;p&gt;Category: &lt;a href="/category/linux-server" base="1"&gt;Linux &amp;amp; Server Admin&lt;/a&gt; Tags: &lt;a href="/tag/security"&gt;Security&lt;/a&gt;, &lt;a href="/tag/linux"&gt;Linux&lt;/a&gt;&lt;/p&gt;&lt;p&gt;A friend of mine, &lt;a href="http://www.elliotswan.com/"&gt;Elliot Swan&lt;/a&gt; got hacked - one of his JavaScript files had been modified to contain some sort of advertisement. Here are a few tips you can do to lock your server down, starting with simple things and getting more advanced at the bottom.&lt;/p&gt;
&lt;p&gt;&lt;img height="137" width="275" src="http://marcgrabanski.com/img/internet-security.gif" alt="" /&gt;&lt;/p&gt;
&lt;ol&gt;
    &lt;li&gt;Change your web hosting password.&lt;/li&gt;
    &lt;li&gt;Change your SSH / root login username (if possible) and password.&lt;/li&gt;
    &lt;li&gt;Change your FTP username (if possible) and password.&lt;/li&gt;
    &lt;li&gt;If you changed your FTP username, chown the files to the new user through SSH by typing &amp;quot;chown -R username:usergroup YOUR_WEB_PATH&amp;quot;. If you don't know the usergroup, check out the current files by typing, &amp;quot;ls -la YOUR_WEB_PATH&amp;quot;&lt;/li&gt;
    &lt;li&gt;Change your permissions to the lowest number to allow your website to still work, this might be 444, 644, 655, 744, or 755. &amp;quot;chmod -R 755 YOUR_WEB_PATH&amp;quot;&lt;/li&gt;
    &lt;li&gt;make sure there are no authorized keys found in your &amp;quot;~/.ssh/&amp;quot; folder. Type &amp;quot;ls ~/.ssh&amp;quot;, and then &amp;quot;rm authorized_keys&amp;quot; if it is there unless of course you use that for authentication. Authorized keys allows you to ssh without a username and a password, because you put your id on your computer and on the server.&lt;/li&gt;
    &lt;li&gt;(tip via friend, &lt;a href="http://www.linkedin.com/in/grantwood"&gt;Grant Wood&lt;/a&gt;) There is a linux service called, &amp;quot;aide&amp;quot; that can email you when files are changed, but that is fairly intense to setup.&lt;/li&gt;
    &lt;li&gt;(tip from friend) Check your log files in /var/log to make sure there is no unauthorized connections that you haven't made.&lt;/li&gt;
    &lt;li&gt;Update your php.ini file with &lt;a href="http://blog.grik.net/2007/03/some-security-settings.html"&gt;better PHP settings&lt;/a&gt;.&lt;/li&gt;
    &lt;li&gt;Upgrade any installed CMS or web-based software.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;If all else fails, switch web hosts or hire a server admin, because you are screwed.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/allTrades?a=HoxhXBb58F0:iQB7aK8imEw:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/allTrades?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/allTrades?a=HoxhXBb58F0:iQB7aK8imEw:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/allTrades?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/allTrades?a=HoxhXBb58F0:iQB7aK8imEw:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/allTrades?i=HoxhXBb58F0:iQB7aK8imEw:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description><author>m@marcgrabanski.com (Marc Grabanski)</author><pubDate>Wed, 22 Jul 2009 21:41:44 -0700</pubDate><guid isPermaLink="false">http://marcgrabanski.com/article/securing-your-web-hosting-server-tips</guid><feedburner:origLink>http://marcgrabanski.com/article/securing-your-web-hosting-server-tips</feedburner:origLink></item><item><title>RSS Feeds in Facebook, Walled Garden of Fail</title><link>http://feedproxy.google.com/~r/allTrades/~3/08OcfIghCss/rss-feeds-facedbook</link><category><![CDATA[Facebook]]></category><description>&lt;p&gt;Category: &lt;a href="/category/usability-testing" base="1"&gt;Usability &amp;amp; Testing&lt;/a&gt; Tags: &lt;a href="/tag/facebook"&gt;Facebook&lt;/a&gt;&lt;/p&gt;&lt;p&gt;If you hook your RSS feed up with Facebook, the items keep you inside the walled-garden of Facebook fail.&lt;/p&gt;
&lt;p&gt;Let me give you an example.. so if I see this RSS item show up in the facebook stream:&lt;/p&gt;
&lt;p&gt;&lt;img height="136" width="535" alt="" src="http://marcgrabanski.com/img/facebook-rss-item.jpg" /&gt;&lt;/p&gt;
&lt;p&gt;I click on the link and it sends me to a Facebook note.&lt;/p&gt;
&lt;p&gt;&lt;img height="203" width="561" alt="" src="http://marcgrabanski.com/img/facebook-note.jpg" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The RSS feed links should go to the intended context, my blog! #facebook #walledgarden #fail&lt;/p&gt;
&lt;p&gt;&lt;img height="169" width="544" alt="" src="http://marcgrabanski.com/img/facebook-remove-rss-feed.jpg" /&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/allTrades?a=08OcfIghCss:v9kuHWTPCUI:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/allTrades?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/allTrades?a=08OcfIghCss:v9kuHWTPCUI:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/allTrades?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/allTrades?a=08OcfIghCss:v9kuHWTPCUI:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/allTrades?i=08OcfIghCss:v9kuHWTPCUI:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description><author>m@marcgrabanski.com (Marc Grabanski)</author><pubDate>Wed, 22 Jul 2009 08:18:02 -0700</pubDate><guid isPermaLink="false">http://marcgrabanski.com/article/rss-feeds-facedbook</guid><feedburner:origLink>http://marcgrabanski.com/article/rss-feeds-facedbook</feedburner:origLink></item><item><title>What's Up with Marc Grabanski? Summer 2009 Edition</title><link>http://feedproxy.google.com/~r/allTrades/~3/J0Ka28WJV8E/marc-grabanski-summer-2009</link><category><![CDATA[My Work]]></category><category><![CDATA[Business]]></category><description>&lt;p&gt;Category: &lt;a href="/category/marc-grabanski-work" base="1"&gt;Marc Grabanski&amp;#039;s Work&lt;/a&gt; Tags: &lt;a href="/tag/my-work"&gt;My Work&lt;/a&gt;, &lt;a href="/tag/business"&gt;Business&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Aside from my office turning into a complete disaster...&lt;/p&gt;
&lt;p style="text-align: center;"&gt;&lt;img height="411" width="600" src="http://marcgrabanski.com/img/office-mess.jpg" alt="" /&gt;&lt;/p&gt;
&lt;p&gt;Here is an update on the status of &lt;a href="http://marcgrabanski.com/article/projects-list-august-2008"&gt;my projects as of 10 months ago&lt;/a&gt;.&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;&lt;a href="http://rentupdate.com"&gt;Rent Update&lt;/a&gt;&lt;strong&gt;:&lt;/strong&gt; launched public beta! We are now walking property managers through sign up for their free listings and gathering feedback. The product is about 2 years in development, but still in the user-testing stage. I'm sure I'll make a big announcement article and promote the product when it starts humming. Follow &lt;a href="http://twitter.com/rentupdate"&gt;Rent Update on Twitter&lt;/a&gt; for more updates.&lt;/li&gt;
    &lt;li&gt;&lt;strong&gt;jQuery Datepicker v4&lt;/strong&gt;: turned into &lt;a href="http://github.com/1Marc/calendar-engine"&gt;Calendar Engine&lt;/a&gt;, an ambitious project intended to fix problems with the native JavaScript date object and give you access to internationalized calendar functions in straight-JavaScript (no jQuery). It works with Gregorian and Persian calendars so far, but I want to build a calendar and datepicker on top of it to showcase its abilities.&lt;/li&gt;
    &lt;li&gt;&lt;strong&gt;CakePHP jQuery Integration&lt;/strong&gt;: tried to iron out some of my thinking through a &lt;a href="http://thechaw.com/cakephp/wiki/RFCs/js-structure"&gt;JavaScript RFC for Cake 1.3&lt;/a&gt;, but I still have a ways to go. I'm tossing around so many ideas that I haven't solidified something actionable.&lt;/li&gt;
    &lt;li&gt;&lt;strong&gt;Carcassonne Online&lt;/strong&gt;: with the new things in webkit/iphone this could be a very interesting browser-based game, but I've put the project on hold for now until I feel inspired to learn what's new in webkit.&lt;/li&gt;
    &lt;li&gt;&lt;strong&gt;Family Reminder&lt;/strong&gt;: will be built on &lt;a href="http://thechaw.com/cakecal"&gt;CakeCal&lt;/a&gt; and &lt;a href="http://github.com/1Marc/calendar-engine"&gt;Calendar Engine&lt;/a&gt;, so I need to finish those open source projects before I get to this application, on hold for now.&lt;/li&gt;
    &lt;li&gt;&lt;strong&gt;Open Ad Sense&lt;/strong&gt;: on hold until I get momentum behind this project, maybe next year.&lt;/li&gt;
&lt;/ul&gt;
&lt;p style="text-align: center;"&gt;&lt;img height="393" width="712" alt="" src="http://marcgrabanski.com/img/business-up.jpg" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;New developments!&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;Launched my &lt;a href="http://mjgin.com/"&gt;consulting company&lt;/a&gt;'s website, &lt;strong&gt;MJG International&lt;/strong&gt;. Showcases the network of people and some work we've done.&lt;/li&gt;
    &lt;li&gt;&lt;strong&gt;MarcGrabanski.com&lt;/strong&gt; broke one million visitors in under a year! 1,043,421 since late July '08 and you can view more details in &lt;a href="http://marcgrabanski.com/webroot/mint/"&gt;Mint stats&lt;/a&gt;.&lt;/li&gt;
    &lt;li&gt;Learning &lt;strong&gt;Ruby on Rails&lt;/strong&gt; because of doing a UI on top of one of my client's projects, fun so far.&lt;/li&gt;
    &lt;li&gt;&lt;strong&gt;New startup company&lt;/strong&gt; deals with organizing and sharing content on the web, this one is interesting because they are both paying my company and giving percentage of equity based on the performance of the project. &lt;em&gt;Exactly&lt;/em&gt; the type of contract I've been trying to get.&lt;/li&gt;
    &lt;li&gt;Sat down at the table with business owners around Minnesota, prepping them and selling them on a &lt;strong&gt;new e-commerce platform&lt;/strong&gt; that I've been planning for years. This one will be huge because I know how it will run, we just have to work out the specifics financially to get development underway. This one is very exciting for both local businesses in Minnesota and me.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;On a personal note, &lt;strong&gt;I'm engaged&lt;/strong&gt;! She's now enrolled in college at &lt;a href="http://www.artinstitutes.edu/"&gt;Art Institute International&lt;/a&gt; downtown Minneapolis, the added financial burden just increases my motivation to make the business run stronger.&lt;/p&gt;
&lt;p&gt;Check out the Sushi + Engagement Ring plate!&lt;/p&gt;
&lt;p style="text-align: center;"&gt;&lt;img height="381" width="653" alt="" src="http://marcgrabanski.com/img/sushi-ring.jpg" /&gt;&lt;/p&gt;
&lt;p&gt;And don't worry, I cleaned my office!&lt;/p&gt;
&lt;p style="text-align: center;"&gt;&lt;img height="351" width="500" src="http://marcgrabanski.com/img/office-clean.jpg" alt="" /&gt;&amp;nbsp;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/allTrades?a=J0Ka28WJV8E:WDzsxGpsoK4:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/allTrades?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/allTrades?a=J0Ka28WJV8E:WDzsxGpsoK4:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/allTrades?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/allTrades?a=J0Ka28WJV8E:WDzsxGpsoK4:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/allTrades?i=J0Ka28WJV8E:WDzsxGpsoK4:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description><author>m@marcgrabanski.com (Marc Grabanski)</author><pubDate>Mon, 20 Jul 2009 20:16:52 -0700</pubDate><guid isPermaLink="false">http://marcgrabanski.com/article/marc-grabanski-summer-2009</guid><feedburner:origLink>http://marcgrabanski.com/article/marc-grabanski-summer-2009</feedburner:origLink></item><item><title>Pivotal Tracker is Amazing, Period.</title><link>http://feedproxy.google.com/~r/allTrades/~3/aPOiSukEbCo/pivotal-tracker-is-amazing</link><category><![CDATA[Free Tools]]></category><category><![CDATA[Productivity]]></category><category><![CDATA[Management ]]></category><description>&lt;p&gt;Category: &lt;a href="/category/business-management" base="1"&gt;Business &amp;amp; Management&lt;/a&gt; Tags: &lt;a href="/tag/free-tools"&gt;Free Tools&lt;/a&gt;, &lt;a href="/tag/productivity"&gt;Productivity&lt;/a&gt;, &lt;a href="/tag/management"&gt;Management &lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://www.pivotaltracker.com"&gt;&lt;img height="36" width="319" src="http://marcgrabanski.com/img/logo-pivotal-tracker.jpg" alt="" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;It is not very often that I am blown away by software to an (tech)emotional level. Today I was blown away. I honestly believe &lt;a href="http://www.pivotaltracker.com"&gt;Pivotal Tracker&lt;/a&gt; could change the way I view product development from now on.&lt;/p&gt;
&lt;p&gt;It is like someone reached inside my dreams and then made a tracking system based on it. I have even pitched this same type of idea to a business partners before: &lt;strong&gt;ticket items based on value-added to the business&lt;/strong&gt;. Finally, a tracking system that works how I think.&lt;/p&gt;
&lt;h3&gt;10 Reasons I am Blown Away By Pivotal Tracker&lt;/h3&gt;
&lt;ol&gt;
    &lt;li&gt;Creates charts of time line / deadline against amount of work yet to accomplish.&lt;br /&gt;
    &lt;br /&gt;
    &lt;img height="442" width="384" src="http://marcgrabanski.com/img/pivotal-chart.jpg" alt="" /&gt;&lt;br /&gt;
    &lt;br /&gt;
    Look at how huge this is.. if your manager wants to hit the deadline, he/she has to remove &amp;quot;points&amp;quot;, or feature requests and slide them to a new release. There is only so much you can get done in a given time period, and Pivotal Tracker makes that clear.&lt;/li&gt;
    &lt;li&gt;Centered around&lt;strong&gt; value-added to the business&lt;/strong&gt;. Amount of value added in a iteration (week) is the velocity.&lt;br /&gt;
    &lt;ul&gt;
        &lt;li&gt;Each new feature is assigned a point value depending on how difficult it is to implement.&lt;/li&gt;
        &lt;li&gt;Project's velocity is based on how many points you accomplish in an iteration (week).&lt;br /&gt;
        &lt;img height="40" width="96" src="http://marcgrabanski.com/img/pivotal-velocity.jpg" alt="" /&gt;&lt;/li&gt;
        &lt;li&gt;Chores and bugs are viewed as necessary overhead, but do not add value to the business so they do not contribute to a project's velocity.&lt;/li&gt;
    &lt;/ul&gt;
    &lt;/li&gt;
    &lt;li&gt;&lt;em&gt;There is only so much you can get done in a week, realistically.&lt;/em&gt; Pivotal Tracker knows this and pushes new items to the backlog, showing management a good idea of what is realistic.&lt;br /&gt;
    &lt;img height="123" width="174" src="http://marcgrabanski.com/img/pivotal-backlog.jpg" alt="" /&gt;&lt;/li&gt;
    &lt;li&gt;Team strength adjusts the amount of points able to accomplish in a given week.&lt;br /&gt;
    &lt;img height="197" width="215" src="http://marcgrabanski.com/img/pivotal-team-strength.jpg" alt="" /&gt;&lt;br /&gt;
    Here the client was able to accomplish 9 points in a given week typically. Upon adding me, they adjusted team strength to 175%, allowing for 16 points worth of features to be shown in the weekly cycle. All features above 16 are scheduled for following weeks.&lt;/li&gt;
    &lt;li&gt;The server is polled periodically, allowing you to see changes your team makes without reloading the page.&lt;/li&gt;
    &lt;li&gt;Sortable, drag and drop prioritization of tickets.&lt;/li&gt;
    &lt;li&gt;Clicking, &amp;quot;start&amp;quot; shows that you are working on a particular bug, avoiding team overlap.&lt;/li&gt;
    &lt;li&gt;Make your project private &lt;em&gt;or public&lt;/em&gt;.&lt;/li&gt;
    &lt;li&gt;Customizable view-panes and clone existing view panes.&lt;/li&gt;
    &lt;li&gt;Comment and attach files to tickets (stories).&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;I've always wanted a tracking system that demonstrates the value that I am adding to the business when adding features. &lt;a href="http://www.pivotaltracker.com"&gt;Pivotal Tracker&lt;/a&gt; does this for me. its feature set is just enough to add to your experience with the tool and not over-complicate things.&lt;/p&gt;
&lt;p&gt;Go use it now.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/allTrades?a=aPOiSukEbCo:x1H6ufb5z-0:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/allTrades?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/allTrades?a=aPOiSukEbCo:x1H6ufb5z-0:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/allTrades?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/allTrades?a=aPOiSukEbCo:x1H6ufb5z-0:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/allTrades?i=aPOiSukEbCo:x1H6ufb5z-0:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description><author>m@marcgrabanski.com (Marc Grabanski)</author><pubDate>Wed, 15 Jul 2009 06:43:42 -0700</pubDate><guid isPermaLink="false">http://marcgrabanski.com/article/pivotal-tracker-is-amazing</guid><feedburner:origLink>http://marcgrabanski.com/article/pivotal-tracker-is-amazing</feedburner:origLink></item></channel></rss>
