<?xml version="1.0" encoding="iso-8859-1"?>
<feed version="0.3" xmlns="http://purl.org/atom/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="en">
  <title>david</title>
  <link rel="alternate" type="text/html" href="http://www.mode3.com/david/" />
  <modified>2006-05-02T18:26:49Z</modified>
  <tagline></tagline>
  <id>tag:www.mode3.com,2008:/david//3</id>
  <generator url="http://www.movabletype.org/" version="2.661">Movable Type</generator>
  <copyright>Copyright (c) 2006, David</copyright>
  <entry>
    <title>A Day Without An Immigrant</title>
    <link rel="alternate" type="text/html" href="http://www.mode3.com/david/archives/000109.php" />
    <modified>2006-05-02T18:26:49Z</modified>
    <issued>2006-05-02T14:26:49-05:00</issued>
    <id>tag:www.mode3.com,2006:/david//3.109</id>
    <created>2006-05-02T18:26:49Z</created>
    <summary type="text/plain"> Yesterday afternoon, I talk a walk downtown with Christian, in order to check out the Day Without an Immigrant protests against HR-4337, the proposed bill that will make it a felony offense to be inside the USA illegally, amongst...</summary>
    <author>
      <name>David</name>
      <url>http://www.mode3.com/david</url>
      <email>david@mode3.com</email>
    </author>
    <dc:subject>Los Angeles</dc:subject>
    <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.mode3.com/david/">
      <![CDATA[<div>
<a href="http://www.flickr.com/photos/davidg/139167816/"><img src="http://static.flickr.com/45/139167816_cfce464a95.jpg?v=0" border="0" style="width:460px" /></a>
</div>

<p>Yesterday afternoon, I talk a walk downtown with <a href="http://www.mode3.com/christian">Christian</a>, in order to check out the <a href="http://www.daywithoutanimmigrant.com/">Day Without an Immigrant</a> protests against HR-4337, the proposed bill that will make it a felony offense to be inside the USA illegally, <a href="http://www.phillyimc.org/en/2006/02/18899.shtml">amongst other things</a>.
</p>
<p>You may have <a href="http://www.metafilter.com/mefi/51314">heard</a> <a href="http://blogging.la/archives/2006/04/may_day_march.phtml">some</a> <a href="http://www.iht.com/articles/2006/05/02/news/immig.php">news</a> <a href="http://www.latimes.com/news/nationworld/nation/la-na-decide2may02,1,3774936.story?coll=la-headlines-nation&ctrack=1&cset=true">about</a> <a href="http://www.nytimes.com/2006/05/02/us/02immig.html?_r=1&hp&ex=1146542400&en=e9b7414ed9b65b5f&ei=5094&partner=homepage&oref=slogin">it</a>.
</p>
<p>
Later that afternoon, we met up with <a href="http://www.flickr.com/photos/keem/">Kim</a>, <a href="http://www.flickr.com/photos/makster/">MAKSTER</a>, and <a href="http://www.hexod.us">hexod.us</a> at Macarthur Park and joined the march into Hollywood. About halfway down, we ran into fellow Flickr ninjas <a href="http://www.flickr.com/photos/orrin/">Orrin</a> &amp; <a href="http://www.flickr.com/photos/7-how-7/">7-how-7</a>.
</p>
<p>
I've uploaded <a href="http://www.flickr.com/photos/davidg/sets/72057594123297001/">a few photos</a> to my <a href="http://www.flickr.com/photos/davidg/">flickr stream</a>, and it seems most of the rest of the world has, too. Some popular pools you may be interested in are <a href="http://www.flickr.com/groups/immigration/pool/">Immigration Nation</a> &amp; <a href="http://www.flickr.com/groups/daywithoutimmigrants/pool/">A Day Without Immigrants - Un dia sin inmigrantes</a>. Alternatively, check out the interestingness going down at the <a href="http://flickr.com/photos/tags/adaywithoutimmigrants/clusters/">adaywithoutimmigrants</a> clusters.
</p>]]>
      
    </content>
  </entry>
  <entry>
    <title><![CDATA[Javascript Tips &amp; Tricks]]></title>
    <link rel="alternate" type="text/html" href="http://www.mode3.com/david/archives/000108.php" />
    <modified>2006-04-29T07:02:13Z</modified>
    <issued>2006-04-29T03:02:13-05:00</issued>
    <id>tag:www.mode3.com,2006:/david//3.108</id>
    <created>2006-04-29T07:02:13Z</created>
    <summary type="text/plain">Over the last week or so, I picked up two pretty useful web development tricks that might not be obvious and/or widely known. While I occassionally use Internet Explorer&apos;s proprietary CSS &quot;expression&quot; value calculations for prototypes, I always thought it...</summary>
    <author>
      <name>David</name>
      <url>http://www.mode3.com/david</url>
      <email>david@mode3.com</email>
    </author>
    <dc:subject>Web Development</dc:subject>
    <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.mode3.com/david/">
      <![CDATA[<p>Over the last week or so, I picked up two pretty useful web development tricks that might not be obvious and/or widely known. </p>

<p>While I occassionally use Internet Explorer's proprietary CSS "expression" value calculations for prototypes, I always thought it was limited to one statement -- you can't use a semicolon to seperate multiple statements like you would in regular Javascript. However, you can use the && concatenator to accomplish the same thing, as such:</p>

<p>.myDivClass {<br />
width:expression( (var expressionOne) && (var expressionTwo) )<br />
}</p>

<p>...which can come in handy when you need to do some browser-specific object detection before applying a value.</p>

<p>This via a <a href="http://www.cameronmoll.com/archives/000884.html#comments">comment by Marc Köhlbrugge</a> on Cameron Moll's <a href="http://www.cameronmoll.com">blog</a>, obtained from <a href="http://www.pmob.co.uk">Paul O'B's site</a>.</p>

<p>The second tip regards the use of multiple CSS class names on a single element. I use these fairly often, but I've always kept the CSS code seperate for each class, as I didn't think there was a way to apply the cascade to the intersection of multiple class names. Turns out there is, and it's as simple as it should be. For an element with two CSS classes:</p>

<p>&lt;element class="classOne classTwo"&gt;</p>

<p>The relevant CSS would be:</p>

<p>element.classOne.classTwo {<br />
 /* rules */<br />
}<br />
</p>]]>
      
    </content>
  </entry>
  <entry>
    <title>L.A. Update</title>
    <link rel="alternate" type="text/html" href="http://www.mode3.com/david/archives/000087.php" />
    <modified>2005-11-02T00:46:02Z</modified>
    <issued>2005-11-01T19:46:02-05:00</issued>
    <id>tag:www.mode3.com,2005:/david//3.87</id>
    <created>2005-11-02T00:46:02Z</created>
    <summary type="text/plain"><![CDATA[ After spending the last 4 or so years trapped in the pestilential hells of Mordor living in Pittsburgh, PA, Kim &amp; I recently relocated to Los Angeles, CA. We're now living in Angeleno Heights, purportedly Los Angeles' first suburb,...]]></summary>
    <author>
      <name>David</name>
      <url>http://www.mode3.com/david</url>
      <email>david@mode3.com</email>
    </author>
    
    <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.mode3.com/david/">
      <![CDATA[<div class="flickr-badge-wrapper">
<a href="http://www.flickr.com/photos/davidg/58730387/"><img src="http://static.flickr.com/30/58730387_ae0744ac00_s.jpg" alt="Flickr Image" /></a>

<a href="http://www.flickr.com/photos/davidg/58740621/"><img src="http://static.flickr.com/25/58740621_70d3942bae_s.jpg" alt="Flickr Image" /></a>

<a href="http://www.flickr.com/photos/davidg/58738798/"><img src="http://static.flickr.com/24/58738798_570ed35ee8_s.jpg" alt="Flickr Image" /></a>

<a href="http://www.flickr.com/photos/davidg/58742796/"><img src="http://static.flickr.com/31/58742796_82d0f30220_s.jpg" alt="Flickr Image" /></a>

<a href="http://www.flickr.com/photos/davidg/58724895/"><img src="http://static.flickr.com/30/58724895_55822e94bd_s.jpg" alt="Flickr Image" /></a>

<a href="http://www.flickr.com/photos/davidg/58724467/"><img src="http://static.flickr.com/33/58724467_fd16645d3a_s.jpg" alt="Flickr Image" /></a>
</div>
<p>
After spending the last 4 or so years <span style="text-decoration:line-through">trapped in the pestilential hells of Mordor</span> living in Pittsburgh, PA, Kim &amp; I recently relocated to Los Angeles, CA. We're now living in Angeleno Heights, purportedly Los Angeles' first suburb, and within <span title="I know this phrase will annoy Kim, that's why I'm using it">spitting distance</span> of Echo Park, Chinatown, and downtown.
</p>
<p>
We're hoping that the plans to resurrect the <a href="http://www.ahtrolley.org/intro.html">Angeleno Heights trolley line</a> are a success, as it would likely end up running past our front door, but for now I'm happy with the regular visits from the neighborhood ice-cream truck. 
</p>
<p>
It turns out Angeleno Heights is pretty well-known for its historically significant sprawling Victorian homes, which as we discovered last night, make it a great place for Halloween. Many of the older homes were elaborately decked out, the streets were full of families in costume, and on the whole it was a pretty festive atmosphere.
</p>
<p>
Other recent activities include exploring our new neighborhood, visiting the awesome <a href="http://www.notacornfield.info/">not a cornfield</a> project, the <a href="http://www.la-burningman.com/">Burning Man decompression party</a> and FAB Market in downtown, as well as attending <a href="">Lucha va Voom</a> with our friends <a href="http://www.hexod.us">hexod.us</a> and <a href="http://www.flickr.com/photos/makster/">MAKster</a>.
</p>]]>
      
    </content>
  </entry>
  <entry>
    <title><![CDATA[Updates &amp; Widgets]]></title>
    <link rel="alternate" type="text/html" href="http://www.mode3.com/david/archives/000086.php" />
    <modified>2005-11-01T16:57:55Z</modified>
    <issued>2005-11-01T11:57:55-05:00</issued>
    <id>tag:www.mode3.com,2005:/david//3.86</id>
    <created>2005-11-01T16:57:55Z</created>
    <summary type="text/plain">November 1st has arrived, the unveiling date for the CSS Reboot, an event which I, of course, never got around to signing up for. However, as you may notice, I have cleaned up things a bit around here over the...</summary>
    <author>
      <name>David</name>
      <url>http://www.mode3.com/david</url>
      <email>david@mode3.com</email>
    </author>
    <dc:subject>Meta</dc:subject>
    <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.mode3.com/david/">
      <![CDATA[<p>November 1st has arrived, the unveiling date for the <a href="http://www.cssreboot.com">CSS Reboot</a>, an event which I, of course, never got around to signing up for. </p>

<p>However, as you may notice, I have cleaned up things a bit around here over the last few days, removing some of the older content, slapping a fresh coat of paint on, and adding a couple of new widgets: thumbnails of my <a href="http://www.flickr.com/photos/davidg/">Flickr photostream</a>, and Brandon Fuller's <a href="http://brandon.fuller.name/archives/hacks/nowplaying/">Now Playing iTunes plugin</a>.</p>

<p>The underlying code on the site is still a bit of a mess, the result of minor tweaking here and there over the course of the years with no real plan or direction. Both the HTML and CSS still validate, but I'm hoping to clean things up a bit on that front too over the next couple of weeks.</p>]]>
      
    </content>
  </entry>
  <entry>
    <title>Flock Blog Test</title>
    <link rel="alternate" type="text/html" href="http://www.mode3.com/david/archives/000085.php" />
    <modified>2005-10-20T22:03:13Z</modified>
    <issued>2005-10-20T18:03:13-05:00</issued>
    <id>tag:www.mode3.com,2005:/david//3.85</id>
    <created>2005-10-20T22:03:13Z</created>
    <summary type="text/plain">Well, I finally received my Flock beta developer preview thingamajig, so I have set up my blog and I&apos;m now using Flock to post to mode3. Isn&apos;t that just thrilling? One thing that I&apos;m finding particularly cool about this, is...</summary>
    <author>
      <name>David</name>
      <url>http://www.mode3.com/david</url>
      <email>david@mode3.com</email>
    </author>
    
    <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.mode3.com/david/">
      <![CDATA[<p>Well, I finally received my Flock beta developer preview thingamajig, so I have set up my blog and I'm now using Flock to post to mode3. Isn't that just <em>thrilling</em>?<br /></p>

<p>One thing that I'm finding particularly cool about this, is that it hooks right into my Flickr account, so I can drag and drop photos into blog posts, like this:</p>

<p><a href="http://flickr.com/photos/36521963828@N01/41511583" title="What a bunch of hippies" class="img-wide"><img src="http://photos25.flickr.com/41511583_be1861ddfb_m.jpg" alt="Flickr Photo" /></a></p>

<p>The options to edit the raw html are a bit primitive, and it would be nice if it generated the same code as Flickr's "Blog this" button, but I'm sure that will come with time.<br />
</p>]]>
      
    </content>
  </entry>
  <entry>
    <title>Burning Man 2005: The Psyche</title>
    <link rel="alternate" type="text/html" href="http://www.mode3.com/david/archives/000081.php" />
    <modified>2005-09-16T01:48:54Z</modified>
    <issued>2005-09-15T21:48:54-05:00</issued>
    <id>tag:www.mode3.com,2005:/david//3.81</id>
    <created>2005-09-16T01:48:54Z</created>
    <summary type="text/plain"> IMG_1936 We just got back from this year&apos;s Burning Man, which rocked as usual. I&apos;ve added them to the growing pool of photos on Flickr. Here&apos;s my set of photos...</summary>
    <author>
      <name>David</name>
      <url>http://www.mode3.com/david</url>
      <email>david@mode3.com</email>
    </author>
    
    <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.mode3.com/david/">
      <![CDATA[<div class="flickr-frame">
	<a href="http://www.flickr.com/photos/davidg/41497409/" title="Flickr photoblog entry"><img src="http://static.flickr.com/25/41497409_f8568a7777_t.jpg" class="flickr-photo" alt="IMG_1936" title="IMG_1936"/></a><br />
	<span class="flickr-caption">
		<a href="http://www.flickr.com/photos/davidg/41497409/">IMG_1936</a>
	</span>
</div>
We just got back from this year's Burning Man, which rocked as usual. I've added them to the growing <a href="http://www.flickr.com/groups/burningman/pool/">pool of photos</a> on Flickr. Here's <a href="http://www.flickr.com/photos/davidg/sets/921404/">my set of photos</a>
<br style="clear:both" />]]>
      
    </content>
  </entry>
  <entry>
    <title>Budapest, Hungary</title>
    <link rel="alternate" type="text/html" href="http://www.mode3.com/david/archives/000078.php" />
    <modified>2005-04-06T20:19:12Z</modified>
    <issued>2005-04-06T16:19:12-05:00</issued>
    <id>tag:www.mode3.com,2005:/david//3.78</id>
    <created>2005-04-06T20:19:12Z</created>
    <summary type="text/plain">We&apos;ve been in Budapest for about a week now, and I&apos;ve uploaded a set of photos to Flickr. There are some cool shots of the playground in Millenial Park, plus the usual assortment of city shots and odd-looking people....</summary>
    <author>
      <name>David</name>
      <url>http://www.mode3.com/david</url>
      <email>david@mode3.com</email>
    </author>
    <dc:subject>Travel</dc:subject>
    <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.mode3.com/david/">
      <![CDATA[<p>We've been in Budapest for about a week now, and I've uploaded a <a href="http://www.flickr.com/photos/davidg/sets/214534/">set of photos</a> to Flickr. There are some cool shots of the playground in Millenial Park, plus the usual assortment of city shots and odd-looking people.</p>]]>
      
    </content>
  </entry>
  <entry>
    <title>Vellore Photos</title>
    <link rel="alternate" type="text/html" href="http://www.mode3.com/david/archives/000068.php" />
    <modified>2005-03-09T03:31:34Z</modified>
    <issued>2005-03-08T22:31:34-05:00</issued>
    <id>tag:www.mode3.com,2005:/david//3.68</id>
    <created>2005-03-09T03:31:34Z</created>
    <summary type="text/plain"> Here are some photos from Vellore, India. Kim and I are living here for a month while she does a rotation at the local hospital. Update: Now also on Flickr!...</summary>
    <author>
      <name>David</name>
      <url>http://www.mode3.com/david</url>
      <email>david@mode3.com</email>
    </author>
    <dc:subject>Travel</dc:subject>
    <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.mode3.com/david/">
      <![CDATA[<div class="flickr-frame">
	<a href="http://www.flickr.com/photos/davidg/sets/169048/" title="Photos from Vellore, India"><img src="http://www.mode3.com/david/gallery/Vellore/.cache/75x100-Vellore%203-3-2005%2012-35-47%20AM.jpg" class="flickr-photo" alt="Ganesha Temple in Vellore" title="Ganesha Temple in Vellore"/></a><br />
</div>

<a href="http://www.mode3.com/david/gallery/Vellore/">Here are some photos</a> from Vellore, India. Kim and I are living here for a month while she does a rotation at the local hospital.<br/>
<strong>Update:</strong> Now also on <a href="http://www.flickr.com/photos/davidg/sets/169048/">Flickr</a>!
<br style="clear:both" />]]>
      
    </content>
  </entry>
  <entry>
    <title>Google Maps</title>
    <link rel="alternate" type="text/html" href="http://www.mode3.com/david/archives/000063.php" />
    <modified>2005-02-08T15:27:43Z</modified>
    <issued>2005-02-08T10:27:43-05:00</issued>
    <id>tag:www.mode3.com,2005:/david//3.63</id>
    <created>2005-02-08T15:27:43Z</created>
    <summary type="text/plain">Google Maps Beta launched today, and it is awesome. As far as web interfaces go, there&apos;s no point even comparing it to the competition....</summary>
    <author>
      <name>David</name>
      <url>http://www.mode3.com/david</url>
      <email>david@mode3.com</email>
    </author>
    
    <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.mode3.com/david/">
      <![CDATA[<p><a title="Google Maps" href="http://maps.google.com/">Google Maps</a> Beta launched today, and it is awesome. As far as web interfaces go, there's no point even comparing it to <a href="http://www.mapquest.com">the competition</a>.<br />
</p>]]>
      
    </content>
  </entry>
  <entry>
    <title>Thunderbird hits 1.0</title>
    <link rel="alternate" type="text/html" href="http://www.mode3.com/david/archives/000059.php" />
    <modified>2004-12-07T16:34:08Z</modified>
    <issued>2004-12-07T11:34:08-05:00</issued>
    <id>tag:www.mode3.com,2004:/david//3.59</id>
    <created>2004-12-07T16:34:08Z</created>
    <summary type="text/plain">Mozilla&apos;s Thunderbird just went to v1.0. I&apos;ve been using this since around 0.6, and it&apos;s a great alternative to Outlook Express, with very well integrated RSS capabilities, saved search folders, labels, and a very slick interface. If you&apos;ve already dumped...</summary>
    <author>
      <name>David</name>
      <url>http://www.mode3.com/david</url>
      <email>david@mode3.com</email>
    </author>
    
    <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.mode3.com/david/">
      <![CDATA[Mozilla's <a title="Thunderbird - Reclaim Your Inbox" href="http://www.mozilla.org/products/thunderbird/">Thunderbird</a>  just went to v1.0. I've been using this since around 0.6, and it's a great alternative to Outlook Express, with very well integrated RSS capabilities, saved search folders, labels, and a very slick interface. If you've already dumped IE for Firefox, this is the logical next step. Next up, <a href="http://www.mozilla.org/projects/calendar/sunbird.html">Sunbird</a> - Mozilla's calendaring app. It's still very basic at the moment, but hopefully we'll see development speed up soon.

]]>
      
    </content>
  </entry>
  <entry>
    <title>Bloomfield Italian Days</title>
    <link rel="alternate" type="text/html" href="http://www.mode3.com/david/archives/000055.php" />
    <modified>2004-10-17T15:02:39Z</modified>
    <issued>2004-10-17T11:02:39-05:00</issued>
    <id>tag:www.mode3.com,2004:/david//3.55</id>
    <created>2004-10-17T15:02:39Z</created>
    <summary type="text/plain"> In a mad rash of photo uploading, I&apos;ve also posted photos from the Bloomfield Italian Days festival, right here in Pittsburgh. Bocci, italian sausage, and intricate moustache work, what more could you ask for?...</summary>
    <author>
      <name>David</name>
      <url>http://www.mode3.com/david</url>
      <email>david@mode3.com</email>
    </author>
    
    <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.mode3.com/david/">
      <![CDATA[<table class="dgg-slide">
<tr>
  <td><a href="http://www.mode3.com/david/gallery/Pennsylvania/BloomFieldItalianDays/"><img alt="Bloomfield Italian Days 003.jpg - 2004:09:26 16:16:23" src="/david/gallery/Pennsylvania/BloomFieldItalianDays/.cache/100x75-Bloomfield%20Italian%20Days%20003.jpg" height="75" width="100" /></a></td>
</tr>
</table>

In a mad rash of photo uploading, I've also posted photos from the <a href="http://www.mode3.com/david/gallery/Pennsylvania/BloomFieldItalianDays/">Bloomfield Italian Days</a> festival, right here in Pittsburgh. Bocci, italian sausage, and intricate moustache work, what more could you ask for?]]>
      
    </content>
  </entry>
  <entry>
    <title>London, Aug &apos;04</title>
    <link rel="alternate" type="text/html" href="http://www.mode3.com/david/archives/000054.php" />
    <modified>2004-10-17T14:59:32Z</modified>
    <issued>2004-10-17T10:59:32-05:00</issued>
    <id>tag:www.mode3.com,2004:/david//3.54</id>
    <created>2004-10-17T14:59:32Z</created>
    <summary type="text/plain"> After fixing up the gallery templates a bit, I finally got around to uploading the photos from our August trip to England. There are seperate sets for Brighton, London, and Norwich....</summary>
    <author>
      <name>David</name>
      <url>http://www.mode3.com/david</url>
      <email>david@mode3.com</email>
    </author>
    
    <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.mode3.com/david/">
      <![CDATA[<table class="dgg-slide">
  <tbody><tr>
    <td>
      <a href="/david/gallery/England2004/"><img alt="Brighton Beach UK 023.jpg - 2002:01:02 01:01:45" src="/david/gallery/England2004/Brighton0804/.cache/75x100-Brighton%20Beach%20UK%20023.jpg" height="100" width="75"></a>
    </td>
  </tr>
</tbody></table>

After fixing up the gallery templates a bit, I finally got around to uploading the photos from our August trip to <a title="Index of: /david/gallery/England2004" href="http://www.mode3.com/david/gallery/England2004/">England</a>.    There are seperate sets for <a href="http://www.mode3.com/david/gallery/England2004/Brighton0804/">Brighton</a>, <a href="http://www.mode3.com/david/gallery/England2004/London0804/">London</a>, and <a href="http://www.mode3.com/david/gallery/England2004/Norridge0804/">Norwich</a>.
<br style="clear:both" />
]]>
      
    </content>
  </entry>
  <entry>
    <title>Burning Man 2004</title>
    <link rel="alternate" type="text/html" href="http://www.mode3.com/david/archives/000051.php" />
    <modified>2004-09-18T16:01:31Z</modified>
    <issued>2004-09-18T12:01:31-05:00</issued>
    <id>tag:www.mode3.com,2004:/david//3.51</id>
    <created>2004-09-18T16:01:31Z</created>
    <summary type="text/plain"><![CDATA[ I've finally uploaded my Burning Man&trade; 2004 photos, because, as you know, there just aren't enough Burning Man&trade; photos on The Internets&reg;....]]></summary>
    <author>
      <name>David</name>
      <url>http://www.mode3.com/david</url>
      <email>david@mode3.com</email>
    </author>
    
    <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.mode3.com/david/">
      <![CDATA[<table class="dgg-slide">
<tr>
<td>
      <a href="/david/gallery/BurningMan2004/"><img alt="Burning Man '04 Photos" src="/david/gallery/BurningMan2004/.cache/75x100-Burning%20Man%20036.jpg" height="100" width="75" /></a>
</td>
</tr>
</table>

I've finally uploaded my <a title="Index of: /david/gallery/BurningMan2004" href="http://www.mode3.com/david/gallery/BurningMan2004/">Burning Man&trade; 2004 photos</a>, because, as you know, there just aren't enough <a href="http://www.burningman.com">Burning Man</a>&trade; photos on The Internets&reg;. 

<br style="clear:both" />]]>
      
    </content>
  </entry>
  <entry>
    <title>dub dub dub dot dee jay zak brown dot com</title>
    <link rel="alternate" type="text/html" href="http://www.mode3.com/david/archives/000032.php" />
    <modified>2004-06-17T04:16:12Z</modified>
    <issued>2004-06-17T00:16:12-05:00</issued>
    <id>tag:www.mode3.com,2004:/david//3.32</id>
    <created>2004-06-17T04:16:12Z</created>
    <summary type="text/plain">I just finished up a real small promo site for fellow mode3 resident and aspiring supastah deejay zak brown. Check it out! Thanks to Cameron Moll&apos;s Authentic Boredom series on distressed photoshop dark magic for tips and inspirations....</summary>
    <author>
      <name>David</name>
      <url>http://www.mode3.com/david</url>
      <email>david@mode3.com</email>
    </author>
    
    <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.mode3.com/david/">
      <![CDATA[I just finished up a real small promo site for fellow <a href="http://www.mode3.com">mode3</a> resident and aspiring supastah <a title="visit dj zak brown's site" href="http://www.djzakbrown.com/">deejay zak brown</a>. Check it out! Thanks to Cameron Moll's <a href="http://www.cameronmoll.com/">Authentic Boredom</a> series on distressed photoshop dark magic for tips and inspirations.

]]>
      
    </content>
  </entry>
  <entry>
    <title>Firefox 0.9</title>
    <link rel="alternate" type="text/html" href="http://www.mode3.com/david/archives/000031.php" />
    <modified>2004-06-16T19:51:27Z</modified>
    <issued>2004-06-16T15:51:27-05:00</issued>
    <id>tag:www.mode3.com,2004:/david//3.31</id>
    <created>2004-06-16T19:51:27Z</created>
    <summary type="text/plain">Firefox 0.9 has been released, faster and slicker than ever. The new default theme is kind of ugly, although I didn&apos;t like the previous one either. I&apos;m waiting for a Le Breeze update, but until then, the Charamel theme is...</summary>
    <author>
      <name>David</name>
      <url>http://www.mode3.com/david</url>
      <email>david@mode3.com</email>
    </author>
    
    <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.mode3.com/david/">
      <![CDATA[<a title="Firefox - The Browser, Reloaded" href="http://www.mozilla.org/products/firefox/">Firefox 0.9</a> has been released, faster and slicker than ever. The new default theme is kind of ugly, although I didn't like the previous one either. I'm waiting for a <a href="http://www.alazanto.org/lebreeze/">Le Breeze</a> update, but until then, the <a href="http://members.shaw.ca/lucx/">Charamel</a> theme is very thoroughly executed, with great attention to detail. About the only thing I *don't* like about it is, well, the "charamel" color.

]]>
      
    </content>
  </entry>

</feed>