<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>js/jquery.js</filename>
    </added>
    <added>
      <filename>js/pretty.js</filename>
    </added>
    <added>
      <filename>js/underscore.js</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -8,20 +8,18 @@
      &lt;link href=&quot;/atom.xml&quot; rel=&quot;alternate&quot; title=&quot;Rob Ares&quot; type=&quot;application/atom+xml&quot; /&gt;
      &lt;link rel=&quot;stylesheet&quot; href=&quot;/css/syntax.css&quot; type=&quot;text/css&quot; /&gt;
      &lt;link rel=&quot;stylesheet&quot; href=&quot;/css/screen.css&quot; type=&quot;text/css&quot; media=&quot;screen, projection&quot; /&gt;
-     &lt;style type=&quot;text/css&quot;&gt;    
-      @import &quot;http://ajax.googleapis.com/ajax/libs/dojo/1.3/dijit/themes/tundra/tundra.css&quot;; 
-      @import &quot;http://ajax.googleapis.com/ajax/libs/dojo/1.3/dojox/image/resources/Lightbox.css&quot;;
-     &lt;/style&gt;
   &lt;/head&gt;
-  &lt;body class=&quot;tundra&quot;&gt;
+  &lt;body&gt;
 
     &lt;div class=&quot;site&quot;&gt;
       &lt;div class=&quot;title&quot;&gt;
         &lt;a href=&quot;/&quot; class=&quot;site-name&quot;&gt;Rob Ares&lt;/a&gt;
-        &lt;a class=&quot;extra&quot; href=&quot;/&quot;&gt;home&lt;/a&gt; :: 
-        &lt;a class=&quot;extra&quot; href=&quot;/archive.html&quot;&gt;archive&lt;/a&gt; ::
-        &lt;a class=&quot;extra&quot; href=&quot;/resume.html&quot; target=&quot;_blank&quot;&gt;resume&lt;/a&gt; ::                              
-        &lt;a class=&quot;extra&quot; href=&quot;/portfolio.html&quot;&gt;portfolio&lt;/a&gt;                
+        &lt;span style=&quot;float: right;&quot;&gt;
+          &lt;a class=&quot;extra&quot; href=&quot;/&quot;&gt;home&lt;/a&gt; :: 
+          &lt;a class=&quot;extra&quot; href=&quot;/archive.html&quot;&gt;archive&lt;/a&gt; ::
+          &lt;a class=&quot;extra&quot; href=&quot;/resume.html&quot; target=&quot;_blank&quot;&gt;resume&lt;/a&gt; ::                              
+          &lt;a class=&quot;extra&quot; href=&quot;/portfolio.html&quot;&gt;portfolio&lt;/a&gt;                
+        &lt;/span&gt;
       &lt;/div&gt;
   
       {{ content }}
@@ -63,7 +61,9 @@
     	})();
     //]]&gt;
     &lt;/script&gt;
-    &lt;script type=&quot;text/javascript&quot; charset=&quot;utf-8&quot; src=&quot;http://ajax.googleapis.com/ajax/libs/dojo/1.3/dojo/dojo.xd.js&quot;&gt;&lt;/script&gt;             
+    &lt;script type=&quot;text/javascript&quot; charset=&quot;utf-8&quot; src=&quot;/js/jquery.js&quot;&gt;&lt;/script&gt;             
+    &lt;script type=&quot;text/javascript&quot; charset=&quot;utf-8&quot; src=&quot;/js/underscore.js&quot;&gt;&lt;/script&gt;             
+    &lt;script type=&quot;text/javascript&quot; charset=&quot;utf-8&quot; src=&quot;/js/pretty.js&quot;&gt;&lt;/script&gt;             
     &lt;script type=&quot;text/javascript&quot; charset=&quot;utf-8&quot; src=&quot;/js/application.js&quot;&gt;&lt;/script&gt;
     &lt;script type=&quot;text/javascript&quot;&gt;
     var gaJsHost = ((&quot;https:&quot; == document.location.protocol) ? &quot;https://ssl.&quot; : &quot;http://www.&quot;);
@@ -74,4 +74,4 @@
     pageTracker._trackPageview();
     &lt;/script&gt;
   &lt;/body&gt;
-&lt;/html&gt;
\ No newline at end of file
+&lt;/html&gt;</diff>
      <filename>_layouts/default.html</filename>
    </modified>
    <modified>
      <diff>@@ -244,4 +244,4 @@ ul#portfolio li img.thumbnail {
   padding: 2px;
   width: 160px;
   border: 1px #8085C1 solid;
-}
\ No newline at end of file
+}</diff>
      <filename>css/screen.css</filename>
    </modified>
    <modified>
      <diff>@@ -13,4 +13,4 @@ title: Rob Ares
 &lt;/div&gt;
 
 &lt;div id=&quot;activity&quot;&gt;
-&lt;/div&gt;
\ No newline at end of file
+&lt;/div&gt;</diff>
      <filename>index.html</filename>
    </modified>
    <modified>
      <diff>@@ -1,39 +1,17 @@
-dojo.require(&quot;dojo.html&quot;);
-dojo.require(&quot;dojo.parser&quot;);
-dojo.require(&quot;dojo.io.script&quot;);
-dojo.require(&quot;dojo.date.stamp&quot;);
-dojo.require(&quot;dojox.dtl.filter.dates&quot;);
-dojo.require(&quot;dojox.image.LightboxNano&quot;);
-
-dojo.addOnLoad(function() {
-  dojo.parser.parse();
-  
-  var initializeTime = function() {
-    dojo.query(&quot;abbr.timeago&quot;).forEach(function(element) {
-      element.innerHTML = dojox.dtl.filter.dates.timesince(element.innerHTML);
-    });
-  };
-  
-  if(dojo.byId(&quot;activity&quot;)) {
-    dojo.io.script.get({
-      callbackParamName: &quot;callback&quot;,
-      url: &quot;http://friendfeed.com/api/feed/user/rares?num=5&quot;,
-      load: function(json) {
-        var ul = dojo.create(&quot;ul&quot;, {&quot;class&quot;: &quot;posts&quot;});
-        dojo.place(ul, dojo.byId(&quot;activity&quot;), &quot;first&quot;);
-        dojo.forEach(json.entries, function(entry) {
-          var li = dojo.create(&quot;li&quot;, {});
-          dojo.place(li, ul, &quot;last&quot;);
-          var time = dojo.date.stamp.fromISOString(entry.published);
-          dojo.place(dojo.create(&quot;abbr&quot;, {&quot;class&quot;: &quot;timeago&quot;, title: time, innerHTML: time}), li, &quot;last&quot;);
-          dojo.place(dojo.create(&quot;img&quot;, {src: entry.service.iconUrl, alt: entry.service.name}), li, &quot;last&quot;);
-          dojo.place(dojo.create(&quot;a&quot;, {href: entry.link, innerHTML: entry.title}), li, &quot;last&quot;);
+(function($) { 
+  $.fn.fetch = function() {
+    return this.each(function() {
+      var _panel = $(this);
+      var _item = '&lt;li&gt;&lt;abbr class=&quot;timeago&quot; title=&quot;&lt;%= prettyDate(entry.published) %&gt;&quot;&gt;&lt;%= prettyDate(entry.published) %&gt;&lt;/abbr&gt;&lt;img src=&quot;&lt;%= entry.service.iconUrl %&gt;&quot; /&gt;&lt;a href=&quot;&lt;%= entry.link %&gt;&quot;&gt;&lt;%= entry.title %&gt;&lt;/a&gt;&lt;/li&gt;';
+      $.getJSON(&quot;http://friendfeed.com/api/feed/user/rares?num=5&amp;amp;callback=?&quot;, function(activities) {
+        _panel.prepend(&quot;&lt;h1&gt;Recent Activity&lt;/h1&gt;&quot;);
+        var _list = $('&lt;ul class=&quot;posts&quot;&gt;&lt;/ul&gt;').appendTo(_panel);
+        _(activities.entries).each(function(entry) {
+          $(_(_item).template({entry: entry})).appendTo(_list);     
         });
-        initializeTime();
-      }
+      });    
     });
-  }
-  else {
-    initializeTime();
-  }
-});
\ No newline at end of file
+  };
+})(jQuery);
+$(&quot;#activity&quot;).fetch();
+$(&quot;abbr.timeago&quot;).prettyDate();</diff>
      <filename>js/application.js</filename>
    </modified>
    <modified>
      <diff>@@ -6,25 +6,25 @@ title: Rob Ares | Portfolio
 &lt;h1&gt;Portfolio&lt;/h1&gt;
 &lt;ul id=&quot;portfolio&quot;&gt;
   &lt;li class=&quot;clearfix&quot;&gt;
-    &lt;a href=&quot;/images/1-640x480.png&quot; dojoType=&quot;dojox.image.LightboxNano&quot;&gt;&lt;img src=&quot;/images/1-160x120.png&quot; class=&quot;thumbnail&quot; /&gt;&lt;/a&gt;
+    &lt;a href=&quot;/images/1-640x480.png&quot;&gt;&lt;img src=&quot;/images/1-160x120.png&quot; class=&quot;thumbnail&quot; /&gt;&lt;/a&gt;
     &lt;a href=&quot;http://checkmycampus.com/&quot; target=&quot;_blank&quot;&gt;Check My Campus Facebook App&lt;/a&gt;
     &lt;br /&gt;
     Check My Campus is a Facebook application written in Python that allows potential college students check out a campus' social scene without having to travel to it. Users that are part of a college network can upload videos for their campus and potential students can view. Check My Campus into the user's profile allowing users to tag media in order for other students to search and preview a campus.
   &lt;/li&gt; 
   &lt;li&gt;
-    &lt;a href=&quot;/images/2-640x480.png&quot; dojoType=&quot;dojox.image.LightboxNano&quot;&gt;&lt;img src=&quot;/images/2-160x120.png&quot; class=&quot;thumbnail&quot; /&gt;&lt;/a&gt;
+    &lt;a href=&quot;/images/2-640x480.png&quot;&gt;&lt;img src=&quot;/images/2-160x120.png&quot; class=&quot;thumbnail&quot; /&gt;&lt;/a&gt;
     &lt;a href=&quot;http://www.fool.com/&quot; target=&quot;_blank&quot;&gt;The Motley Fool&lt;/a&gt;
     &lt;br /&gt;
     Served as tech lead in total re-design of the home page and the aggregation of the data behind fool.com. The project scope also included administration tools that allowed the business to administer and schedule content changes at later dates.
   &lt;/li&gt; 
   &lt;li&gt;
-    &lt;a href=&quot;/images/3-640x480.png&quot; dojoType=&quot;dojox.image.LightboxNano&quot;&gt;&lt;img src=&quot;/images/3-160x120.png&quot; class=&quot;thumbnail&quot; /&gt;&lt;/a&gt;
-    &lt;a href=&quot;http://www.qflip.com/&quot; target=&quot;_blank&quot;&gt;Qflip&lt;/a&gt;
+    &lt;a href=&quot;/images/3-640x480.png&quot;&gt;&lt;img src=&quot;/images/3-160x120.png&quot; class=&quot;thumbnail&quot; /&gt;&lt;/a&gt;
+    &lt;a href=&quot;http://www.qflip.net/&quot; target=&quot;_blank&quot;&gt;Qflip&lt;/a&gt;
     &lt;br /&gt;
     Qflip was a 2008 &lt;a href=&quot;http://railsrumble.com/&quot; target=&quot;_blank&quot;&gt;Rails Rumble&lt;/a&gt; entry that placed 2 overall. Built using the Netflix API; it   allowed users to make the top position of their queue open to a public vote (consisting of 5 user recommendations). After 24 hours, the movie with the most votes wins. Qflip also uses Twitter to announce matches.
   &lt;/li&gt;  
   &lt;li&gt;
-    &lt;a href=&quot;/images/4-640x480.png&quot; dojoType=&quot;dojox.image.LightboxNano&quot;&gt;&lt;img src=&quot;/images/4-160x120.png&quot; class=&quot;thumbnail&quot; /&gt;&lt;/a&gt;
+    &lt;a href=&quot;/images/4-640x480.png&quot;&gt;&lt;img src=&quot;/images/4-160x120.png&quot; class=&quot;thumbnail&quot; /&gt;&lt;/a&gt;
     &lt;a href=&quot;http://www.t-mac.com/&quot; target=&quot;_blank&quot;&gt;Tracy McGrady&lt;/a&gt;
     &lt;br /&gt;
     Tracy McGrady's (Houston Rockets) official site. The application included tools that allow editors to add content, media and feeds from other sources to aggregate all aspects of Tracy's life and career. The site allows fans to interact with Tracy as well as subscribe to feeds and calendars that allow them to keep abreast of current events.</diff>
      <filename>portfolio.html</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>94c00f3b4d885ac0d453f7af3c22b2dc62ddd5b0</id>
    </parent>
  </parents>
  <author>
    <name>Rob Ares</name>
    <email>rob.ares@gmail.com</email>
  </author>
  <url>http://github.com/rares/rares.github.com/commit/5d05789b2d04afda5ad95cf5649c631a44fdb232</url>
  <id>5d05789b2d04afda5ad95cf5649c631a44fdb232</id>
  <committed-date>2009-11-07T19:12:52-08:00</committed-date>
  <authored-date>2009-11-07T19:12:52-08:00</authored-date>
  <message>jquery and underscore</message>
  <tree>7b22047749968d0ed890ba6af55c3817883973bf</tree>
  <committer>
    <name>Rob Ares</name>
    <email>rob.ares@gmail.com</email>
  </committer>
</commit>
