<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>particulars</title>
	<atom:link href="http://www.mimiflynn.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.mimiflynn.com/blog</link>
	<description>regarding my life with the internet</description>
	<lastBuildDate>Tue, 30 Mar 2010 00:01:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>CSS columns that expand to full/equal vertical height</title>
		<link>http://www.mimiflynn.com/blog/?p=194</link>
		<comments>http://www.mimiflynn.com/blog/?p=194#comments</comments>
		<pubDate>Tue, 30 Mar 2010 00:01:16 +0000</pubDate>
		<dc:creator>Mimi</dc:creator>
				<category><![CDATA[Front-End Development]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://www.mimiflynn.com/blog/?p=194</guid>
		<description><![CDATA[column stuff lots more column stuff to make it a longer column lots more column stuff to make it a longer column lots more column stuff to make it a longer column This is a transcript from a Facebook conversation regarding CSS columns that expand to full/equal vertical height: Anon Friend March 1 at 3:48pm [...]]]></description>
			<content:encoded><![CDATA[<div style="background: #9f9;clear:both;overflow:hidden;border:1px solid #000;width:300px;margin:2em auto;">
<div class="short column" style="float:left; width:90px;padding:5px;">
column stuff
</div>
<div class="tall column" style="float:left; background:#f66;width:190px;padding:5px;">
lots more column stuff to make it a longer column lots more column stuff to make<br />
it a longer column lots more column stuff to make it a longer column
</div>
</div>
<p>This is a transcript from a Facebook conversation regarding CSS columns that expand to full/equal vertical height:</p>
<p><strong>Anon Friend</strong> March 1 at 3:48pm<br />
FUCK THEM OMGOMGOMG I&#8221;M GONNA USE A TABLE</p>
<p>Thank you, I needed that.</p>
<p><strong>Mimi Flynn</strong> March 1 at 3:55pm<br />
NO!!! DON&#8217;T DO IT!!!<br />
 <span id="more-194"></span><br />
<strong>Anon Friend</strong> March 1 at 3:58pm<br />
See comment I just posted: <a href="http://www.entertainingcode.com/archives/the-broken-web/">http://www.entertainingcode.com/archives/the-broken-web/</a></p>
<p>The linked article seems absolutely right to me.</p>
<p><strong>Mimi Flynn</strong> March 1 at 4:02pm<br />
i&#8217;m really starting to wonder what you&#8217;re trying to do. I&#8217;m filled with suggestions, but nothing to reference.</p>
<p><strong>Anon Friend</strong> March 1 at 4:08pm<br />
I need two columns side-by-side (1 px border between them), left one with background color A, right one with background color B. Thus they both need to be the same height, i.e. the smaller one needs to vertically expand to be the same height as the larger one. See the article linked from Hacker News for the various ways to do this without tables, none of them remotely good.</p>
<p>Or maybe I should just say &#8220;the web doesn&#8217;t really support this&#8221; and design appropriately, i.e. just let the left sidebar be small, a little parasitic attachment on the main content area, the right column. That&#8217;s philosophically attractive, but, damn, the web *should* support basic multi-column layout.</p>
<p><strong>Mimi Flynn</strong> March 1 at 4:17pm<br />
Is these columns nested inside of a larger div? you could make the larger div the smaller column&#8217;s background color and position the other column in such a way that none of that color shows around it.</p>
<p>so:</p>
<pre>
<code>
&lt;div style="background: #0f0;clear:both;overflow:hidden;border:1px solid #000;
width:300px;"&gt;
&lt;div class="short column" style="float:left; width:100px;"&gt;
column stuff
&lt;/div&gt;
&lt;div class="tall column" style="float:left; background:#f00;width:200px;"&gt;
lots more column stuff to make it a longer column lots more column stuff to make
it a longer column lots more column stuff to make it a longer column
&lt;/div&gt;
&lt;/div&gt;
</code>
</pre>
<p><strong>Anon Friend</strong> March 1 at 11:16pm<br />
I&#8217;m almost certain there&#8217;s a reason that won&#8217;t work for my situation (like I&#8217;ve been down that road before) but I look forward to investigating more in the morning. I&#8217;ll let you know. Thank you!</p>
<p>In the meantime: what&#8217;s the intent of the clear:both and overflow:hidden in your outer div?</p>
<p><strong>Mimi Flynn</strong> March 2 at 8:09am<br />
clear:both; will clear the floats of the inner divs in some browsers</p>
<p>overflow:hidden; reminds the browser to wrap the outer div around the floated contents (thus, bringing the background color down to the bottom of the tallest column) instead of it just staying up around the top. If you didn&#8217;t use this the first time you tried this method, you probably didn&#8217;t see the background of the outer div under the shorter column.</p>
<p><strong>Anon Friend</strong> March 3 at 12:37pm<br />
Oh no, once you let tables in just a little bit, it&#8217;s too late, they take over everything! They&#8217;re like Satan putting his foot inside the door.</p>
<p><strong>Mimi Flynn</strong> March 3 at 1:23pm<br />
i knew it&#8230; another win for Satan&#8230; damn.</p>
<h3>Its a common problem for beginners, really.</h3>
<p>In a <a href="http://www.alistapart.com/articles/fauxcolumns/">2004 article</a> for <a href="http://www.alistapart.com">A List Apart</a>, Dan Cederholm approached this common question:</p>
<blockquote><p>
How do you get the right column’s background color to extend all the way down the page?
</p></blockquote>
<p>In a time when HTML code was shifting from tables to HTML and CSS for style, this became a common issue.</p>
<h3>A little more advanced&#8230;</h3>
<p>Recently, while working on new project, I&#8217;ve been wondering how I can get multiple columns to match in height when the content is dynamic.  I knew that jQuery could <a href="http://users.tpg.com.au/j_birch/plugins/superfish/#examples">stretch scroll-down menus horizontally to the width of the longest item</a>, so, I did a quick search and found an <a href="http://www.filamentgroup.com/lab/setting_equal_heights_with_jquery/">EqualHeights</a> plugin, which, funnily enough, linked to the above article in A List Apart.</p>
<p>You can see the finished product at <a href="http://yellowtrenchcoat.com">yellowtrenchcoat.com</a>.  Each list-item height is set to the tallest item in the unordered list.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mimiflynn.com/blog/?feed=rss2&amp;p=194</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tools for test sites locally</title>
		<link>http://www.mimiflynn.com/blog/?p=180</link>
		<comments>http://www.mimiflynn.com/blog/?p=180#comments</comments>
		<pubDate>Wed, 10 Mar 2010 01:24:07 +0000</pubDate>
		<dc:creator>Mimi</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[MAMP]]></category>
		<category><![CDATA[WAMP]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.mimiflynn.com/blog/?p=180</guid>
		<description><![CDATA[It used to be that one would have to finagle with their Mac OS X to get a test server running. I&#8217;ve spent many an hour on my old titanium Powerbook typing away at the terminal essentially feeling about in the dark, until PHP would parse in my browser from a local directory. Now, we [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://wonder-wander.com/wp-content/uploads/2010/03/ampstack_header-e1268067096332.png" alt="screenshot of Acquia Drupal control pane" title="ampstack_header" width="670" height="199" class="alignnone size-full wp-image-541" /></p>
<p>It used to be that one would have to finagle with their Mac OS X to get a test server running.  I&#8217;ve spent many an hour on my old titanium Powerbook typing away at the terminal essentially feeling about in the dark, until PHP would parse in my browser from a local directory.</p>
<p>Now, we have options! Need a local testing environment to work on your latest WordPress theme?  Trying to discover the magical combination of CCK, Views and Panels to make Drupal do what you want but you&#8217;re in flight and too cheap to pay $13 for 3 hrs of wireless?</p>
<p>Windows:<br />
<a href="http://www.wampserver.com/en/index.php">WAMPserver</a></p>
<p>Mac:<br />
<a href="http://www.mamp.info/en/index.html">MAMP</a></p>
<p>Windows, Mac, *nix:<br />
<a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a><br />
<a href="http://acquia.com/downloads">Acquia Drupal Stack</a> &#8211; automatically installs Acquia Drupal as well as Apache, MySQL, and PHP.  Easily creates new Drupal sites with control panel interface.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mimiflynn.com/blog/?feed=rss2&amp;p=180</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick Tip: &lt;embed&gt; z-index like issues</title>
		<link>http://www.mimiflynn.com/blog/?p=165</link>
		<comments>http://www.mimiflynn.com/blog/?p=165#comments</comments>
		<pubDate>Wed, 24 Feb 2010 18:19:00 +0000</pubDate>
		<dc:creator>Mimi</dc:creator>
				<category><![CDATA[Front-End Development]]></category>
		<category><![CDATA[embed]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.mimiflynn.com/blog/?p=165</guid>
		<description><![CDATA[Add the following attributes to all embedded videos or maps that appear in front of a static element (such as a toolbar or footer bar) to push them back where they belong: style="z-index: 0" wmode="transparent" Its very rare that you would need to do this, but more statically positioned toolbars and such have been popping [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://wonder-wander.com/wp-content/uploads/2010/02/embed1.jpg" alt="Video showing in front of static element" /></p>
<p>Add the following attributes to all embedded videos or maps that appear in front of a static element (such as a toolbar or footer bar) to push them back where they belong:</p>
<pre><code>style="z-index: 0" wmode="transparent"</code></pre>
<p><img src="http://wonder-wander.com/wp-content/uploads/2010/02/embed2.jpg" alt="Video showing behind static element" /></p>
<p>Its very rare that you would need to do this, but more <a href="http://www.outlawdesignblog.com/2010/episode-20-staying-organized-as-a-freelancer/?utm_source=feedburner&#038;utm_medium=feed&#038;utm_campaign=Feed:+OutlawDesign+(Outlaw+Design)&#038;utm_content=Twitter">statically</a> <a href="http://abduzeedo.com/">positioned</a> <a href="http://wibiya.com/">toolbars</a> and such have been popping up all over the place, so, it seems it will become more and more common as this trend spreads.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mimiflynn.com/blog/?feed=rss2&amp;p=165</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Suggested Articles for Beginners</title>
		<link>http://www.mimiflynn.com/blog/?p=114</link>
		<comments>http://www.mimiflynn.com/blog/?p=114#comments</comments>
		<pubDate>Mon, 15 Feb 2010 18:11:57 +0000</pubDate>
		<dc:creator>Mimi</dc:creator>
				<category><![CDATA[In the Blogosphere]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[process]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://www.mimiflynn.com/blog/?p=114</guid>
		<description><![CDATA[After reading an entry on Nettuts regarding 10 tutorials for beginning web designers I got to thinking &#8220;What would I suggest beginning web designers and developers read to give them a more rounded perspective on their new career?&#8221;. So, I compiled this list. I attempted to included articles that focus on areas outside of the [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://mimiflynn.com/blog/wp-content/uploads/wheretostart.jpg" alt=unfinished room with chairs" /></p>
<p>After reading an entry on Nettuts regarding <a href="http://net.tutsplus.com/articles/web-roundups/10-hand-picked-tutorials-for-beginning-web-designers/">10 tutorials for beginning web designers</a> I got to thinking &#8220;What would I suggest beginning web designers and developers read to give them a more rounded perspective on their new career?&#8221;. So, I compiled this list.  I attempted to included articles that focus on areas outside of the tools of the trade (coding, Photoshop) and more on the actual practice of web design and development (process, business, usability, etc.).<br />
<span id="more-114"></span></p>
<h3>Design Process</h3>
<p>When approached with a new project, where do you start?  A lot goes on before you open up Photoshop or start coding.  These are tips on how to organize your clients needs to create a site they love.</p>
<ul>
<li><a href="http://www.sitepoint.com/blogs/2009/05/18/developing-your-design-process/">Developing Your Design Process</a></li>
<li><a href="http://www.webdesignerdepot.com/2009/07/using-wireframes-to-streamline-your-development-process/">Using Wireframes to Streamline Your Development Process</a></li>
<li><a href="http://medialoot.com/blog/5-ways-to-streamline-your-web-design-workflow/">5 Ways To Streamline Your Web-Design Workflow</a></li>
</ul>
<h3>Business</h3>
<p>Knowing how to code doesn&#8217;t mean you know how to talk to clients, run a business, or prevent someone from stealing your ideas and designs.  The following will help you begin to understand how to approach these issues.</p>
<ul>
<li><a href="http://www.pearsonified.com/2006/06/how_much_should_a_design_cost.php">How Much Should a Web Design Cost?</a></li>
<li><a href="http://www.sitepoint.com/blogs/2009/05/19/how-to-set-boundaries/">How To Set Boundaries With Clients</a></li>
<li><a href="https://myows.com/">Myows universal copyright management and protection app for smart creatives</a></li>
</ul>
<h3>Site Elements</h3>
<p>The next three articles are to give insight into how much thought needs to go into each element of the site.  Its not just supposed to be pretty, it needs to be functional.</p>
<ul>
<li><a href="http://www.webdesignerdepot.com/2010/02/how-to-grow-as-a-web-designer/">How to Grow as a Web Designer</a></li>
<li><a href="http://woorkup.com/2010/02/07/anatomy-of-the-perfect-sidebar/">Anatomy of The Perfect Sidebar</a></li>
<li><a href="http://www.noupe.com/design/tips-for-coding-and-designing-usable-web-forms.html">Tips for Coding and Designing Usable Web Forms</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.mimiflynn.com/blog/?feed=rss2&amp;p=114</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Front-End Code Checklist</title>
		<link>http://www.mimiflynn.com/blog/?p=46</link>
		<comments>http://www.mimiflynn.com/blog/?p=46#comments</comments>
		<pubDate>Fri, 12 Feb 2010 20:45:32 +0000</pubDate>
		<dc:creator>Mimi</dc:creator>
				<category><![CDATA[Front-End Development]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[microformats]]></category>
		<category><![CDATA[sitemap]]></category>
		<category><![CDATA[validation]]></category>
		<category><![CDATA[web standards]]></category>
		<category><![CDATA[xhtml]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://www.mimiflynn.com/blog/?p=46</guid>
		<description><![CDATA[The following is a code checklist to which I plan to adhere. If you look at my current sites, it will be easy to see that I have some work to do. Have any suggestions? Please post them in the comments. Code Validation Why validate your code? w3.org said it best: One of the important [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://mimiflynn.com/blog/wp-content/uploads/css.jpg" alt="CSS in a text editor" /></p>
<p>The following is a code checklist to which I plan to adhere.  If you look at my current sites, it will be easy to see that I have some work to do.</p>
<p>Have any suggestions? Please post them in the comments.<br />
<span id="more-46"></span></p>
<dl>
<dt>Code Validation</dt>
<dd>
<p>Why validate your code? <a href="http://validator.w3.org/docs/help.html#validation_basics" target="_blank">w3.org said it best</a>:</p>
<blockquote><p>
One of the important maxims of computer programming is: &#8220;Be conservative in what you produce; be liberal in what you accept.&#8221;</p>
<p>Browsers follow the second half of this maxim by accepting Web pages and trying to display them even if they&#8217;re not legal HTML. Usually this means that the browser will try to make educated guesses about what you probably meant. The problem is that different browsers (or even different versions of the same browser) will make different guesses about the same illegal construct; worse, if your HTML is really pathological, the browser could get hopelessly confused and produce a mangled mess, or even crash.</p>
<p>That&#8217;s why you want to follow the first half of the maxim by making sure your pages are legal HTML. The best way to do that is by running your documents through one or more HTML validators. </p></blockquote>
</dd>
<dd>
<ul>
<li><a href="http://validator.w3.org/" target="_blank">Markup Validation Service</a></li>
<li><a href="http://jigsaw.w3.org/css-validator/" target="_blank">CSS Validation Service</a></li>
<li><a href="http://validator.w3.org/checklink" target="_blank">Link Checker</a></li>
<li><a href="http://validator.w3.org/mobile/" target="_blank">W3CW3C mobileOK Checker</a></li>
</ul>
</dd>
<dt>Jump Links</dt>
<dd>Those long lists of menu links aren&#8217;t so handy when viewed without styles on a mobile phone or experienced through a screen reader.  Please give the option to &#8220;Jump to Main Content&#8221; and &#8220;Jump to Footer&#8221; and wherever else users will most likely want to &#8220;Jump&#8221; to.</dd>
<dd>
<pre>
<code>&lt;div id="goto"&gt;</code>
<code>	&lt;a href="#main"&gt;Main Content&lt;/a&gt; | &lt;a href="#footer"&gt;Footer&lt;/a&gt;</code>
<code>&lt;/div&gt;</code>
</pre>
</dd>
<dd>
<p>I put my jump links into a <code>&lt;div&gt;</code> that is styled into a 1 x 1 pixel spot.</p>
<pre>
<code>#goto {</code>
<code>	height:1px;</code>
<code>	text-indent:-9999px;</code>
<code>	width:1px;</code>
<code>}</code>
</pre>
</dd>
<dd>
<ul>
<li><a href="http://www.webnauts.net/skip-to-main-content.html" target="_blank">Skip to Main Content Links are Important</a></li>
<li><a href="http://www.usability.com.au/resources/page-content.cfm" target="_blank">Navigation Accessibility 2: Accessing Page Content </a></li>
<li><a href="http://diveintoaccessibility.org/day_11_skipping_over_navigation_links.html" target="_blank">Skipping over navigation links</a></li>
</ul>
</dd>
<dt>Print Styles</dt>
<dd>Another instance where those long navigation menus get in the way is when a website is printed.  Pages of links are useless and a waste.  Hide them and optimize your featured text for print.</dd>
<dd>
<pre>
<code>&lt;link media="print" href="css/print.css" type="text/css" rel="stylesheet" /&gt;</code>
</pre>
</dd>
<dd>
<ul>
<li><a href="http://www.alistapart.com/articles/goingtoprint/" target="_blank">CSS Design: Going to Print</a></li>
<li><a href="http://www.alistapart.com/articles/improvingprint/" target="_blank">Improving Link Display for Print</a></li>
<li><a href="http://www.alistapart.com/articles/alaprintstyles/" target="_blank">ALA’s New Print Styles</a></li>
</ul>
</dd>
<dt>Use <a href="http://microformats.org/" target="_blank">microformats</a> when possible</dt>
<dd>
<p><a href="http://microformats.org/" target="_blank">Microformats.org</a> puts it this way:</p>
<blockquote><p>Designed for humans first and machines second, microformats are a set of simple, open data formats built upon existing and widely adopted standards. </p></blockquote>
</dd>
<dd>
Overall, microformats are an effort to standardize the code for certain kind of information, such as calendar events or contact information, and make them exportable from the browser to a calendar or address book.
</dd>
<dd>
<ul>
<li><a href="http://microformats.org/" target="_blank">microformats.org</a></li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/4106" target="_blank">Operator Firefox Plugin</a> leverages microformats and other semantic data that are already available on many web pages to provide new ways to interact with web services. </li>
<li><a href="http://chrispederick.com/work/web-developer/" target="_blank">Web Developer Firefox Plugin</a> has features that can assist in the inclusion of microformats in your site.</li>
</ul>
</dd>
<dt>sitemap</dt>
<dd>
<p>What is a sitemap? <a href="http://www.sitemaps.org/" target="_blank">Sitemaps.org</a> sums it up this way:</p>
<blockquote><p>Sitemaps are an easy way for webmasters to inform search engines about pages on their sites that are available for crawling. In its simplest form, a Sitemap is an XML file that lists URLs for a site along with additional metadata about each URL (when it was last updated, how often it usually changes, and how important it is, relative to other URLs in the site) so that search engines can more intelligently crawl the site.</p>
<p>Web crawlers usually discover pages from links within the site and from other sites. Sitemaps supplement this data to allow crawlers that support Sitemaps to pick up all URLs in the Sitemap and learn about those URLs using the associated metadata. Using the Sitemap protocol does not guarantee that web pages are included in search engines, but provides hints for web crawlers to do a better job of crawling your site.</p></blockquote>
</dd>
<dd>
<ul>
<li><a href="http://www.sitemaps.org/" target="_blank">What are Sitemaps?</a></li>
<li><a href="http://www.xml-sitemaps.com/" target="_blank">Build your Site Map online</a></li>
</ul>
</dd>
<dt>Consolidate and compress CSS and Javascript files possible</dt>
<dd>To reduce calls to the server.</dd>
<dd>
<ul>
<li><a href="http://www.cssdrive.com/index.php/main/csscompressor/" target="_blank">CSS Drive &#8211; CSS Compressor</a></li>
<li><a href="http://jscompress.com/" target="_blank">Minify Javascript Online / Online Javascript Packer</a></li>
<li><a href="http://javascriptcompressor.com/" target="_blank">Online Javascript compressor</a></li>
<li><a href="http://code.google.com/p/minify/" target="_blank">php script</a>!</li>
</ul>
</dd>
<dt>Use sprites when possible</dt>
<dd>I have found sprites to be the most helpful to me when I am creating image roll-overs.  I had previously used two different images, but, upon hover, the original image would disappear completely for a second until the second image loaded.  With sprites,</dd>
<dd>
<ul>
<li><a href="http://www.alistapart.com/articles/sprites/" target="_blank">CSS Sprites: Image Slicing’s Kiss of Death</a></li>
<li><a href="http://www.wpbeginner.com/wp-themes/use-css-sprites-to-beautify-your-wordpress-post-dates/" target="_blank">Use CSS Sprites to Beautify your WordPress Post Dates (used on this site)</a></li>
</ul>
</dd>
<dt>favicon</dt>
<dd>
That little icon next to the URL of the website you currently viewing is called a &#8220;favicon&#8221; or &#8220;fav.ico&#8221;.  It is 16 x 16 pixels, usually a .png, and supports transparency.
</dd>
<dd>
<pre><code>&lt;link rel="Shortcut Icon" href="fav.ico" type="image/x-icon" /&gt;
</code></pre>
</dd>
<dt>iPhone Icon</dt>
<dd>If someone wants to bookmark your page to the homescreen of their iPhone, are you prepared with a custom icon?</dd>
<dd>
Create a 45px square icon and name it &#8220;apple-touch-icon.png&#8221; and pop it into the root directory, or link to it with:
</dd>
<dd>
<pre>
<code>&lt;link rel="apple-touch-icon" href="/directoryLocation/iphone-icon.png" /&gt;</code>
</pre>
</dd>
<dt>Google Analytics and Webmaster Tools</dt>
<dd>Really, why wouldn&#8217;t you.  Its free, filled with features, and provides an insight into your users that will help you better serve them.</dd>
<dd>
<ul>
<li><a href="http://www.google.com/analytics/" target="_blank">Analytics</a></li>
<li><a href="http://www.google.com/webmasters/tools" target="_blank">Webmaster Tools</a></li>
</ul>
</dd>
</dl>
<p>Please, feel free to post your additions in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mimiflynn.com/blog/?feed=rss2&amp;p=46</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
