<?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"
	>

<channel>
	<title>29th Floor</title>
	<atom:link href="http://29thfloor.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://29thfloor.com</link>
	<description>Come on up. The view is excellent.</description>
	<pubDate>Thu, 28 Aug 2008 05:17:43 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
	<language>en</language>
			<item>
		<title>Pimp My Browser: Firefox Addons I Can&#8217;t Live Without</title>
		<link>http://29thfloor.com/2008/08/pimp-my-browser-firefox-addons-i-cant-live-without/</link>
		<comments>http://29thfloor.com/2008/08/pimp-my-browser-firefox-addons-i-cant-live-without/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 05:10:18 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
		
		<category><![CDATA[design]]></category>

		<category><![CDATA[development]]></category>

		<category><![CDATA[downloads]]></category>

		<guid isPermaLink="false">http://29thfloor.com/?p=175</guid>
		<description><![CDATA[
OK, so maybe I could live without them. I&#8217;d go so far as to say that I could probably live without Firefox itself, but why should I?
It&#8217;s a great browser out of the box, and the fact that anyone with the skills can write extensions for it, probably makes it the browser with the most [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Firefox Logo" href="http://www.firefox.com" target="_blank" class="post-image-right"><img src="http://29thfloor.com/wp-content/uploads/2008/08/firefox-logo-browser.jpg" alt="Firefox Logo" width="150" height="141" /></a></p>
<p class="post-intro">OK, so maybe I could live without them. I&#8217;d go so far as to say that I could probably live without Firefox itself, but why should I?</p>
<p>It&#8217;s a great browser out of the box, and the fact that anyone with the skills can write extensions for it, probably makes it the browser with the most features anywhere (I haven&#8217;t counted but <a href="https://addons.mozilla.org/en-US/firefox/" target="_blank">look at the amount of addons there are</a>).</p>
<p>These 5 extensions add features that I&#8217;ve come to rely on pretty much daily in designing and developing websites. I become so used to them that it&#8217;s only when I load up IE 7 (or if I&#8217;m trying to drive myself insane, IE 6) that I really miss them. If you spend any amount of time building websites, you should definitely have these 5 addons installed.</p>
<p><a class="post-image-right" title="Firebug" href="https://addons.mozilla.org/en-US/firefox/addon/1843" target="_blank"><img src="http://29thfloor.com/wp-content/uploads/2008/08/3-firebug.png" alt="Firebug" width="200" height="150" border="0" /></a></p>
<h2 style="clear: left"><a title="Firebug Addon for Firefox" href="https://addons.mozilla.org/en-US/firefox/addon/1843" target="_blank">Firebug</a></h2>
<p>Firebug is basically an HTML/CSS viewer and JavaScript debugger that integrates into Firefox. But it&#8217;s the way that it integrates that makes it so useful. Just click the Firebug icon in the status bar or hit F12 and a window opens showing you a live view of the HTML source and CSS for the page you&#8217;re on. The HTML is in a tree structure allowing you to expand and collapse elements to easily find what you&#8217;re looking for. Or just click &#8220;Inspect&#8221; and click directly on the element you want. Firebug will highlight the HTML and show you a cascading list of any styles that are being applied.</p>
<p>All of this stuff is live too, meaning you can change anything you want in the Firebug window and see your changes on the page right away. This is really helpful when you&#8217;re building a site and need to tweak width/height/padding/margin values or you&#8217;re trying to track down any one of the infamous IE 6 issues. Instead of making changes to the HTML/CSS files, uploading and reloading the page, you can work right in Firebug until you get it right.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/60" target="_blank" title="Web Developer Addon for Firefox" class="post-image-right" ><img src="http://29thfloor.com/wp-content/uploads/2008/08/4-webdeveloper.png" alt="Web Developer" width="200" height="150" border="0" /></a></p>
<h2 style="clear: left"><a href="https://addons.mozilla.org/en-US/firefox/addon/60" target="_blank" title="Web Developer Addon for Firefox">Web Developer</a></h2>
<p>Before I discovered Firebug, this was my #1 must-have extension. It does some of the same things that Firebug does, albeit in a different way. For example you can outline specific elements on the page, in whatever colors you want. This can be helpful to see how different block level elements are positioned or to track down all instances of a certain tag. But without the live DOM view and CSS property view, it&#8217;s become a less essential part of my tool set.</p>
<p>But it does have some other features that make it worth the download. The things I find myself using the most are:</p>
<p><strong>Disable/Enable CSS</strong> - You can do a lot of cool stuff with CSS but you also have to face the fact that some people are going to view your site on a device that may not support CSS like the modern browsers do. With one click you can disable all styles and see what your content looks like in the default rendering.</p>
<p><strong>Disable/Enable JavaScript</strong> - For the same reasons as above your sites really need to be accessible with JavaScript disabled (the big exception being complex web apps that just aren&#8217;t possible without it). It&#8217;s nice being able to toggle JavaScript on and off without going deep into the options menu.</p>
<p><strong>Display Ruler</strong> - This is a pretty basic feature but one that I use all the time. When the ruler is turned on, you can click and drag directly on a website and quickly get a measurement. Before this kind of tool the only option was to take a screen shot, open up Photoshop and do the measuring there. Combined with the live view in Firebug this can be a really quick way to tweak a CSS layout or track down a problem with your width/height/margin/padding values. </p>
<p><strong>View Generated Source</strong> - Sometimes View Source just isn&#8217;t enough. If you have a lot of JavaScript that is modifying the DOM after it&#8217;s loaded, you&#8217;ll wonder how you ever lived without a feature like this. Granted, Firebug shows updates to the DOM, but if you just want a quick copy of the source after some JavaScript event, this gives it to you.</p>
<p>And that&#8217;s really just scratching the surface. Other features include HTML/CSS/JS/508/WAI validation, linearizing of the page content, and the ability to display pretty much any information you might need (IDs, classes, anchors, block dimensions, stack levels, etc). At the very least it&#8217;s worth playing around with to see if it fits into your work flow.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/271" target="_blank" title="ColorZilla Addon for Firefox" class="post-image-right"><img src="http://29thfloor.com/wp-content/uploads/2008/08/5-colorzilla.png" alt="ColorZilla" width="200" height="150" border="0" /></a></p>
<h2 style="clear: left"><a href="https://addons.mozilla.org/en-US/firefox/addon/271" target="_blank" title="ColorZilla Addon for Firefox">ColorZilla</a></h2>
<p>This addon is pretty simple compared to the first two, but just as important. Basically it gives you an eyedropper for the browser, which is a tool any designer will be familiar with. If you want to know the hex code for a particular color on a site, you just click the ColorZilla icon and then directly on the color. Right-clicking on the icon then gives you the option of copying the color to the clipboard in a number of formats &#8212; #000000, rgb(0,0,0), R:0, G:0, B:0.</p>
<p>Double clicking on the icon opens up the color picker which lets you choose whatever color you want from a number of different palettes and get RGB values in whatever format you need. All in all a great tool for anyone working with color when building a website.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/2064" class="post-image-right" target="_blank" title="Dummy Lipsum Addon for Firefox"><img src="http://29thfloor.com/wp-content/uploads/2008/08/2-dummylipsum.png" alt="Dummy Lipsum" width="200" height="150" border="0" /></a></p>
<h2 style="clear: left"><a href="https://addons.mozilla.org/en-US/firefox/addon/2064" target="_blank" title="Dummy Lipsum Addon for Firefox">Dummy Lipsum</a></h2>
<p>Anyone designing websites knows that you usually don&#8217;t have all the content up front. So when you&#8217;re creating designs, you need to put a lot of &#8220;placeholder&#8221; text and images to show how things are going to be formatted. One of the industry standards for placeholder text is the &#8220;<a href="http://www.lipsum.com">Lorem ipsum</a>&#8221; text, or Greek text. </p>
<p>Dummy Lipsum gives you quick access to Greek text in whatever format you need. You can generate a certain number of paragraphs, words, bytes or lists and you can even generate the HTML needed to display it properly if you&#8217;re adding the dummy text directly to an actual web page.</p>
]]></content:encoded>
			<wfw:commentRss>http://29thfloor.com/2008/08/pimp-my-browser-firefox-addons-i-cant-live-without/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Star Wars Episode VII: The Last Jedi</title>
		<link>http://29thfloor.com/2008/08/star-wars-episode-vii-the-last-jedi/</link>
		<comments>http://29thfloor.com/2008/08/star-wars-episode-vii-the-last-jedi/#comments</comments>
		<pubDate>Mon, 25 Aug 2008 19:34:04 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
		
		<category><![CDATA[interesting (according to me)]]></category>

		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://29thfloor.com/?p=192</guid>
		<description><![CDATA[Don&#8217;t worry. George Lucas is nowhere near this thing.
This is a fan video made by Mark Lucier and starring his two kids. I think it&#8217;s honestly better than Episodes 1, 2 and 3 combined.
 
via Laughing Squid
]]></description>
			<content:encoded><![CDATA[<p class="post-intro">Don&#8217;t worry. George Lucas is nowhere near this thing.</a></p>
<p>This is a fan video made by Mark Lucier and starring his two kids. I think it&#8217;s honestly better than Episodes 1, 2 and 3 combined.</p>
<p><embed src="http://blip.tv/play/AcffMYmXbA" type="application/x-shockwave-flash" width="624" height="351" allowscriptaccess="always" wmode="transparent" allowfullscreen="true"></embed> </p>
<p>via <a href="http://laughingsquid.com/dad-makes-star-wars-vii-sequel-starring-his-kids/">Laughing Squid</a></p>
]]></content:encoded>
			<wfw:commentRss>http://29thfloor.com/2008/08/star-wars-episode-vii-the-last-jedi/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Tiny Elf Not Thrown [Anagrams]</title>
		<link>http://29thfloor.com/2008/08/tiny-elf-not-thrown-anagrams/</link>
		<comments>http://29thfloor.com/2008/08/tiny-elf-not-thrown-anagrams/#comments</comments>
		<pubDate>Thu, 21 Aug 2008 22:47:52 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[interesting (according to me)]]></category>

		<guid isPermaLink="false">http://29thfloor.com/?p=39</guid>
		<description><![CDATA[I&#8217;ve always had a weird fascination with anagrams. That is, words or phrases made by rearranging the letters in another word or phrase. For example, &#8220;santa&#8221; is an anagram of &#8220;satan.&#8221; That&#8217;s kind of a creepy example, but you get the point.
After coming up with such a brilliant name for my site, I figured it [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve always had a weird fascination with <a href="http://en.wikipedia.org/wiki/Anagram">anagrams</a>. That is, words or phrases made by rearranging the letters in another word or phrase. For example, &#8220;santa&#8221; is an anagram of &#8220;satan.&#8221; That&#8217;s kind of a creepy example, but you get the point.</p>
<p>After coming up with such a brilliant name for my site, I figured it was a good candidate for the <a href="http://wordsmith.org/anagram/">Internet Anagram Server</a> (IAS). I put in &#8220;twenty ninth floor&#8221; and got a ton of stuff back. Unfortunately the IAS doesn&#8217;t know the meaning of the words so it just rearranges the letters in any way that will form other words. Most of them suck. But sometimes you get some good ones:</p>
<p><a href="http://www.flickr.com/photos/ryanmack/2056791054/" target="_blank" title="Photo by ryanmack"><img src="http://29thfloor.com/wp-content/uploads/2008/08/2056791054_e583521e0d.jpg" alt="Elf" width="333" height="500" class="post-image-right"/></a></p>
<ul>
<li>Intently Froth Now</li>
<li>Entity Flown North</li>
<li>Rent Filthy Wonton</li>
<li>Hefty Lint Not Worn </li>
<li>Tiny Elf Not Thrown</li>
<li>Horny Elf Wont Tint </li>
<li>Thin Felon Wont Try</li>
<li>
Ninth Town To Flyer </li>
<li>Tony Left Ninth Row</li>
<li>Felt Thorny In Town</li>
<li>Tin Tony Flew North </li>
</ul>
<p>Now I&#8217;m not suggesting that these are hilarious or even funny at all. Just kind of interesting to me for some reason.</p>
<p>Does your name have any good ones? (You could use your full name, your company name, your stupid World of Warcraft character&#8217;s name, your imaginary girlfriend&#8217;s name, etc&#8230; you get what I&#8217;m saying.)Toss &#8216;em in the comments. </p>
]]></content:encoded>
			<wfw:commentRss>http://29thfloor.com/2008/08/tiny-elf-not-thrown-anagrams/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Alpha Coffee Table</title>
		<link>http://29thfloor.com/2008/08/alpha-coffee-table/</link>
		<comments>http://29thfloor.com/2008/08/alpha-coffee-table/#comments</comments>
		<pubDate>Thu, 21 Aug 2008 18:17:53 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
		
		<category><![CDATA[design]]></category>

		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://29thfloor.com/?p=158</guid>
		<description><![CDATA[The perfect gift for the designer in your life. The Alpha Coffee Table (appears to be) made from antique printer&#8217;s blocks. It&#8217;s actually carved from a solid piece of wood but that shouldn&#8217;t stop you from dropping $899 on it. 

(See! That was fast. I&#8217;m totally on a roll now.)
]]></description>
			<content:encoded><![CDATA[<p>The perfect gift for the designer in your life. The <a href="http://www.crateandbarrel.com/family.aspx?c=985&#038;f=28528">Alpha Coffee Table</a> (appears to be) made from antique printer&#8217;s blocks. It&#8217;s actually carved from a solid piece of wood but that shouldn&#8217;t stop you from dropping $899 on it. </p>
<p><a href="http://www.crateandbarrel.com/family.aspx?c=985&#038;f=28528" title="Alpha Coffee Table at Crate &#038; Barrell"><img src="http://29thfloor.com/wp-content/uploads/2008/08/alpha-coffee-table.png" alt="Alpha Coffee Table at Crate &#038; Barrell" width="396" height="292" class="post-image-center" /></a></p>
<p>(See! That was fast. I&#8217;m totally on a roll now.)</p>
]]></content:encoded>
			<wfw:commentRss>http://29thfloor.com/2008/08/alpha-coffee-table/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Let&#8217;s Take It From The Top</title>
		<link>http://29thfloor.com/2008/08/lets-take-it-from-the-top/</link>
		<comments>http://29thfloor.com/2008/08/lets-take-it-from-the-top/#comments</comments>
		<pubDate>Thu, 21 Aug 2008 17:35:59 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
		
		<category><![CDATA[excuses]]></category>

		<category><![CDATA[self-deprecation]]></category>

		<guid isPermaLink="false">http://29thfloor.com/?p=146</guid>
		<description><![CDATA[
Four and a half months in and I&#8217;m on my way to having more than one blog post.
Right on schedule.
I really want to get things started here and from what I&#8217;ve read on some good frequently updated blogs, I need to stop thinking so much about what I want to write and just start writing. [...]]]></description>
			<content:encoded><![CDATA[<p><a class="photo" title="Photo by 46137" href="http://www.flickr.com/photos/wolfworld/301264773/"><img class="post-image-right" src="http://29thfloor.com/wp-content/uploads/2008/08/conductor.jpg" alt="Photo by 46137" width="240" height="160" /></a></p>
<p class="post-intro">Four and a half months in and I&#8217;m on my way to having more than one blog post.</p>
<p class="post-intro">Right on schedule.</p>
<p>I really want to get things started here and from what I&#8217;ve read on some good frequently updated blogs, I need to stop thinking so much about what I <em>want </em>to write and just <em>start writing</em>. I already have a lot of ideas of what I want to write about here &#8212; Stuff that doesn&#8217;t really make sense to post on the <a title="Read the blog at Sinch.net" href="http://www.sinch.net/blog" target="_blank">Sinch blog</a>: design, typography, photography (not of the band),  movies, food and of course anything and everything related to <a href="http://www.wingkong.net" target="_blank">Big Trouble in Little China</a>.</p>
<p>Those things don&#8217;t really feel right on the Sinch blog. I <em>am </em>a member of the band and have handled 99% of the blogging since <a href="http://web.archive.org/web/20020105173144/www.sinch.net/sinchlog/index.shtml">we first started using Blogger</a> (before Google bought it). But since we&#8217;ve combined the News and Blog sections I think there&#8217;s a line that&#8217;s crossed when I start posting anything I want, especially when band updates are few and far between as they have been recently. People visit our site to find out about the band, not not to dig through whatever insane nonsense I might be in the mood to talk about that day. That&#8217;s why you come here!</p>
<p>There&#8217;s really no other point to this post but to bridge the 4 month gap between launching the site and what&#8217;s coming up: <strong>actual blog posts</strong> (<em>now with content!</em>). I&#8217;m gonna go out on the proverbial limb here and say that there will be a couple new posts up by the time this weekend&#8217;s through. We&#8217;ll see if it holds (the limb, of course).</p>
]]></content:encoded>
			<wfw:commentRss>http://29thfloor.com/2008/08/lets-take-it-from-the-top/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Just Getting Started</title>
		<link>http://29thfloor.com/2008/04/hello-world/</link>
		<comments>http://29thfloor.com/2008/04/hello-world/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 19:51:58 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
		
		<category><![CDATA[excuses]]></category>

		<category><![CDATA[site updates]]></category>

		<guid isPermaLink="false">http://29thfloor.com/?p=1</guid>
		<description><![CDATA[I&#8217;ve been building websites for a pretty long time now.  I built my first site back in 1997 for my band.  Over the years I spent a lot of time constantly redesigning that site and building all the sites I&#8217;ve done for companies I&#8217;ve worked for, but somehow I&#8217;ve never really had my [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been building websites for a pretty long time now.  I built my first site back in 1997 for my band.  Over the years I spent a lot of time constantly redesigning that site and building all the sites I&#8217;ve done for companies I&#8217;ve worked for, but somehow I&#8217;ve never really had my own personal site.</p>
<p>I&#8217;ve been planning on building my own site for almost 2 years now.  I bought this domain name in 2006 and so far all I&#8217;ve ever had here was a temporary landing page that said &#8220;coming soon&#8230;.&#8221; So, it feels good to finally have something substantial.</p>
<p>I&#8217;ll be adding a lot of my recent work over the next few days. If you&#8217;re reading this, the site is obviously live, but I may still be working on it.  I got rid of the temporary page while I build everything out so for a few days, at least, it&#8217;s gonna look pretty half-assed.  I&#8217;m sure there&#8217;s some way I can work on it while keeping anyone else from accessing it, but that&#8217;s just one more thing to distract me from actually getting it done, so I&#8217;m not even gonna worry about it.</p>
<p>In honor of my humble beginnings in the days of 1990&#8217;s web design, here&#8217;s the obligatory &#8220;under consctruction&#8221; graphic:</p>
<p><img class="alignnone size-medium wp-image-11" title="constr33" src="http://29thfloor.com/wp-content/uploads/2008/05/constr33.gif" alt="" width="110" height="60" /></p>
]]></content:encoded>
			<wfw:commentRss>http://29thfloor.com/2008/04/hello-world/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
