<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>a work in progress</title>
	<atom:link href="http://rachelmdonovan.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://rachelmdonovan.wordpress.com</link>
	<description>rachel donovan: project manager, web developer</description>
	<lastBuildDate>Tue, 17 Jan 2012 19:45:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='rachelmdonovan.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>a work in progress</title>
		<link>http://rachelmdonovan.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://rachelmdonovan.wordpress.com/osd.xml" title="a work in progress" />
	<atom:link rel='hub' href='http://rachelmdonovan.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Digging into twitter bootstrap</title>
		<link>http://rachelmdonovan.wordpress.com/2011/12/22/digging-into-twitter-bootstrap/</link>
		<comments>http://rachelmdonovan.wordpress.com/2011/12/22/digging-into-twitter-bootstrap/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 16:33:34 +0000</pubDate>
		<dc:creator>rachel</dc:creator>
				<category><![CDATA[front-end development]]></category>
		<category><![CDATA[rails]]></category>

		<guid isPermaLink="false">http://rachelmdonovan.wordpress.com/?p=313</guid>
		<description><![CDATA[I dove headfirst into twitter bootstrap a few weeks ago, here are some of my notes / findings. How I use it &#8211; as part of a Rails 3.1 app, with SASS and Compass Setup &#8211; pure CSS vs Less vs Sass Twitter Bootstrap, Less, and Sass: Understanding Your Options for Rails 3.1 In my [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rachelmdonovan.wordpress.com&amp;blog=7355682&amp;post=313&amp;subd=rachelmdonovan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I dove headfirst into twitter bootstrap a few weeks ago, here are some of my notes / findings.</p>
<p>How I use it &#8211; as part of a Rails 3.1 app, with SASS and Compass</p>
<p><strong>Setup &#8211; pure CSS vs Less vs Sass</strong></p>
<p><a href="http://rubysource.com/twitter-bootstrap-less-and-sass-understanding-your-options-for-rails-3-1/">Twitter Bootstrap, Less, and Sass: Understanding Your Options for Rails 3.1</a></p>
<p>In my case we went with the <a href="https://github.com/seyhunak/twitter-bootstrap-rails">twitter-bootstrap-rails gem</a> &#8211; this lets us set variables in the bootstrap.less file and then we call another file that includes all of our sass. I spent a little time getting my custom variables in the bootstrap.less file to show up and then was a little disappointed with the amount of things you can do with the variables. A lot of the colors are hard coded in the source, even really obvious ones I suspect people would want to change, like filler color. In my opinion its almost so little, its a waste of time to get less up and running, might as well just overwrite static styles until better variables are available. Also from reading their response to issues on github improving the variable flexibility isn&#8217;t a high priority for them. (if you are already using less in your projects, then using some of the mixins may be helpful &#8211; I wanted to keep my project sass though, and found it easier to just create mixins on that side). All a matter of preference, I guess.</p>
<p>Note &#8211; if you are transitioning from using blueprint with compass make sure blueprint is really gone, I had some hidden places it was getting included and it does not play nice with Twitter Bootstrap.</p>
<p><strong>Customizing the Look</strong></p>
<p>For the most part this is self explanatory.</p>
<p>I did get tripped up in my attempt to overwrite the header and buttons in ie. The <a href="http://compass-style.org/reference/compass/css3/gradient/">Compass mixin</a> I used in my custom styles didn&#8217;t include the ie filter code which caused ie to fall back to the twitter bootstrap colors instead of just the background-color.  I added this mixin, <a href="http://hungrysquirrel.posterous.com/sass-mixin-for-ie-linear-gradient-filter">sass mixin for ie linear gradient filter</a>, and used it in addition to the compass gradient mixin.</p>
<p>So for exmaple:</p>
<p><pre class="brush: css;">
.topbar-inner {
@include linear-gradient(color-stops($color_gray2, $color_gray));
@include ie-linear-gradient($color_gray2, $color_gray);
}
</pre></p>
<p>another way to handle it is to write a mixin that just kills the filter</p>
<p><pre class="brush: css;">
@mixin kill-filter() {
 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
 -ms-filter: none;
 }
</pre></p>
<p><strong>Modals Baby</strong></p>
<p>Pretty modals were one of the reasons we are making the switch to twitter bootstrap.</p>
<p>Great intro &#8211; <a href="http://paynedigital.com/2011/11/bootbox-js-alert-confirm-dialogs-for-twitter-bootstrap">http://paynedigital.com/2011/11/bootbox-js-alert-confirm-dialogs-for-twitter-bootstrap</a></p>
<p>I&#8217;d stay away from using .fade with the modals as it breaks links and buttons in chrome (<a href="https://github.com/twitter/bootstrap/issues/706">discussion of the issue</a>)</p>
<p>You can add the close modal x, just adding &lt;a href=&#8221;#&#8221; class=&#8221;close&#8221;&gt;x&lt;/a&gt; in the modal header, it styles and just works, magic!</p>
<p><strong>Get the Gist</strong></p>
<p>I pulled together some of the styles and mixins I found helpful getting Twitter Bootstrap and Compass to be a full solution for me. Still a work in progress, add / comment on <a href="https://gist.github.com/1470503">twitter_bootstrap_addons.scss</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rachelmdonovan.wordpress.com/313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rachelmdonovan.wordpress.com/313/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rachelmdonovan.wordpress.com/313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rachelmdonovan.wordpress.com/313/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rachelmdonovan.wordpress.com/313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rachelmdonovan.wordpress.com/313/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rachelmdonovan.wordpress.com/313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rachelmdonovan.wordpress.com/313/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rachelmdonovan.wordpress.com/313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rachelmdonovan.wordpress.com/313/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rachelmdonovan.wordpress.com/313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rachelmdonovan.wordpress.com/313/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rachelmdonovan.wordpress.com/313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rachelmdonovan.wordpress.com/313/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rachelmdonovan.wordpress.com&amp;blog=7355682&amp;post=313&amp;subd=rachelmdonovan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rachelmdonovan.wordpress.com/2011/12/22/digging-into-twitter-bootstrap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/53bdd1af6cc4720031cf85e9ac247df7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rachel</media:title>
		</media:content>
	</item>
		<item>
		<title>Thankful</title>
		<link>http://rachelmdonovan.wordpress.com/2011/11/24/thankful/</link>
		<comments>http://rachelmdonovan.wordpress.com/2011/11/24/thankful/#comments</comments>
		<pubDate>Thu, 24 Nov 2011 15:04:40 +0000</pubDate>
		<dc:creator>rachel</dc:creator>
				<category><![CDATA[thoughts]]></category>

		<guid isPermaLink="false">http://rachelmdonovan.wordpress.com/?p=305</guid>
		<description><![CDATA[In the spirit of Thanksgiving, I wanted to jot down a few things I am thankful for: My wife &#8211; who&#8217;s humor and support I couldn&#8217;t live without My family &#8211; they are awesome! My job &#8211; I absolutely love what I do, I am so lucky to have the opportunity to work on something [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rachelmdonovan.wordpress.com&amp;blog=7355682&amp;post=305&amp;subd=rachelmdonovan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In the spirit of Thanksgiving, I wanted to jot down a few things I am thankful for:</p>
<ul>
<li>My wife &#8211; who&#8217;s humor and support I couldn&#8217;t live without</li>
<li>My family &#8211; they are awesome!</li>
<li>My job &#8211; I absolutely love what I do, I am so lucky to have the opportunity to work on something I believe in and with kind and super smart people.</li>
<li>My friends &#8211; I&#8217;m fairly certain they are the best friends anyone could have</li>
<li>My community &#8211; Somerville rocks</li>
<li>My home</li>
<li>My health</li>
<li>The open source community &#8211; without it my job would be impossible</li>
</ul>
<p>I&#8217;m sure there are tons of things I forgot, but at least its a start! Happy Thanksgiving everyone!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rachelmdonovan.wordpress.com/305/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rachelmdonovan.wordpress.com/305/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rachelmdonovan.wordpress.com/305/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rachelmdonovan.wordpress.com/305/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rachelmdonovan.wordpress.com/305/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rachelmdonovan.wordpress.com/305/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rachelmdonovan.wordpress.com/305/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rachelmdonovan.wordpress.com/305/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rachelmdonovan.wordpress.com/305/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rachelmdonovan.wordpress.com/305/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rachelmdonovan.wordpress.com/305/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rachelmdonovan.wordpress.com/305/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rachelmdonovan.wordpress.com/305/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rachelmdonovan.wordpress.com/305/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rachelmdonovan.wordpress.com&amp;blog=7355682&amp;post=305&amp;subd=rachelmdonovan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rachelmdonovan.wordpress.com/2011/11/24/thankful/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/53bdd1af6cc4720031cf85e9ac247df7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rachel</media:title>
		</media:content>
	</item>
		<item>
		<title>displaying rss feeds in your rails app</title>
		<link>http://rachelmdonovan.wordpress.com/2011/05/04/displaying-rss-feeds-in-your-rails-app/</link>
		<comments>http://rachelmdonovan.wordpress.com/2011/05/04/displaying-rss-feeds-in-your-rails-app/#comments</comments>
		<pubDate>Thu, 05 May 2011 00:31:40 +0000</pubDate>
		<dc:creator>rachel</dc:creator>
				<category><![CDATA[rails]]></category>

		<guid isPermaLink="false">http://rachelmdonovan.wordpress.com/?p=295</guid>
		<description><![CDATA[Its very common to need to display recent news / posts from a blog outside of your Rails application. There are a few javascript widgets (like google reader) that make it easy to do that, but they suck from a performance standpoint. Its pretty easy to roll your own, here&#8217;s an example of how: I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rachelmdonovan.wordpress.com&amp;blog=7355682&amp;post=295&amp;subd=rachelmdonovan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Its very common to need to display recent news / posts from a blog outside of your Rails application. There are a few javascript widgets (like google reader) that make it easy to do that, but they suck from a performance standpoint. Its pretty easy to roll your own, here&#8217;s an example of how:</p>
<p>I got most of my info from <a href="http://rubyrss.com/">http://rubyrss.com/</a></p>
<p>This is my home_helper.rb file</p>
<p><pre class="brush: ruby;">
require 'rss/1.0'
require 'rss/2.0'
require 'open-uri'

module HomeHelper
  
  def blog_feed
    source = &quot;http://feeds.feedburner.com/37signals/beMH&quot; # url or local file
    content = &quot;&quot; # raw content of rss feed will be loaded here
    open(source) do |s| content = s.read end
    rss = RSS::Parser.parse(content, false)
    
    html = &quot;&lt;ul&gt;&quot;
    rss.items.each do |i|
    html &lt;&lt; &quot;&lt;li&gt;&lt;a href='#{i.link}'&gt;#{i.title}&lt;/a&gt;&lt;/li&gt;&quot;
    html &lt;&lt; &quot;&lt;/ul&gt;&quot;
    html
    
    end
  end
end
</pre></p>
<p>and then in my view I can just write<br />
<pre class="brush: ruby;">
&lt;%= blog_feed %&gt;
</pre></p>
<p>You&#8217;ll see that it loops through all of the items in the feed by default, if you want to limit that you can use .first()<br />
<pre class="brush: ruby;">
rss.items.first(3).each do |i|
</pre></p>
<p>This needs a little clean up and error handling but its gives you a basic idea how how to get a feed parsed and displayed on your site.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rachelmdonovan.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rachelmdonovan.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rachelmdonovan.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rachelmdonovan.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rachelmdonovan.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rachelmdonovan.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rachelmdonovan.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rachelmdonovan.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rachelmdonovan.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rachelmdonovan.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rachelmdonovan.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rachelmdonovan.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rachelmdonovan.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rachelmdonovan.wordpress.com/295/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rachelmdonovan.wordpress.com&amp;blog=7355682&amp;post=295&amp;subd=rachelmdonovan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rachelmdonovan.wordpress.com/2011/05/04/displaying-rss-feeds-in-your-rails-app/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/53bdd1af6cc4720031cf85e9ac247df7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rachel</media:title>
		</media:content>
	</item>
		<item>
		<title>i have some places in a database and I want to show them on a map &#8211;  a quick tutorial using google maps api and rails</title>
		<link>http://rachelmdonovan.wordpress.com/2011/02/03/rails-and-google-maps/</link>
		<comments>http://rachelmdonovan.wordpress.com/2011/02/03/rails-and-google-maps/#comments</comments>
		<pubDate>Fri, 04 Feb 2011 00:33:50 +0000</pubDate>
		<dc:creator>rachel</dc:creator>
				<category><![CDATA[rails]]></category>

		<guid isPermaLink="false">http://rachelmdonovan.wordpress.com/?p=274</guid>
		<description><![CDATA[There is a tutorial over on the Google Maps API article page that shows how to use PHP/MySQL and the Google Maps API v3 to create a map that polls data from a database and shows as markers. I put together some notes to do the same thing using Rails. First I created a migration [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rachelmdonovan.wordpress.com&amp;blog=7355682&amp;post=274&amp;subd=rachelmdonovan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There is a tutorial over on the Google Maps API article page that shows how to use<a href="http://code.google.com/apis/maps/articles/phpsqlajax_v3.html"> PHP/MySQL and the Google Maps API v3 to create a map that polls data from a database and shows as markers</a>. I put together some notes to do the same thing using Rails.</p>
<p>First I created a migration to add a places table.<br />
<pre class="brush: ruby;">
class CreatePlaces &lt; ActiveRecord::Migration
  def self.up
    create_table :places do |t|
      t.string :state
      t.float :lat
      t.float :lng
      t.string :website
      t.integer :user_id
      t.timestamps
    end
  end

  def self.down
    drop_table :places
  end
end
</pre></p>
<p>You&#039;ll notice that each user has a place, so I updated the models to make that association and add some validation.<br />
in user.rb<br />
<pre class="brush: ruby;">
has_one :place
</pre><br />
in place.rb<br />
<pre class="brush: ruby;">
class Place &lt; ActiveRecord::Base
  attr_accessible :state, :lat, :lng, :website, :user_id
  
  belongs_to :user
  
  validates_uniqueness_of :state, :user_id, : on =&gt; :create
  validates_presence_of :lat, :lng
end
</pre></p>
<p>I then added CRUD functionality for the places and added in some data. (If you are new to Rails, check out the <a href="http://edgeguides.rubyonrails.org/getting_started.html">getting started guide</a>)</p>
<p>Next you want to output this data to a format that google maps can pick up, I used JSON.<br />
<pre class="brush: ruby;">
  def index
    @places = Place.with_user_data

    respond_to do |format|
      format.html # index.html.haml
      format.json { render :json =&gt; @places }
    end
  end
</pre></p>
<p>If this is your first time using JSON I suggest getting the <a href="https://addons.mozilla.org/en-US/firefox/addon/jsonview/">JSON viewer for firefox</a> and reading <a href="http://webhole.net/2009/11/28/how-to-read-json-with-javascript/">How To Read JSON Using JQuery</a>.</p>
<p>You&#8217;ll notice I used a named scope when creating the places object, this is so that I could explicitly select all the fields that needed to rendered to the JSON file.<br />
in place.rb<br />
<pre class="brush: ruby;">
named_scope :with_user_data, {
    :select =&gt; &quot;places.*, users.first_name, users.last_name&quot;,
    :joins =&gt; :user
  }
</pre></p>
<p>At this point all of the data should be ready to view.</p>
<p>http://localhost:3000/places.json</p>
<p>**note that this image shows an example using jurisdictions instead of places and with additional data, but you&#8217;ll get the point **<br />
<a href="http://rachelmdonovan.files.wordpress.com/2011/02/picture-1.jpg"><img src="http://rachelmdonovan.files.wordpress.com/2011/02/picture-1.jpg?w=300&#038;h=217" alt="" title="json example" width="300" height="217" class="alignnone size-medium wp-image-282" /></a></p>
<p>To display the map I created a separate controller, set the layout to nil, and then accessed the map via <a href="http://fancybox.net/">Fancybox</a>.</p>
<p>That said the actual view code is very bare<br />
<pre class="brush: ruby;">
=content_for :head do
   %script{:src =&gt; &quot;/javascripts/places_map.js &quot;}
%body
      #map
</pre></p>
<p>And then the map javascript<br />
<pre class="brush: jscript;">
var map;
	var arrMarkers = [];
	var arrInfoWindows = [];
	
	function mapInit(){
		var centerCoord = new google.maps.LatLng(38, -97); 
		var mapOptions = {
			zoom: 3,
			center: centerCoord,
			mapTypeId: google.maps.MapTypeId.TERRAIN
		};
		map = new google.maps.Map(document.getElementById(&quot;map&quot;), mapOptions);
		
		$.getJSON(&quot;/places.json&quot;, {}, function(json){
			$.each(json, function(i,item){
				$(&quot;#markers&quot;).append('&lt;li&gt;&lt;a href=&quot;#&quot; rel=&quot;' + i + '&quot;&gt;' + item.place.name + '&lt;/a&gt;&lt;/li&gt;');
				var marker = new google.maps.Marker({
					position: new google.maps.LatLng(item.place.lat, item.place.lng),
					map: map,
					title: item.place.state
				});
				arrMarkers[i] = marker;
				var infowindow = new google.maps.InfoWindow({
					content: &quot;&lt;h3&gt;&quot;+ item.place.state +&quot;&lt;/h3&gt;&lt;p&gt;&quot;+ item.place.first_name + &quot;&amp;nbsp;&quot; +  item.place.last_name + &quot;, &amp;nbsp;&quot; + &quot;&lt;/p&gt;&quot;,
					maxWidth: 100   
				});
				arrInfoWindows[i] = infowindow;
				google.maps.event.addListener(marker, 'click', function() {
					infowindow.open(map, marker);
				});
			});
		});
		    
	}
	$(function(){
		// initialize map (create markers, infowindows and list)
		mapInit();
		
		// &quot;live&quot; bind click event
		$(&quot;#markers a&quot;).live(&quot;click&quot;, function(){
			var i = $(this).attr(&quot;rel&quot;);
			arrInfoWindows[i].open(map, arrMarkers[i]);
		});
	});
</pre></p>
<p>And there you have it.</p>
<p><a href="http://rachelmdonovan.files.wordpress.com/2011/02/picture-2.jpg"><img src="http://rachelmdonovan.files.wordpress.com/2011/02/picture-2.jpg?w=300&#038;h=192" alt="" title="Picture 2" width="300" height="192" class="alignnone size-medium wp-image-285" /></a></p>
<p>Let me know if you have any questions or comments.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rachelmdonovan.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rachelmdonovan.wordpress.com/274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rachelmdonovan.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rachelmdonovan.wordpress.com/274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rachelmdonovan.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rachelmdonovan.wordpress.com/274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rachelmdonovan.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rachelmdonovan.wordpress.com/274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rachelmdonovan.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rachelmdonovan.wordpress.com/274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rachelmdonovan.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rachelmdonovan.wordpress.com/274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rachelmdonovan.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rachelmdonovan.wordpress.com/274/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rachelmdonovan.wordpress.com&amp;blog=7355682&amp;post=274&amp;subd=rachelmdonovan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rachelmdonovan.wordpress.com/2011/02/03/rails-and-google-maps/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/53bdd1af6cc4720031cf85e9ac247df7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rachel</media:title>
		</media:content>

		<media:content url="http://rachelmdonovan.files.wordpress.com/2011/02/picture-1.jpg?w=300" medium="image">
			<media:title type="html">json example</media:title>
		</media:content>

		<media:content url="http://rachelmdonovan.files.wordpress.com/2011/02/picture-2.jpg?w=300" medium="image">
			<media:title type="html">Picture 2</media:title>
		</media:content>
	</item>
		<item>
		<title>Spree templating (rails3, spree.3)</title>
		<link>http://rachelmdonovan.wordpress.com/2011/01/18/spree-templating-rails3-spree-3/</link>
		<comments>http://rachelmdonovan.wordpress.com/2011/01/18/spree-templating-rails3-spree-3/#comments</comments>
		<pubDate>Tue, 18 Jan 2011 23:30:20 +0000</pubDate>
		<dc:creator>rachel</dc:creator>
				<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[front-end development]]></category>
		<category><![CDATA[rails]]></category>

		<guid isPermaLink="false">http://rachelmdonovan.wordpress.com/?p=262</guid>
		<description><![CDATA[I recently started a new project that included a spree store and I hadn&#8217;t done a spree implementation since they changed their contemplating logic. I had a really hard time finding comprehensive documentation on how to &#8216;skin&#8217; the site to match that of my clients, so here are my notes. The setup &#8211; Rails 3, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rachelmdonovan.wordpress.com&amp;blog=7355682&amp;post=262&amp;subd=rachelmdonovan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I recently started a new project that included a spree store and I hadn&#8217;t done a spree implementation since they changed their contemplating logic. I had a really hard time finding comprehensive documentation on how to &#8216;skin&#8217; the site to match that of my clients, so here are my notes.</p>
<p>The setup &#8211; Rails 3, Ruby 1.9.2, Spree .30.1</p>
<p><strong>Getting Spree running</strong></p>
<p>Spree&#8217;s <a href="http://spreecommerce.com/documentation/getting_started.html" target="_blank">getting started guide</a> is really helpful is getting the initial store up and running.</p>
<p>I decided not to bring over all the test data instead just created an admin user and started from scratch.</p>
<p><pre class="brush: bash;">rake db:admin:create</pre></p>
<p>Through the admin (/admin) configuration tab, you can change the store name and  title .</p>
<p><strong> </strong></p>
<p>When you look around your spree app file structure you&#8217;ll notice you  don&#8217;t see any of the views and if you edit the application layout  nothing happens. To add your theme you will have to create an extension and make your customizations there.</p>
<p><strong>Create an extension for your theme</strong><br />
First change the spree gemfile to in your Gemfile to</p>
<p><pre class="brush: ruby;">gem 'spree', :git =&gt; &quot;git://github.com/railsdog/spree.git&quot;, :tag =&gt; &quot;v0.30.1&quot;</pre></p>
<p>and run bundle install</p>
<p>You can then create the extension</p>
<p><pre class="brush: bash;">rails g spree:extension foo</pre></p>
<p>A foo folder will now be in your project directory.</p>
<p>You can edit the application layout /foo/app/views/layouts/spree_application.html.erb</p>
<p>I did all my stylesheet editing outside of the extension &#8211; public/stylesheets (doesn&#8217;t seem like a best practice, but it didn&#8217;t work when i added css inside of the extensions public folder)</p>
<p><strong>Hooks</strong><br />
Now lets say you want to add some code to one of the views, hooks is the best way to do this. Hooks basically provide a bookmark in the code that you can insert_before, insert_after, remove, or replace.</p>
<p>This is from an older version, but it was the best explanation of how to  use hooks I could find: <a href="http://spreecommerce.com/legacy/0-11-x/theming.html#hooks" target="_blank">Spree hooks (v 0.11) </a></p>
<p>Add hooks in the following file /foo/lib/foo_hooks.rb</p>
<p><pre class="brush: ruby;">
class FooHooks &lt; Spree::ThemeSupport::HookListener

insert_before :homepage_products, :text =&gt; &quot;HELLO!&quot;

insert_after :product_description do
'&lt;p&gt;&lt;%= link_to(&quot;Back to products&quot;, products_path) %&gt;&lt;/p&gt;'
end
end
</pre></p>
<p>Note &#8211; I noticed that you have to restart rails server for the hook changes to work.</p>
<p>To get a full list of hooks you can run grep -rh &#8216;hook :&#8217; core/app/views | sed &#8216;s/^.*hook\s*//;s/[, ].*//&#8217; | sort | uniq   or view this <a href="http://spreecommerce.com/documentation/hooks.html" target="_blank">basic list of hooks</a> from the spree guides.</p>
<p>If you can&#8217;t access the part of the file you need with hooks, you can override the core views.</p>
<p><strong>Overriding Spree Core Files</strong><br />
By default files in your extension will override the core files.</p>
<p>For example I copied<br />
/Users/me/.rvm/gems/ruby-1.9.2-p0/gems/spree_core-0.30.1/app/views/products/index.html.erb<br />
to /foo/app/views/products/index.html.erb<br />
and then made the needed changes.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rachelmdonovan.wordpress.com/262/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rachelmdonovan.wordpress.com/262/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rachelmdonovan.wordpress.com/262/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rachelmdonovan.wordpress.com/262/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rachelmdonovan.wordpress.com/262/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rachelmdonovan.wordpress.com/262/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rachelmdonovan.wordpress.com/262/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rachelmdonovan.wordpress.com/262/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rachelmdonovan.wordpress.com/262/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rachelmdonovan.wordpress.com/262/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rachelmdonovan.wordpress.com/262/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rachelmdonovan.wordpress.com/262/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rachelmdonovan.wordpress.com/262/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rachelmdonovan.wordpress.com/262/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rachelmdonovan.wordpress.com&amp;blog=7355682&amp;post=262&amp;subd=rachelmdonovan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rachelmdonovan.wordpress.com/2011/01/18/spree-templating-rails3-spree-3/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/53bdd1af6cc4720031cf85e9ac247df7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rachel</media:title>
		</media:content>
	</item>
		<item>
		<title>imageMagick, postgreSQL, git, macPorts -&gt; a mess of errors and how I fixed it</title>
		<link>http://rachelmdonovan.wordpress.com/2011/01/18/imagemagick-postgresql-git-macports-a-mess-of-errors-and-how-i-fixed-it/</link>
		<comments>http://rachelmdonovan.wordpress.com/2011/01/18/imagemagick-postgresql-git-macports-a-mess-of-errors-and-how-i-fixed-it/#comments</comments>
		<pubDate>Tue, 18 Jan 2011 14:27:43 +0000</pubDate>
		<dc:creator>rachel</dc:creator>
				<category><![CDATA[rails]]></category>
		<category><![CDATA[tidbits]]></category>

		<guid isPermaLink="false">http://rachelmdonovan.wordpress.com/?p=258</guid>
		<description><![CDATA[It seemed like a simple task, install imageMagick, but the ramifications were far from simple. I&#8217;ll be honest, I&#8217;m not sure where exactly I went wrong, so bear with me as I walk you threw what happened to me and how I fixed it. I installed ImageMagick (it takes forever by the way) I went [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rachelmdonovan.wordpress.com&amp;blog=7355682&amp;post=258&amp;subd=rachelmdonovan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It seemed like a simple task, install imageMagick, but the ramifications were far from simple. I&#8217;ll be honest, I&#8217;m not sure where exactly I went wrong, so bear with me as I walk you threw what happened to me and how I fixed it.</p>
<ul>
<li>I installed ImageMagick (it takes forever by the way)</li>
<li>I went back into my project (a Rails 3 spree site) and it threw a postgres error</li>
<li>I went into some other projects (all Rails 2.x) and also got prostgres errors</li>
<li>After some researching I found info that suggested using the postgres-pr gem instead of pg, this fixed the Rails 2.x projects but not my Rails 3 project.</li>
<li>I took a break from dealing with this issue and decided to make a quick change to one of the Rails 2.x projects, when i went to commit, i got a git error <pre class="brush: bash;">git dyld: Library not loaded</pre></li>
<li>A teammate had seen this error before and suggested I update MacPorts <pre class="brush: bash;">sudo port -d selfupdate</pre></li>
<li>This again took forever, but once it was done, git was back to working and I was able to get my Rails 3 project up and running using the pg gem!</li>
<li>After restarting my computer postgresql server wouldn&#8217;t start. I had to reset the service that auto starts postgres server <pre class="brush: bash;">sudo launchctl load -w
/Library/LaunchDaemons/org.macports.postgresql83-server.plist</pre> and restart and I was back to good.
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rachelmdonovan.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rachelmdonovan.wordpress.com/258/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rachelmdonovan.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rachelmdonovan.wordpress.com/258/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rachelmdonovan.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rachelmdonovan.wordpress.com/258/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rachelmdonovan.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rachelmdonovan.wordpress.com/258/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rachelmdonovan.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rachelmdonovan.wordpress.com/258/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rachelmdonovan.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rachelmdonovan.wordpress.com/258/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rachelmdonovan.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rachelmdonovan.wordpress.com/258/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rachelmdonovan.wordpress.com&amp;blog=7355682&amp;post=258&amp;subd=rachelmdonovan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rachelmdonovan.wordpress.com/2011/01/18/imagemagick-postgresql-git-macports-a-mess-of-errors-and-how-i-fixed-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/53bdd1af6cc4720031cf85e9ac247df7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rachel</media:title>
		</media:content>
	</item>
		<item>
		<title>I &lt;3 middelman, a ruby static site generator</title>
		<link>http://rachelmdonovan.wordpress.com/2011/01/03/i-3-middelman-a-ruby-static-site-generator/</link>
		<comments>http://rachelmdonovan.wordpress.com/2011/01/03/i-3-middelman-a-ruby-static-site-generator/#comments</comments>
		<pubDate>Mon, 03 Jan 2011 18:01:12 +0000</pubDate>
		<dc:creator>rachel</dc:creator>
				<category><![CDATA[front-end development]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://rachelmdonovan.wordpress.com/?p=253</guid>
		<description><![CDATA[After using Rails for so many projects, going back to building a big static site was painful until I found middleman. What I love about Middleman super easy to get running uses templates utilizes haml / sass you can use ruby helpers nice workflow its easy to migrate into rails &#8211; if the site switches [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rachelmdonovan.wordpress.com&amp;blog=7355682&amp;post=253&amp;subd=rachelmdonovan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>After using Rails for so many projects, going back to building a big static site was painful until I found middleman.</p>
<p>What I love about Middleman</p>
<ul>
<li>super easy to get running</li>
<li>uses templates</li>
<li>utilizes haml / sass</li>
<li>you can use ruby helpers</li>
<li>nice workflow</li>
<li>its easy to migrate into rails &#8211; if the site switches over to an app</li>
<li>a lot of other goodies</li>
</ul>
<p>So if you have an static site on the horizon, I highly suggest giving <a href="http://awardwinningfjords.com/2009/10/22/middleman.html">middleman </a>a try.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rachelmdonovan.wordpress.com/253/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rachelmdonovan.wordpress.com/253/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rachelmdonovan.wordpress.com/253/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rachelmdonovan.wordpress.com/253/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rachelmdonovan.wordpress.com/253/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rachelmdonovan.wordpress.com/253/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rachelmdonovan.wordpress.com/253/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rachelmdonovan.wordpress.com/253/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rachelmdonovan.wordpress.com/253/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rachelmdonovan.wordpress.com/253/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rachelmdonovan.wordpress.com/253/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rachelmdonovan.wordpress.com/253/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rachelmdonovan.wordpress.com/253/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rachelmdonovan.wordpress.com/253/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rachelmdonovan.wordpress.com&amp;blog=7355682&amp;post=253&amp;subd=rachelmdonovan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rachelmdonovan.wordpress.com/2011/01/03/i-3-middelman-a-ruby-static-site-generator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/53bdd1af6cc4720031cf85e9ac247df7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rachel</media:title>
		</media:content>
	</item>
		<item>
		<title>A Week in the Life of a Web Dev / Project Manager</title>
		<link>http://rachelmdonovan.wordpress.com/2010/12/13/a-week-in-the-life-of-a-web-dev-project-manager/</link>
		<comments>http://rachelmdonovan.wordpress.com/2010/12/13/a-week-in-the-life-of-a-web-dev-project-manager/#comments</comments>
		<pubDate>Mon, 13 Dec 2010 15:18:00 +0000</pubDate>
		<dc:creator>rachel</dc:creator>
				<category><![CDATA[pm]]></category>
		<category><![CDATA[teleworking]]></category>

		<guid isPermaLink="false">http://rachelmdonovan.wordpress.com/?p=216</guid>
		<description><![CDATA[Like most people I wear lots of hats at work so I thought it would be interesting to write it all down and share with the world. Monday Monday is one of the two days of the week that I go into the office, it is by far my most business filled day of the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rachelmdonovan.wordpress.com&amp;blog=7355682&amp;post=216&amp;subd=rachelmdonovan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Like most people I wear lots of hats at work so I thought it would be interesting to write it all down and share with the world.</p>
<p><strong>Monday</strong><br />
Monday is one of the two days of the week that I go into the office, it is by far my most business filled day of the week. Here&#8217;s what happened:</p>
<ul>
<li>got into the office around 8:30 am</li>
<li>tested an app we moved over to a new server</li>
<li>wrote a blog post</li>
<li>reviewed scope and features list of a project that has resurfaced</li>
<li>compared beta launch website with full site architecture and sent content to do list to client</li>
<li>worked back and forth with a developer on a client timeline</li>
<li>helped an elearning client with some training</li>
<li>conference call to discuss custom feature list for spree e-commerce implementation</li>
<li>conference call to discuss setting up a blog</li>
<li>team meeting</li>
<li>recommend an approach for phase 2 of a project</li>
<li>reviewed testing feedback on a new product we are working on</li>
<li>6 pm i finally opened terminal and textmate to start coding</li>
<li>working on the dashboard ux to new product, focused on fixing some styles and pulling stats from an account to display correctly.</li>
<li>called it a day a little after 7pm</li>
</ul>
<p><strong>Tuesday</strong><br />
A work from home day, which always feels nice after a long Monday.</p>
<ul>
<li>Got up, made my coffee, ate an eggo, and hit inbox 0</li>
<li>reviewed our contractor hours, logged into projects, and passed on to payroll</li>
<li>quick call with a client about some press they are getting today and a few updates they wanted made before hand</li>
<li>updated manuals and training documentation for an elearning client</li>
<li>made some changes to a clients display of their twitter feed, cross browser fixes, deployed to production</li>
<li>created an outline of information needed to set up client blog</li>
<li>conf call with a client and their PCI compliance consultant</li>
<li>did some research and then a bunch of small tasks</li>
<li>tested a spree app for client feature requests and researched possible solutions</li>
<li>called it a day at 5:30</li>
</ul>
<p><strong>Wednesday</strong><br />
Another office day.</p>
<ul>
<li>got into the office around 9am</li>
<li>helped an elearning client outline steps needed for switching courses over for the new year</li>
<li>made a pretty graphic timeline for a project</li>
<li>made a pre-launch checklist for another project</li>
<li>ran a monthly account report for a client and then projected tasks and budget for the next few months</li>
<li>worked on fixing a deployment bug</li>
<li>collaborated with team on finalizing new product pricing</li>
<li>spent lots of time in rails console working on some data associations</li>
<li>reviewed ux of a screen with team, made some front-end updates</li>
<li>send a proposal to a prospective client</li>
<li>answered a bunch of emails and called it a day around 7pm</li>
</ul>
<p><strong>Thursday</strong><br />
A work at home day</p>
<ul>
<li>start working around 8am</li>
<li>followed up on a few things, hit inbox 0</li>
<li>start working on moving a site from middleman (a ruby static site generator) to a rails app</li>
<li>got side tracked with a publisher who misplaced a client ad placement, a client request for a proposal, and a lost deal</li>
<li>finished up transitioning the sites template and homepage to rails, deployed to staging</li>
<li>pulled down a new e-commerce site I need to do some work on, noticed it was in rails3, spent some time getting it running on my local</li>
<li>switched gears to a project that&#8217;s v2 is launching soon, worked on some bugs that only show up on the staging site</li>
<li>stopped working around 6pm</li>
</ul>
<p><strong>Friday</strong><br />
Another work at home day</p>
<ul>
<li>fit in a short workout before sitting down at 9am</li>
<li>started off where i left off last night, working on a bug on the staging server, finally fixed it</li>
<li>reviewed the security of a bunch of new features, made some tweaks and notes to client clarifying roles</li>
<li>pulled together the details needed for a client invoice</li>
<li>started coding an area of an app that shows certain recent activity of account users</li>
<li>wrapped up my day around 4, needed to get a head start on the weekend!</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rachelmdonovan.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rachelmdonovan.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rachelmdonovan.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rachelmdonovan.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rachelmdonovan.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rachelmdonovan.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rachelmdonovan.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rachelmdonovan.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rachelmdonovan.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rachelmdonovan.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rachelmdonovan.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rachelmdonovan.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rachelmdonovan.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rachelmdonovan.wordpress.com/216/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rachelmdonovan.wordpress.com&amp;blog=7355682&amp;post=216&amp;subd=rachelmdonovan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rachelmdonovan.wordpress.com/2010/12/13/a-week-in-the-life-of-a-web-dev-project-manager/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/53bdd1af6cc4720031cf85e9ac247df7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rachel</media:title>
		</media:content>
	</item>
		<item>
		<title>inbox 0</title>
		<link>http://rachelmdonovan.wordpress.com/2010/12/06/inbox-0/</link>
		<comments>http://rachelmdonovan.wordpress.com/2010/12/06/inbox-0/#comments</comments>
		<pubDate>Mon, 06 Dec 2010 15:53:10 +0000</pubDate>
		<dc:creator>rachel</dc:creator>
				<category><![CDATA[tidbits]]></category>

		<guid isPermaLink="false">http://rachelmdonovan.wordpress.com/?p=214</guid>
		<description><![CDATA[A messy inbox drives me nuts, each morning I work down to inbox 0 and most nights before leaving work (unless it was a crazy day) i try and hit it again. I recently talked about hitting inbox 0 in presently (our internal microblog) and was asked how do i do it? Heres how: I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rachelmdonovan.wordpress.com&amp;blog=7355682&amp;post=214&amp;subd=rachelmdonovan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A messy inbox drives me nuts, each morning I work down to inbox 0 and  most nights before leaving work (unless it was a crazy day) i try and  hit it again. I recently talked about hitting inbox 0 in presently (our  internal microblog) and was asked how do i do it? Heres how:</p>
<ul>
<li>I take it seriously and recognize that its a task that takes time</li>
<li>When I sit down to process my email I&#8217;m ready to focus on it, I  close everything else but my browser running gmail  and my tasks.txt  file</li>
<li>I start at the top and read each email at the end decided, does this  require an action? If so, will that action take less than 2 minutes ,  if so I do the action (pulled from David Allens 2 min rule) and then  file the email. If it will take greater than 2 minutes, I star the  email, file it in my client folder/label and jot in down in my tasks.txt  file. If the email requires no action I either trash it or file it</li>
<li>Once I&#8217;ve hit inbox 0, I go in and review my starred emails, making  sure any completed / followed up on emails are removed and the right  stuff is on my tasks list.</li>
<li>To fly threw this process, I find the gmail web interface with  keyboard shortcuts enabled works best. s, v, label, j, enter, #, gi, gs,  learn it, love it. <a href="http://mail.google.com/support/bin/answer.py?hl=en&amp;answer=6594">Gmail keyboard shortcuts explained</a></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rachelmdonovan.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rachelmdonovan.wordpress.com/214/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rachelmdonovan.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rachelmdonovan.wordpress.com/214/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rachelmdonovan.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rachelmdonovan.wordpress.com/214/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rachelmdonovan.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rachelmdonovan.wordpress.com/214/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rachelmdonovan.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rachelmdonovan.wordpress.com/214/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rachelmdonovan.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rachelmdonovan.wordpress.com/214/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rachelmdonovan.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rachelmdonovan.wordpress.com/214/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rachelmdonovan.wordpress.com&amp;blog=7355682&amp;post=214&amp;subd=rachelmdonovan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rachelmdonovan.wordpress.com/2010/12/06/inbox-0/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/53bdd1af6cc4720031cf85e9ac247df7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rachel</media:title>
		</media:content>
	</item>
		<item>
		<title>my toolbox &#8211; a collection of my favorite helpers</title>
		<link>http://rachelmdonovan.wordpress.com/2010/12/02/my-toolbox-a-collection-of-my-favorite-helpers/</link>
		<comments>http://rachelmdonovan.wordpress.com/2010/12/02/my-toolbox-a-collection-of-my-favorite-helpers/#comments</comments>
		<pubDate>Thu, 02 Dec 2010 18:14:38 +0000</pubDate>
		<dc:creator>rachel</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[front-end development]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://rachelmdonovan.wordpress.com/?p=212</guid>
		<description><![CDATA[I&#8217;ve started to an overview list of my favorite gems, plugins and solutions to common requests. Take a peek over at github.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rachelmdonovan.wordpress.com&amp;blog=7355682&amp;post=212&amp;subd=rachelmdonovan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve started to an overview list of my favorite gems, plugins and solutions to common requests.</p>
<p><a href="https://github.com/racheldonovan/toolbox/blob/master/toolbox.txt">Take a peek over at github</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rachelmdonovan.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rachelmdonovan.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rachelmdonovan.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rachelmdonovan.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rachelmdonovan.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rachelmdonovan.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rachelmdonovan.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rachelmdonovan.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rachelmdonovan.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rachelmdonovan.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rachelmdonovan.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rachelmdonovan.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rachelmdonovan.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rachelmdonovan.wordpress.com/212/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rachelmdonovan.wordpress.com&amp;blog=7355682&amp;post=212&amp;subd=rachelmdonovan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rachelmdonovan.wordpress.com/2010/12/02/my-toolbox-a-collection-of-my-favorite-helpers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/53bdd1af6cc4720031cf85e9ac247df7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rachel</media:title>
		</media:content>
	</item>
	</channel>
</rss>
