<?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>David Leggett [TheLeggett]</title>
	<atom:link href="http://theleggett.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://theleggett.com</link>
	<description>Super Awesome Since 1988.</description>
	<lastBuildDate>Mon, 07 May 2012 00:26:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Web App Tester Updated</title>
		<link>http://theleggett.com/2012/05/06/web-app-tester-updated/</link>
		<comments>http://theleggett.com/2012/05/06/web-app-tester-updated/#comments</comments>
		<pubDate>Mon, 07 May 2012 00:26:37 +0000</pubDate>
		<dc:creator>David Leggett</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[web app tester]]></category>

		<guid isPermaLink="false">http://theleggett.com/?p=371</guid>
		<description><![CDATA[Web App Tester has been updated recently, but I never posted about the changes! There is now an iPad preview mode alongside the iPhone preview. A bigger update will come next that includes zoom-in/zoom-out functionality. See the official feedback/updates post here.]]></description>
			<content:encoded><![CDATA[<p><a href="http://theleggett.com/tools/webapptester/">Web App Tester</a> has been updated recently, but I never posted about the changes! There is now an iPad preview mode alongside the iPhone preview.</p>
<p>A bigger update will come next that includes zoom-in/zoom-out functionality.</p>
<p>See the official feedback/updates post <a href="http://theleggett.com/2011/05/12/web-app-tester-tool/">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://theleggett.com/2012/05/06/web-app-tester-updated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easy CSS Baseline Grid for Pretty Much Anything</title>
		<link>http://theleggett.com/2012/02/11/easy-css-baseline-grid-for-pretty-much-anything/</link>
		<comments>http://theleggett.com/2012/02/11/easy-css-baseline-grid-for-pretty-much-anything/#comments</comments>
		<pubDate>Sat, 11 Feb 2012 20:55:20 +0000</pubDate>
		<dc:creator>David Leggett</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[baseline grid]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[grid]]></category>

		<guid isPermaLink="false">http://theleggett.com/?p=356</guid>
		<description><![CDATA[I wanted to share a simple trick I&#8217;ve been using recently for quickly adding baseline grids to nearly any element on a page. It&#8217;s nothing too fancy, and it&#8217;s very easy to implement. Demo: Baseline Grid on Any Element Example Download Demo: easy_baseline_demo.zip (12KB) In the demo above, you&#8217;ll see various baseline grids (and combinations [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://theleggett.com/wp-content/uploads/2012/02/baseline_anything.jpg"></p>
<p>I wanted to share a simple trick I&#8217;ve been using recently for quickly adding baseline grids to nearly any element on a page. It&#8217;s nothing too fancy, and it&#8217;s very easy to implement.</p>
<p><strong>Demo:</strong> <a href="http://theleggett.com/demos/baseline_anything/">Baseline Grid on Any Element Example</a></p>
<p><strong>Download Demo:</strong> <a href="http://theleggett.com/wp-content/uploads/2012/02/easy_baseline_demo.zip">easy_baseline_demo.zip</a> (12KB)</p>
<p>In the demo above, you&#8217;ll see various baseline grids (and combinations of grids). There&#8217;s a switch in the top right to turn the grids on and off.</p>
<p>To make a 21px Baseline Grid, you would apply the class &#8220;baseline_21&#8243; to the element which you want to apply the baseline grid to. In your stylesheet, you would add the following CSS:</p>
<p><code><br />
.baseline_21 {<br />
  position:relative;<br />
}</p>
<p>.baseline_21::after {<br />
  z-index:9999;<br />
  top:0;<br />
  bottom:0;<br />
  left:0;<br />
  right:0;<br />
  position:absolute;<br />
  content:'';<br />
}</p>
<p>.baseline_21::after {<br />
  background:url(images/baseline_21.png);<br />
}<br />
</code></p>
<p>Adding this class to an element will make that element &#8220;position: relative;&#8221; (<em>meaning that this won&#8217;t work on elements where position needs to be something else</em>). Then, using the <em>::after</em> pseudo-element, we apply a background that is positioned absolutely to fill the entire element.</p>
<p>The background image is a 42px tall graphic divided into two rows. The rows alternate with their background color. The top row has no background, just a red baseline, and the bottom row has a 20% opaque white (or other color) background. This just helps me follow the rows on wide documents.</p>
<p><img src="http://theleggett.com/wp-content/uploads/2012/02/baseline_example.png"></p>
<p>As shown in the demo, it&#8217;s easy to apply baseline grids to children inside the element with the baseline grid as well. By adding multiple backgrounds to a baseline grid, you could also overlay a column grid using this method.</p>
<p><strong>Full disclosure:</strong> I&#8217;m not a typography guru, and the demo might not be a very solid example of baseline grid usage. Also, I whipped up the demo very quickly, so there may be an error or two in some browsers.</p>
]]></content:encoded>
			<wfw:commentRss>http://theleggett.com/2012/02/11/easy-css-baseline-grid-for-pretty-much-anything/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Office B</title>
		<link>http://theleggett.com/2012/01/13/office-b/</link>
		<comments>http://theleggett.com/2012/01/13/office-b/#comments</comments>
		<pubDate>Fri, 13 Jan 2012 23:54:35 +0000</pubDate>
		<dc:creator>David Leggett</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[office]]></category>
		<category><![CDATA[python safety]]></category>

		<guid isPermaLink="false">http://theleggett.com/?p=348</guid>
		<description><![CDATA[My new home away from home.]]></description>
			<content:encoded><![CDATA[<p><img src="http://theleggett.com/wp-content/uploads/2012/01/python-office.jpg" /></p>
<p>My new home away from home.</p>
]]></content:encoded>
			<wfw:commentRss>http://theleggett.com/2012/01/13/office-b/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Python Safety Catalog 2012 First Edition</title>
		<link>http://theleggett.com/2012/01/09/python-safety-catalog-2012-first-edition/</link>
		<comments>http://theleggett.com/2012/01/09/python-safety-catalog-2012-first-edition/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 02:43:27 +0000</pubDate>
		<dc:creator>David Leggett</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[catalog design]]></category>
		<category><![CDATA[python safety]]></category>

		<guid isPermaLink="false">http://theleggett.com/?p=340</guid>
		<description><![CDATA[Got these in the mail today. I know this catalog doesn&#8217;t mean much to people outside of our company, but seeing this project all come together so nicely really makes me feel fantastic. I&#8217;m working on a few posts that outline the process we used for designing and producing this catalog. In some regard, I&#8217;m [...]]]></description>
			<content:encoded><![CDATA[<p>Got these in the mail today. I know this catalog doesn&#8217;t mean much to people outside of our company, but seeing this project all come together so nicely really makes me feel fantastic.</p>
<p><img src="http://theleggett.com/wp-content/uploads/2012/01/1.jpg"></p>
<p><img src="http://theleggett.com/wp-content/uploads/2012/01/2.jpg"></p>
<p><img src="http://theleggett.com/wp-content/uploads/2012/01/3.jpg"></p>
<p><img src="http://theleggett.com/wp-content/uploads/2012/01/4.jpg"></p>
<p>I&#8217;m working on a few posts that outline the process we used for designing and producing this catalog. In some regard, I&#8217;m writing to solidify what worked and what didn&#8217;t work in my own mind. I hope that the series also helps others like myself who decide to design a catalog with very little <em>(if any)</em> previous print experience.</p>
<p><em><a href="http://www.pythonsafety.com/">Python Safety</a> is a company I have been working with for just over half a year now.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://theleggett.com/2012/01/09/python-safety-catalog-2012-first-edition/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Python Safety Upgrade</title>
		<link>http://theleggett.com/2011/12/18/python-safety-upgrade/</link>
		<comments>http://theleggett.com/2011/12/18/python-safety-upgrade/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 02:21:25 +0000</pubDate>
		<dc:creator>David Leggett</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[catalog design]]></category>
		<category><![CDATA[print design]]></category>
		<category><![CDATA[python safety]]></category>

		<guid isPermaLink="false">http://theleggett.com/?p=335</guid>
		<description><![CDATA[We upgraded our office space at Python Safety this past week. I&#8217;ve got more of a dedicated &#8220;studio&#8221; now for working on the new 2012 catalog. And the catalog is shaping up very nicely. Still plenty to do, but if things continue at this rate, we should have a beautiful 80 page catalog ready for [...]]]></description>
			<content:encoded><![CDATA[<p>We upgraded our office space at Python Safety this past week. I&#8217;ve got more of a dedicated &#8220;studio&#8221; now for working on the new 2012 catalog.</p>
<p><img src="http://theleggett.com/wp-content/uploads/2011/12/python-new-office.jpg" /></p>
<p>And the catalog is shaping up very nicely. Still plenty to do, but if things continue at this rate, we should have a beautiful 80 page catalog ready for print by the end of December.</p>
<p><img src="http://theleggett.com/wp-content/uploads/2011/12/catalog-preview.jpg" /></p>
<p>Pretty exciting for us all. In less than a year, we&#8217;ve moved and upgraded our headquarters twice. The company is growing quickly, and having a lot of fun :)</p>
]]></content:encoded>
			<wfw:commentRss>http://theleggett.com/2011/12/18/python-safety-upgrade/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Taunts</title>
		<link>http://theleggett.com/2011/11/20/taunts/</link>
		<comments>http://theleggett.com/2011/11/20/taunts/#comments</comments>
		<pubDate>Sun, 20 Nov 2011 14:50:00 +0000</pubDate>
		<dc:creator>David Leggett</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[gaming]]></category>

		<guid isPermaLink="false">http://theleggett.com/?p=330</guid>
		<description><![CDATA[Battlefield, Zelda, Halo, Skyrim, and Uncharted all released within a month of each other. Someone is out to get me.]]></description>
			<content:encoded><![CDATA[<p>Battlefield, Zelda, Halo, Skyrim, and Uncharted all released within a month of each other.</p>
<p>Someone is out to get me.</p>
]]></content:encoded>
			<wfw:commentRss>http://theleggett.com/2011/11/20/taunts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nice Interview about User Testing in Video Games</title>
		<link>http://theleggett.com/2011/09/28/nice-interview-about-user-testing-in-video-games/</link>
		<comments>http://theleggett.com/2011/09/28/nice-interview-about-user-testing-in-video-games/#comments</comments>
		<pubDate>Thu, 29 Sep 2011 03:10:48 +0000</pubDate>
		<dc:creator>David Leggett</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[battlefield]]></category>
		<category><![CDATA[dice]]></category>
		<category><![CDATA[user testing]]></category>
		<category><![CDATA[ux]]></category>
		<category><![CDATA[video games]]></category>

		<guid isPermaLink="false">http://theleggett.com/?p=324</guid>
		<description><![CDATA[The Wall Street Journal has an interview with DICE&#8217;s Lead Gamer Tester and Executive Producer that I found really interesting. Awesome to have more insight into user testing outside of the web/application realm. There was one bit in particular that struck a chord with me: I don’t know why, but I always feel ashamed about [...]]]></description>
			<content:encoded><![CDATA[<p>The Wall Street Journal has an <a href="http://blogs.wsj.com/tech-europe/2011/09/27/qa-dice-stress-tests-battlefield-3/">interview</a> with DICE&#8217;s Lead Gamer Tester and Executive Producer that I found really interesting. Awesome to have more insight into user testing outside of the web/application realm.</p>
<p>There was one bit in particular that struck a chord with me:</p>
<blockquote><p>I don’t know why, but I always feel ashamed about the games I’m involved in making. I can’t even bring myself to start up “Battlefield Bad Company 2,” our last game, because I feel so ashamed. I know it is a great product but still I only see the things we could have done better.</p></blockquote>
<p><cite>Patrick Bach, DICE Executive Producer</cite></p>
<p>UX, Interaction designers, and others who help plan, execute and analyze user tests are often perfectionists, and also tend to be their own worst critics. It&#8217;s true in web design, and apparently it&#8217;s also true in game design.</p>
<p>For what it&#8217;s worth, Battlefield Bad Company 2 was a ridiculously good game (one of my all time favorites), and <a href="http://www.youtube.com/watch?v=YRN9LCh_o7I&#038;feature=relmfu">Battlefield 3</a> is looking to raise the bar quite a bit. Just more evidence that investing in user centric design, just like investing in outstanding talent and leadership, is crucial to building great products.</p>
]]></content:encoded>
			<wfw:commentRss>http://theleggett.com/2011/09/28/nice-interview-about-user-testing-in-video-games/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Evening project: GamerChannels.com</title>
		<link>http://theleggett.com/2011/09/18/evening-project-gamerchannels-com/</link>
		<comments>http://theleggett.com/2011/09/18/evening-project-gamerchannels-com/#comments</comments>
		<pubDate>Sun, 18 Sep 2011 14:50:48 +0000</pubDate>
		<dc:creator>David Leggett</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[dev]]></category>
		<category><![CDATA[justin tv]]></category>
		<category><![CDATA[starcraft]]></category>
		<category><![CDATA[video games]]></category>

		<guid isPermaLink="false">http://theleggett.com/?p=316</guid>
		<description><![CDATA[Most normal people I know have at least one sport they try and keep up with. Could be Football, Tennis, or maybe even something like competitive Poker. Myself? I&#8217;m a fan of competitive video games. Starcraft, specifically. It&#8217;s a geeky choice for evening entertainment, but I&#8217;m definitely not alone in my programming selection. Over 60,000 [...]]]></description>
			<content:encoded><![CDATA[<p>Most normal people I know have at least one sport they try and keep up with. Could be Football, Tennis, or maybe even something like competitive Poker.</p>
<p>Myself? I&#8217;m a fan of competitive video games. <em><a href="http://us.battle.net/sc2/en/">Starcraft</a></em>, specifically.</p>
<p>It&#8217;s a geeky choice for evening entertainment, but I&#8217;m definitely not alone in my programming selection. <em>Over 60,000 people tuned in from all over the world this past weekend to watch a live tournament in Spain called <a href="http://www.dreamhack.tv/">DreamHack</a></em>. Some events see even more attention than this&mdash;and the winners often take home prizes in the tens (<a href="http://blog.dota2.com/2011/08/a-champion-has-been-crowned/">or hundreds</a>) of thousands of dollars.</p>
<p>A lot of the individuals who &#8220;cast&#8221; live video streams use live video streaming service <a href="http://justin.tv">Justin.tv</a>. JTV is great, but I find it a little difficult to navigate my way around the site, or watch video on my tablet. Thankfully, JTV has put together an API that has allowed me to create my own customized stream browser :)</p>
<p>I spent some time last night putting together a basic video browser with the API that tracks some of my favorite streams. I don&#8217;t currently have any plans for it, but I&#8217;m hosting the app at <a href="http://www.gamerchannels.com/">GamerChannels.com</a> for the time being.</p>
<p><img src="http://theleggett.com/wp-content/uploads/2011/09/gamerchannels.jpg" /></p>
<p>With how much momentum I&#8217;ve seen competitive gaming gain in the past 2 years, who knows&hellip; I may invest some more time into this project so it will be more useful for others.</p>
]]></content:encoded>
			<wfw:commentRss>http://theleggett.com/2011/09/18/evening-project-gamerchannels-com/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Justin.tv Error #2048</title>
		<link>http://theleggett.com/2011/09/17/justin-tv-error-2048/</link>
		<comments>http://theleggett.com/2011/09/17/justin-tv-error-2048/#comments</comments>
		<pubDate>Sun, 18 Sep 2011 02:30:32 +0000</pubDate>
		<dc:creator>David Leggett</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[dev]]></category>
		<category><![CDATA[justin tv]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://theleggett.com/?p=310</guid>
		<description><![CDATA[Just spent the past 2 hours troubleshooting a problem I was having with the Justin.tv API. Thought I&#8217;d save a few headaches for anyone else who runs into this problem and post about it. I was having no trouble getting the API to do the things I wanted, but the Embed code for streams seemed [...]]]></description>
			<content:encoded><![CDATA[<p>Just spent the past 2 hours troubleshooting a problem I was having with the <a href="http://apiwiki.justin.tv/mediawiki/index.php/REST_API_Documentation">Justin.tv API</a>. Thought I&#8217;d save a few headaches for anyone else who runs into this problem and post about it.</p>
<p>I was having no trouble getting the API to do the things I wanted, but the Embed code for streams seemed to be borked.</p>
<p><strong>I kept getting:</strong> &#8220;Something went wrong: Error #2048&#8243;</p>
<p>Did some digging and wasn&#8217;t able to find any error code documentation. I couldn&#8217;t even get embed codes working directly from channels.</p>
<p>Turns out that for whatever reason, Justin.tv doesn&#8217;t like &#8220;localhost&#8221;. That&#8217;s a pretty strange quirk&hellip; not sure if it&#8217;s intentional or not (haven&#8217;t seen any mention of it in the API documentation). I added a new host &#8220;test.local&#8221; and was immediately able to see the embed codes working.</p>
<p><a href="http://www.amtmstudios.com/2011/01/mamp-apache-and-multiple-virtual-hosts/">Guide for setting up custom hosts on Mac &rarr;</a><br />
<a href="http://www.ghacks.net/2011/03/06/how-to-edit-reset-the-windows-hosts-file/">&hellip;and on Windows &rarr;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://theleggett.com/2011/09/17/justin-tv-error-2048/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>New Project: Caldwell for House 2012</title>
		<link>http://theleggett.com/2011/09/12/new-project-caldwell-for-house-2012/</link>
		<comments>http://theleggett.com/2011/09/12/new-project-caldwell-for-house-2012/#comments</comments>
		<pubDate>Mon, 12 Sep 2011 23:47:40 +0000</pubDate>
		<dc:creator>David Leggett</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[michael caldwell]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://theleggett.com/?p=302</guid>
		<description><![CDATA[Today, my good friend Michael Caldwell launched his 2012 campaign for the Georgia State House (District 20). I&#8217;m happy to once again be a part of his campaign. Here are a few screenshots from the site we launched this morning. I&#8217;m very proud to support Caldwell&#8217;s campaign. In 2010, I believe we ran one of [...]]]></description>
			<content:encoded><![CDATA[<p>Today, my good friend <a href="http://www.caldwellforhouse.com/">Michael Caldwell</a> launched his 2012 campaign for the Georgia State House (District 20). I&#8217;m happy to once again be a part of his campaign. Here are a few screenshots from the site we launched this morning.</p>
<p><img src="http://theleggett.com/wp-content/uploads/2011/09/caldwell1.jpg"></p>
<p><img src="http://theleggett.com/wp-content/uploads/2011/09/caldwell2.jpg"></p>
<p><img src="http://theleggett.com/wp-content/uploads/2011/09/caldwell3.jpg"></p>
<p>I&#8217;m very proud to support Caldwell&#8217;s campaign. In 2010, I believe we ran one of the best campaigns in Georgia, and I&#8217;m looking forward to once again setting an example of how local campaigns can be operated honestly and transparently.</p>
<p>Had some fun with the <a href="http://wufoo.com/">Wufoo</a> API while working on this project. Really impressed with how easy it was working with <a href="http://wufoo.com/">Wufoo</a> and <a href="http://mailchimp.com">MailChimp</a> together.</p>
]]></content:encoded>
			<wfw:commentRss>http://theleggett.com/2011/09/12/new-project-caldwell-for-house-2012/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

