<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0" xml:base="http://tedserbinski.com">
<channel>
 <title>ted serbinski</title>
 <link>http://tedserbinski.com</link>
 <description>a blog about drupal, macs, productivity, health, and bmws</description>
 <language>en</language>
<geo:lat>38.893241</geo:lat><geo:long>-77.074537</geo:long><image><link>http://tedserbinski.com</link><url>http://tedserbinski.com/sites/all/themes/tedserbinski/images/logo-small.png</url><title>ted serbinski</title></image><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/tedserbinski" type="application/rss+xml" /><feedburner:emailServiceId>tedserbinski</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
 <title>Drupal Behavior to Fix IE6 CSS Background Image Flickering</title>
 <link>http://feedproxy.google.com/~r/tedserbinski/~3/s6BZXD8uUd4/drupal-behavior-fix-ie6-css-background-image-flickering</link>
 <description>&lt;p&gt;When the new &lt;a href="http://tedserbinski.com/tags/portfolio/mylifetime-community-launches" rel="nofollow"&gt;myLifetime community launched&lt;/a&gt; we wanted to focus on performance, and one trick was to minimize &lt;span class="caps"&gt;HTTP&lt;/span&gt; requests by using the &lt;span class="caps"&gt;CSS&lt;/span&gt; sprites technique. For a great run down of this technique and examples of other major sites using this, &lt;a href="http://www.smashingmagazine.com/2009/04/27/the-mystery-of-css-sprites-techniques-tools-and-tutorials/" rel="nofollow"&gt;check out this resource on Smashing Magazine&lt;/a&gt;.&lt;/p&gt;

	&lt;p&gt;Double checking this implementation with &lt;a href="http://developer.yahoo.com/yslow/" rel="nofollow"&gt;YSlow!&lt;/a&gt; everything was working great.&lt;/p&gt;

	&lt;p&gt;Well almost. Then we tried IE6. &lt;a href="http://blog.hugsformonsters.com/post/87657240/overly-judgemental-ie6-splash-pages" rel="nofollow"&gt;I hate IE6&lt;/a&gt;.&lt;/p&gt;

	&lt;p&gt;Then I discovered &lt;a href="http://misterpixel.blogspot.com/2006/09/forensic-analysis-of-ie6.html" rel="nofollow"&gt;this excellent post detailing IE6 and its BackgroundImageCache usage&lt;/a&gt;.&lt;/p&gt;

	&lt;p&gt;After trying that JS trick, we noticed the page was significantly faster &amp;amp; smoother in IE6. With heavy &lt;span class="caps"&gt;CSS&lt;/span&gt; sprite usage this was a necessary fix. And with future sites in the works with this same technique, seems like a reoccurring fix.&lt;/p&gt;

	&lt;p&gt;To Drupal-ize &amp;amp; jQuery-ize this fix for resuability, I wrote this simple behavior below that works with Drupal 6. You can see in action on the &lt;a href="http://mylifetime.com/community" rel="nofollow"&gt;myLifetime community&lt;/a&gt;.&lt;/p&gt;

	&lt;p&gt;&lt;div class="geshifilter"&gt;&lt;div class="text geshifilter-text" style="font-family:monospace;"&gt;&lt;ol&gt;&lt;li style="font-family: monospace; font-weight: normal;"&gt;&lt;div style="font-family: monospace; font-weight: normal; font-style: normal"&gt;/**&lt;/div&gt;&lt;/li&gt;
&lt;li style="font-family: monospace; font-weight: normal;"&gt;&lt;div style="font-family: monospace; font-weight: normal; font-style: normal"&gt;&amp;nbsp;* Fix flickering background images in IE.&lt;/div&gt;&lt;/li&gt;
&lt;li style="font-family: monospace; font-weight: normal;"&gt;&lt;div style="font-family: monospace; font-weight: normal; font-style: normal"&gt;&amp;nbsp;*/&lt;/div&gt;&lt;/li&gt;
&lt;li style="font-family: monospace; font-weight: normal;"&gt;&lt;div style="font-family: monospace; font-weight: normal; font-style: normal"&gt;Drupal.behaviors.fixIEFlickr = function() {&lt;/div&gt;&lt;/li&gt;
&lt;li style="font-family: monospace; font-weight: bold; font-style: italic;"&gt;&lt;div style="font-family: monospace; font-weight: normal; font-style: normal"&gt;&amp;nbsp; if (jQuery.browser.msie) {&lt;/div&gt;&lt;/li&gt;
&lt;li style="font-family: monospace; font-weight: normal;"&gt;&lt;div style="font-family: monospace; font-weight: normal; font-style: normal"&gt;&amp;nbsp; &amp;nbsp; try { &lt;/div&gt;&lt;/li&gt;
&lt;li style="font-family: monospace; font-weight: normal;"&gt;&lt;div style="font-family: monospace; font-weight: normal; font-style: normal"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; document.execCommand('BackgroundImageCache', false, true); &lt;/div&gt;&lt;/li&gt;
&lt;li style="font-family: monospace; font-weight: normal;"&gt;&lt;div style="font-family: monospace; font-weight: normal; font-style: normal"&gt;&amp;nbsp; &amp;nbsp; } catch(err) {}&lt;/div&gt;&lt;/li&gt;
&lt;li style="font-family: monospace; font-weight: normal;"&gt;&lt;div style="font-family: monospace; font-weight: normal; font-style: normal"&gt;&amp;nbsp; }&lt;/div&gt;&lt;/li&gt;
&lt;li style="font-family: monospace; font-weight: bold; font-style: italic;"&gt;&lt;div style="font-family: monospace; font-weight: normal; font-style: normal"&gt;};&lt;/div&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/div&gt;&lt;/div&gt;&lt;/p&gt;

	&lt;p&gt;May this code save you a few hours/days of head banging!&lt;/p&gt;&lt;p&gt;&lt;a href="http://tedserbinski.com/tags/drupal/drupal-behavior-fix-ie6-css-background-image-flickering" target="_blank"&gt;read more&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=s6BZXD8uUd4:JoB_trp8R_w:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=s6BZXD8uUd4:JoB_trp8R_w:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?i=s6BZXD8uUd4:JoB_trp8R_w:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=s6BZXD8uUd4:JoB_trp8R_w:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=s6BZXD8uUd4:JoB_trp8R_w:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?i=s6BZXD8uUd4:JoB_trp8R_w:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/tedserbinski/~4/s6BZXD8uUd4" height="1" width="1"/&gt;</description>
 <comments>http://tedserbinski.com/tags/drupal/drupal-behavior-fix-ie6-css-background-image-flickering#comments</comments>
 <category domain="http://tedserbinski.com/tags/css">css</category>
 <category domain="http://tedserbinski.com/tags/drupal">drupal</category>
 <category domain="http://tedserbinski.com/tags/ie6">ie6</category>
 <category domain="http://tedserbinski.com/tags/jquery">jquery</category>
 <pubDate>Mon, 11 May 2009 07:05:38 +0000</pubDate>
 <dc:creator>ted</dc:creator>
 <guid isPermaLink="false">204 at http://tedserbinski.com</guid>
<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license><feedburner:origLink>http://tedserbinski.com/tags/drupal/drupal-behavior-fix-ie6-css-background-image-flickering</feedburner:origLink></item>
<item><title>San Francisco Panorama [Flickr]</title><link>http://feedproxy.google.com/~r/tedserbinski/~3/23Ds7tgJAfQ/</link><category>sanfran</category><category>alcatraz</category><dc:creator>tedserbinski</dc:creator><pubDate>Thu, 07 May 2009 00:17:06 PDT</pubDate><guid isPermaLink="false">tag:flickr.com,2005:/photo/3509898868</guid><description>&lt;p&gt;&lt;a href="http://www.flickr.com/people/tedserbinski/"&gt;tedserbinski&lt;/a&gt; posted a photo:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.flickr.com/photos/tedserbinski/3509898868/" title="San Francisco Panorama"&gt;&lt;img src="http://farm4.static.flickr.com/3634/3509898868_7670a7a4bd_m.jpg" width="240" height="18" alt="San Francisco Panorama" /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;San Francisco panorama taken from Alcatraz Island. From partly cloudy Bay Bridge to super foggy Golden Gate.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/tedserbinski/~4/23Ds7tgJAfQ" height="1" width="1"/&gt;</description><enclosure url="http://farm4.static.flickr.com/3634/3509898868_b0b09ba5fb_o.jpg" length="0" type="image/jpeg" /><dc:date.Taken>2009-05-05T17:33:03-08:00</dc:date.Taken><feedburner:origLink>http://www.flickr.com/photos/tedserbinski/3509898868/</feedburner:origLink></item><item>
 <title>myLifetime Community Launches</title>
 <link>http://feedproxy.google.com/~r/tedserbinski/~3/ozCkQfMIogw/mylifetime-community-launches</link>
 <description>&lt;p&gt;Recently, the new &lt;a href="http://community.mylifetime.com/"&gt;myLifetime Community&lt;/a&gt; launched and it has been an overwhelming success. With members joining at such a fast rate, it&amp;#8217;ll soon be surging past 100,000 &lt;a href="http://community.mylifetime.com/community/members"&gt;registered members&lt;/a&gt;.&lt;/p&gt;

	&lt;p&gt;This site is separate from the main &lt;a href="http://www.mylifetime.com"&gt;myLifetime site&lt;/a&gt; (which also is Drupal) and was built to be powered by the &lt;a href="http://www.mothersclick.com"&gt;MothersClick community platform&lt;/a&gt; which  &lt;a href="http://tedserbinski.com/tags/parentsclick-network/mothersclick-acquired-lifetime-networks"&gt;Lifetime acquired last year&lt;/a&gt;. This new community website was built upon the new version of our community platform, which now has Drupal 6 at it&amp;#8217;s core. &lt;/p&gt;

	&lt;p&gt;While we&amp;#8217;ve been quietly working on this new platform, we&amp;#8217;ve been brewing up and improving some great APIs in the Drupal community, all of which we consider to be necessities for building rich, online communities with Drupal. Without further ado, here&amp;#8217;s a top sampling of where our efforts have been focused:&lt;/p&gt;&lt;p&gt;&lt;a href="http://tedserbinski.com/tags/portfolio/mylifetime-community-launches" target="_blank"&gt;read more&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=ozCkQfMIogw:cfYJweNUFYk:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=ozCkQfMIogw:cfYJweNUFYk:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?i=ozCkQfMIogw:cfYJweNUFYk:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=ozCkQfMIogw:cfYJweNUFYk:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=ozCkQfMIogw:cfYJweNUFYk:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?i=ozCkQfMIogw:cfYJweNUFYk:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/tedserbinski/~4/ozCkQfMIogw" height="1" width="1"/&gt;</description>
 <comments>http://tedserbinski.com/tags/portfolio/mylifetime-community-launches#comments</comments>
 <category domain="http://tedserbinski.com/tags/drupal">drupal</category>
 <category domain="http://tedserbinski.com/tags/portfolio">portfolio</category>
 <pubDate>Sat, 28 Feb 2009 07:25:32 +0000</pubDate>
 <dc:creator>ted</dc:creator>
 <guid isPermaLink="false">203 at http://tedserbinski.com</guid>
<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license><feedburner:origLink>http://tedserbinski.com/tags/portfolio/mylifetime-community-launches</feedburner:origLink></item>
<item>
 <title>Blog Redesign and Drupal "Spring Theme" Released</title>
 <link>http://feedproxy.google.com/~r/tedserbinski/~3/FaGLm2OWaIw/blog-redesign-and-drupal-spring-theme-released</link>
 <description>&lt;p&gt;&lt;a href="http://www.flickr.com/photos/tedserbinski/3299012691/" title="Drupal Spring Theme by Ted Serbinski by m3avrck, on Flickr"&gt;&lt;img src="http://farm4.static.flickr.com/3590/3299012691_9b86b9a457_m.jpg" width="240" height="142" alt="Drupal Spring Theme by Ted Serbinski" style="float:left;margin:0 6px 6px 0;border:1px solid #ccc;padding:2px;" /&gt;&lt;/a&gt;&lt;/p&gt;

	&lt;p&gt;Almost exactly &lt;a href="http://tedserbinski.com/tags/portfolio/ted-30-a-drupal-blog-redesign"&gt;1 year ago I redesigned this blog&lt;/a&gt; and today, I unveil yet another new design. This time, it&amp;#8217;s running Drupal 6 and all that goodness. I&amp;#8217;ve enhanced the contrast on the design quite a bit and really improved the readability on posts and comments, along with using the &lt;a href="http://drupal.org/project/geshifilter"&gt;GeSHi code filter&lt;/a&gt; for much better display of code snippets. This theme was built on top of the &lt;a href="http://drupal.org/project/blueprint"&gt;Drupal Blueprint theme&lt;/a&gt;, which I maintain, and also made theming this site quick and simple.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://tedserbinski.com/tags/drupal/blog-redesign-and-drupal-spring-theme-released" target="_blank"&gt;read more&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=FaGLm2OWaIw:rsstbCFFi3s:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=FaGLm2OWaIw:rsstbCFFi3s:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?i=FaGLm2OWaIw:rsstbCFFi3s:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=FaGLm2OWaIw:rsstbCFFi3s:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=FaGLm2OWaIw:rsstbCFFi3s:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?i=FaGLm2OWaIw:rsstbCFFi3s:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/tedserbinski/~4/FaGLm2OWaIw" height="1" width="1"/&gt;</description>
 <comments>http://tedserbinski.com/tags/drupal/blog-redesign-and-drupal-spring-theme-released#comments</comments>
 <category domain="http://tedserbinski.com/tags/drupal">drupal</category>
 <enclosure url="http://tedserbinski.com/files/tedserbinski-drupal-spring-theme.zip" length="1818239" type="application/zip" />
 <pubDate>Sun, 22 Feb 2009 08:21:57 +0000</pubDate>
 <dc:creator>ted</dc:creator>
 <guid isPermaLink="false">202 at http://tedserbinski.com</guid>
<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license><feedburner:origLink>http://tedserbinski.com/tags/drupal/blog-redesign-and-drupal-spring-theme-released</feedburner:origLink></item>
<item><title>Drupal Spring Theme by Ted Serbinski [Flickr]</title><link>http://feedproxy.google.com/~r/tedserbinski/~3/boyUkaC7XZs/</link><dc:creator>tedserbinski</dc:creator><pubDate>Sun, 22 Feb 2009 00:12:14 PST</pubDate><guid isPermaLink="false">tag:flickr.com,2005:/photo/3299012691</guid><description>&lt;p&gt;&lt;a href="http://www.flickr.com/people/tedserbinski/"&gt;tedserbinski&lt;/a&gt; posted a photo:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.flickr.com/photos/tedserbinski/3299012691/" title="Drupal Spring Theme by Ted Serbinski"&gt;&lt;img src="http://farm4.static.flickr.com/3590/3299012691_9b86b9a457_m.jpg" width="240" height="142" alt="Drupal Spring Theme by Ted Serbinski" /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This Drupal theme can be downloaded from here: &lt;a href="http://tedserbinski.com/tags/drupal/blog-redesign-and-drupal-spring-theme-released"&gt;tedserbinski.com/tags/drupal/blog-redesign-and-drupal-spr...&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/tedserbinski/~4/boyUkaC7XZs" height="1" width="1"/&gt;</description><enclosure url="http://farm4.static.flickr.com/3590/3299012691_35eef07ed1_o.png" length="0" type="image/jpeg" /><dc:date.Taken>2009-02-22T03:12:14-08:00</dc:date.Taken><feedburner:origLink>http://www.flickr.com/photos/tedserbinski/3299012691/</feedburner:origLink></item><item><title>Drupal Spring Theme by Ted Serbinski (full page screen) [Flickr]</title><link>http://feedproxy.google.com/~r/tedserbinski/~3/Ozbd4Gxy_iU/</link><dc:creator>tedserbinski</dc:creator><pubDate>Sun, 22 Feb 2009 00:12:13 PST</pubDate><guid isPermaLink="false">tag:flickr.com,2005:/photo/3299841846</guid><description>&lt;p&gt;&lt;a href="http://www.flickr.com/people/tedserbinski/"&gt;tedserbinski&lt;/a&gt; posted a photo:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.flickr.com/photos/tedserbinski/3299841846/" title="Drupal Spring Theme by Ted Serbinski (full page screen)"&gt;&lt;img src="http://farm4.static.flickr.com/3619/3299841846_97bfaa1cc6_m.jpg" width="83" height="240" alt="Drupal Spring Theme by Ted Serbinski (full page screen)" /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This Drupal theme can be downloaded from here: &lt;a href="http://tedserbinski.com/tags/drupal/blog-redesign-and-drupal-spring-theme-released"&gt;tedserbinski.com/tags/drupal/blog-redesign-and-drupal-spr...&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/tedserbinski/~4/Ozbd4Gxy_iU" height="1" width="1"/&gt;</description><enclosure url="http://farm4.static.flickr.com/3619/3299841846_369c476c19_o.png" length="0" type="image/jpeg" /><dc:date.Taken>2009-02-22T03:12:13-08:00</dc:date.Taken><feedburner:origLink>http://www.flickr.com/photos/tedserbinski/3299841846/</feedburner:origLink></item><item>
 <title>MothersClick Acquired by Lifetime Networks</title>
 <link>http://feedproxy.google.com/~r/tedserbinski/~3/X96ZB6eyK_Y/mothersclick-acquired-lifetime-networks</link>
 <description>&lt;p&gt;&lt;a href="http://www.mothersclick.com" rel="nofollow"&gt;MothersClick.com&lt;/a&gt; and the rest of the &lt;a href="http://www.parentsclick.com" rel="nofollow"&gt;ParentsClick Network&lt;/a&gt; have been &lt;a href="http://www.marketwatch.com/news/story/l/story.aspx?guid=%7B764B126C-2071-4605-8222-7FA1E481B0EE%7D" rel="nofollow"&gt;acquired by Lifetime Entertainment&lt;/a&gt;. &lt;/p&gt;

	&lt;p&gt;I&amp;#8217;ve been working on this site and with Dietrich (&lt;span class="caps"&gt;CEO&lt;/span&gt; &amp;amp; founder) for over 2 years now. Through the ups and the downs we stuck to it, determined to succeed, and I&amp;#8217;m delighted that finally after these years, we will have all the resources behind us now to really build out the company and network of sites to how we both envision it. The coming years are going to be exciting!&lt;/p&gt;

	&lt;p&gt;&lt;a href="http://drupal.org/node/310095" rel="nofollow"&gt;An article for Drupal.org&lt;/a&gt; further outlines things from a technical perspective.&lt;/p&gt;&lt;p&gt;&lt;a href="http://tedserbinski.com/tags/parentsclick-network/mothersclick-acquired-lifetime-networks" target="_blank"&gt;read more&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=X96ZB6eyK_Y:_6DBhXQ5LUY:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=X96ZB6eyK_Y:_6DBhXQ5LUY:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?i=X96ZB6eyK_Y:_6DBhXQ5LUY:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=X96ZB6eyK_Y:_6DBhXQ5LUY:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=X96ZB6eyK_Y:_6DBhXQ5LUY:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?i=X96ZB6eyK_Y:_6DBhXQ5LUY:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/tedserbinski/~4/X96ZB6eyK_Y" height="1" width="1"/&gt;</description>
 <comments>http://tedserbinski.com/tags/parentsclick-network/mothersclick-acquired-lifetime-networks#comments</comments>
 <category domain="http://tedserbinski.com/tags/mothersclick">MothersClick</category>
 <category domain="http://tedserbinski.com/tags/parentsclick-network">ParentsClick Network</category>
 <pubDate>Thu, 18 Sep 2008 07:28:52 +0000</pubDate>
 <dc:creator>ted</dc:creator>
 <guid isPermaLink="false">198 at http://tedserbinski.com</guid>
<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license><feedburner:origLink>http://tedserbinski.com/tags/parentsclick-network/mothersclick-acquired-lifetime-networks</feedburner:origLink></item>
<item><title>IMG_1956 [Flickr]</title><link>http://feedproxy.google.com/~r/tedserbinski/~3/L4172jJtWz4/</link><dc:creator>tedserbinski</dc:creator><pubDate>Thu, 04 Sep 2008 15:01:12 PDT</pubDate><guid isPermaLink="false">tag:flickr.com,2005:/photo/2828329249</guid><description>&lt;p&gt;&lt;a href="http://www.flickr.com/people/tedserbinski/"&gt;tedserbinski&lt;/a&gt; posted a photo:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.flickr.com/photos/tedserbinski/2828329249/" title="IMG_1956"&gt;&lt;img src="http://farm4.static.flickr.com/3214/2828329249_b8d65a36a3_m.jpg" width="180" height="240" alt="IMG_1956" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/tedserbinski/~4/L4172jJtWz4" height="1" width="1"/&gt;</description><enclosure url="http://farm4.static.flickr.com/3214/2828329249_279e993bfe_o.jpg" length="0" type="image/jpeg" /><dc:date.Taken>2008-08-23T17:12:42-08:00</dc:date.Taken><feedburner:origLink>http://www.flickr.com/photos/tedserbinski/2828329249/</feedburner:origLink></item><item><title>IMG_1974 [Flickr]</title><link>http://feedproxy.google.com/~r/tedserbinski/~3/4QYOu_Gsl38/</link><dc:creator>tedserbinski</dc:creator><pubDate>Thu, 04 Sep 2008 15:00:56 PDT</pubDate><guid isPermaLink="false">tag:flickr.com,2005:/photo/2828328695</guid><description>&lt;p&gt;&lt;a href="http://www.flickr.com/people/tedserbinski/"&gt;tedserbinski&lt;/a&gt; posted a photo:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.flickr.com/photos/tedserbinski/2828328695/" title="IMG_1974"&gt;&lt;img src="http://farm4.static.flickr.com/3086/2828328695_77ea9c52eb_m.jpg" width="240" height="180" alt="IMG_1974" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/tedserbinski/~4/4QYOu_Gsl38" height="1" width="1"/&gt;</description><enclosure url="http://farm4.static.flickr.com/3086/2828328695_37afab43b7_o.jpg" length="0" type="image/jpeg" /><dc:date.Taken>2008-08-23T18:30:28-08:00</dc:date.Taken><feedburner:origLink>http://www.flickr.com/photos/tedserbinski/2828328695/</feedburner:origLink></item><item>
 <title>Creating an Alpha Pager with Views 2 and Drupal 6</title>
 <link>http://feedproxy.google.com/~r/tedserbinski/~3/Rqxl7FVSsCc/creating-alpha-pager-with-views-2-and-drupal-6</link>
 <description>&lt;p&gt;&lt;strong&gt;UPDATE: &lt;a href="http://tedserbinski.com/tags/drupal/creating-alpha-pager-with-views-2-and-drupal-6#comment-3478"&gt;Earl comments below&lt;/a&gt; how this is already built in. Two different ways to achieve a similar result, each with their own pros/cons.&lt;/strong&gt;&lt;/p&gt;

	&lt;p&gt;Hats off to &lt;a href="http://www.angrydonuts.com/"&gt;Earl Miles&lt;/a&gt; and the rest the &lt;a href="http://groups.drupal.org/views-developers"&gt;views developers&lt;/a&gt; they have done a tremendous job with Views 2. While the interface is entirely different from that of Views 1, it is so much more intuitive that within a few minutes I had quickly forgotten my bewildered &amp;#8220;oh no, I know nothing&amp;#8221; look :)&lt;/p&gt;

	&lt;p&gt;From reading all of the docs and quietly watching development commits, I knew Views 2 was going to eliminate a lot of the Views 1 helper modules and open up a whole new world of awesomeness. While I haven&amp;#8217;t seen many blog posts detailing just which functionality/modules have been replaced with Views 2, I wanted to kickstart things with my own discovery as I played around with Views 2 quite thoroughly this afternoon.&lt;/p&gt;

	&lt;p&gt;With Views 1, to build an alpha pager you would use the &lt;a href="http://drupal.org/project/views_alpha_pager"&gt;views alpha pager module&lt;/a&gt; in conjunction with your view. But what about Views 2?&lt;/p&gt;

&lt;p&gt;&lt;a href="http://tedserbinski.com/tags/drupal/creating-alpha-pager-with-views-2-and-drupal-6" target="_blank"&gt;read more&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=Rqxl7FVSsCc:nw0v6RwA1dg:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=Rqxl7FVSsCc:nw0v6RwA1dg:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?i=Rqxl7FVSsCc:nw0v6RwA1dg:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=Rqxl7FVSsCc:nw0v6RwA1dg:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=Rqxl7FVSsCc:nw0v6RwA1dg:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?i=Rqxl7FVSsCc:nw0v6RwA1dg:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/tedserbinski/~4/Rqxl7FVSsCc" height="1" width="1"/&gt;</description>
 <comments>http://tedserbinski.com/tags/drupal/creating-alpha-pager-with-views-2-and-drupal-6#comments</comments>
 <category domain="http://tedserbinski.com/tags/drupal">drupal</category>
 <pubDate>Thu, 21 Aug 2008 23:08:17 +0000</pubDate>
 <dc:creator>ted</dc:creator>
 <guid isPermaLink="false">196 at http://tedserbinski.com</guid>
<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license><feedburner:origLink>http://tedserbinski.com/tags/drupal/creating-alpha-pager-with-views-2-and-drupal-6</feedburner:origLink></item>
<item>
 <title>Getting Drupal to Play Nice with Your CDN</title>
 <link>http://feedproxy.google.com/~r/tedserbinski/~3/uYKq6TqQrME/getting-drupal-play-nice-your-cdn</link>
 <description>&lt;br /&gt;

&lt;div style="background:#ffc;font-weight:bold;padding:3px;"&gt;Note: A better version of this patch is going into Drupal 7. &lt;a href="http://drupal.org/node/499156"&gt;View the issue/patch here&lt;/a&gt;.&lt;/div&gt;&lt;p&gt;&lt;a href="http://tedserbinski.com/tags/drupal/getting-drupal-play-nice-your-cdn" target="_blank"&gt;read more&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=uYKq6TqQrME:vzgIJRU-pe8:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=uYKq6TqQrME:vzgIJRU-pe8:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?i=uYKq6TqQrME:vzgIJRU-pe8:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=uYKq6TqQrME:vzgIJRU-pe8:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=uYKq6TqQrME:vzgIJRU-pe8:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?i=uYKq6TqQrME:vzgIJRU-pe8:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/tedserbinski/~4/uYKq6TqQrME" height="1" width="1"/&gt;</description>
 <comments>http://tedserbinski.com/tags/drupal/getting-drupal-play-nice-your-cdn#comments</comments>
 <category domain="http://tedserbinski.com/tags/drupal">drupal</category>
 <enclosure url="http://tedserbinski.com/files/cdn.patch" length="6429" type="" />
 <pubDate>Thu, 21 Aug 2008 19:30:22 +0000</pubDate>
 <dc:creator>ted</dc:creator>
 <guid isPermaLink="false">195 at http://tedserbinski.com</guid>
<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license><feedburner:origLink>http://tedserbinski.com/tags/drupal/getting-drupal-play-nice-your-cdn</feedburner:origLink></item>
<item>
 <title>How to Keep a Macbook Cool</title>
 <link>http://feedproxy.google.com/~r/tedserbinski/~3/ba7JzSmNbRo/how-keep-a-macbook-cool</link>
 <description>&lt;a href="http://www.flickr.com/photos/tedserbinski/2763227182/" title="How to Keep a Macbook Cool (1) by m3avrck, on Flickr"&gt;&lt;img src="http://farm4.static.flickr.com/3222/2763227182_a52a570a0d_m.jpg" width="240" height="180" align="left" style="margin:0 6px 6px 0" alt="How to Keep a Macbook Cool (1)" /&gt;&lt;/a&gt;

&lt;p&gt;How do you keep an Apple Macbook cool? Simple: ice.&lt;/p&gt;

&lt;p&gt;Seriously.&lt;/p&gt;

&lt;p&gt;I have a first generation Macbook Pro that is &lt;a href="http://www.google.com/search?q=macbook+pro+fan"&gt;known for it's overheating and fan issues&lt;/a&gt;. My laptop is no longer under warranty and I don't want to shell out a lot of $ to replace the motherboard and fans. &lt;/p&gt;

&lt;p&gt;Initially, not much of a problem. A fantastic program, &lt;a href="http://homepage.mac.com/holtmann/eidac/"&gt;smcFanControl&lt;/a&gt; allows you to adjust the fan speed based on your computer temperature. A manual process but my laptop is still usable.&lt;/p&gt;

&lt;p&gt;That is, till the right fan completely dies. Running one fan at full speed is not enough for this Macbook -- this sucker gets &lt;strong&gt;really&lt;/strong&gt; hot. &lt;a href="http://tedserbinski.com/tags/mac/how-keep-a-macbook-cool"&gt;Continue reading to see how I built my own solution...&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://tedserbinski.com/tags/mac/how-keep-a-macbook-cool" target="_blank"&gt;read more&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=ba7JzSmNbRo:IYS9aZMclrE:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=ba7JzSmNbRo:IYS9aZMclrE:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?i=ba7JzSmNbRo:IYS9aZMclrE:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=ba7JzSmNbRo:IYS9aZMclrE:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=ba7JzSmNbRo:IYS9aZMclrE:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?i=ba7JzSmNbRo:IYS9aZMclrE:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/tedserbinski/~4/ba7JzSmNbRo" height="1" width="1"/&gt;</description>
 <comments>http://tedserbinski.com/tags/mac/how-keep-a-macbook-cool#comments</comments>
 <category domain="http://tedserbinski.com/tags/mac">mac</category>
 <pubDate>Thu, 14 Aug 2008 16:36:53 +0000</pubDate>
 <dc:creator>ted</dc:creator>
 <guid isPermaLink="false">194 at http://tedserbinski.com</guid>
<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license><feedburner:origLink>http://tedserbinski.com/tags/mac/how-keep-a-macbook-cool</feedburner:origLink></item>
<item>
 <title>Connecting Drupal and Silverlight</title>
 <link>http://feedproxy.google.com/~r/tedserbinski/~3/YsqRH368LUI/connecting-drupal-and-silverlight</link>
 <description>&lt;p&gt;My brother wrote an &lt;a href="http://www.mattserbinski.com/blog/connecting-drupal-and-silverlight" rel="nofollow"&gt;excellent article on how to connect Drupal and Silverlight&lt;/a&gt;. This is pretty indepth and shows what needs to be done on the Silverlight side to work with a simple &lt;span class="caps"&gt;XML-RPC&lt;/span&gt; Drupal module. Definitely worth checking out, great job bro!&lt;/p&gt;&lt;p&gt;&lt;a href="http://tedserbinski.com/tags/silverlight/connecting-drupal-and-silverlight" target="_blank"&gt;read more&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=YsqRH368LUI:zIl2ESs-lmI:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=YsqRH368LUI:zIl2ESs-lmI:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?i=YsqRH368LUI:zIl2ESs-lmI:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=YsqRH368LUI:zIl2ESs-lmI:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=YsqRH368LUI:zIl2ESs-lmI:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?i=YsqRH368LUI:zIl2ESs-lmI:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/tedserbinski/~4/YsqRH368LUI" height="1" width="1"/&gt;</description>
 <comments>http://tedserbinski.com/tags/silverlight/connecting-drupal-and-silverlight#comments</comments>
 <category domain="http://tedserbinski.com/tags/drupal">drupal</category>
 <category domain="http://tedserbinski.com/tags/silverlight">silverlight</category>
 <pubDate>Thu, 31 Jul 2008 03:34:26 +0000</pubDate>
 <dc:creator>ted</dc:creator>
 <guid isPermaLink="false">193 at http://tedserbinski.com</guid>
<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license><feedburner:origLink>http://tedserbinski.com/tags/silverlight/connecting-drupal-and-silverlight</feedburner:origLink></item>
<item>
 <title>The Paulding Light</title>
 <link>http://feedproxy.google.com/~r/tedserbinski/~3/ppskH3kQrVk/paulding-light</link>
 <description>&lt;p&gt;&lt;a href="http://www.flickr.com/photos/tedserbinski/2713024192/" title="The Paulding Light by m3avrck, on Flickr"&gt;&lt;img src="http://farm4.static.flickr.com/3097/2713024192_d0858b264d_m.jpg" width="240" height="180" alt="The Paulding Light" align="left" /&gt;&lt;/a&gt; Last week we were in upstate Michigan and went to see the Paulding Light just outside of &lt;a href="http://maps.google.com/maps?f=q&amp;hl=en&amp;geocode=&amp;q=watersmeet,+mi&amp;ie=UTF8&amp;z=10&amp;iwloc=addr"&gt;Watersmeet, MI&lt;/a&gt;.  This is a mysterious phenomenon of blinking lights, that almost looks like a mini star.&lt;/p&gt;

	&lt;p&gt;You can &lt;a href="http://www.backwoodswisconsin.com/paulding_light.htm"&gt;read more about the Paulding Light here&lt;/a&gt; and also find directions and other theories that try to explain where this light comes from.&lt;/p&gt;

	&lt;p&gt;When we saw it, there was a pathway that followed the power lines that looked like you could walk closer to the light. We walked a bit but the light never appeared larger. Some other folks there that night walked considerably closer and they said they never saw the light at all&amp;#8212;despite us saying we saw it a few times as they walked! So it &lt;strong&gt;disappears&lt;/strong&gt; as you get closer, crazy! &lt;/p&gt;

	&lt;p&gt;Below is a short movie I made putting together clips from our cameras that we had. Can&amp;#8217;t wait to go back next year with some more equipment to explore!&lt;/p&gt;

	&lt;p&gt;&lt;object width="425" height="350"&gt; &lt;param name="movie" value="http://www.youtube.com/v/NznmgW2JtyM" /&gt;  &lt;embed src="http://www.youtube.com/v/NznmgW2JtyM" type="application/x-shockwave-flash" width="425" height="350"&gt; &lt;/embed&gt; &lt;/object&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://tedserbinski.com/tags/haunted/paulding-light" target="_blank"&gt;read more&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=ppskH3kQrVk:tUpMTmOoQQA:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=ppskH3kQrVk:tUpMTmOoQQA:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?i=ppskH3kQrVk:tUpMTmOoQQA:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=ppskH3kQrVk:tUpMTmOoQQA:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=ppskH3kQrVk:tUpMTmOoQQA:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?i=ppskH3kQrVk:tUpMTmOoQQA:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/tedserbinski/~4/ppskH3kQrVk" height="1" width="1"/&gt;</description>
 <comments>http://tedserbinski.com/tags/haunted/paulding-light#comments</comments>
 <category domain="http://tedserbinski.com/tags/haunted">haunted</category>
 <category domain="http://tedserbinski.com/tags/michigan">michigan</category>
 <pubDate>Tue, 29 Jul 2008 16:53:06 +0000</pubDate>
 <dc:creator>ted</dc:creator>
 <guid isPermaLink="false">192 at http://tedserbinski.com</guid>
<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license><feedburner:origLink>http://tedserbinski.com/tags/haunted/paulding-light</feedburner:origLink></item>
<item>
 <title>Preventing Drupal from Handling 404s for Performance</title>
 <link>http://feedproxy.google.com/~r/tedserbinski/~3/lG7RFO8KA2E/preventing-drupal-handling-404s-performance</link>
 <description>&lt;p&gt;The .htaccess file included with Drupal tells Apache to send all 404 requests to Drupal to handle. While this is great in some cases, the performance degradation can have a huge impact on a site that has millions of users.&lt;/p&gt;

	&lt;p&gt;When Drupal processes a 404, it has to bootstrap Drupal, which includes Apache loading up the &lt;span class="caps"&gt;PHP&lt;/span&gt; process, gathering all of the Drupal &lt;span class="caps"&gt;PHP&lt;/span&gt; files, connecting to the database, and running some queries. This is quite expensive when Apache can be told to simply say &amp;#8220;Page not found&amp;#8221; without having to incur any of that overhead.&lt;/p&gt;

	&lt;p&gt;Now you might say your site doesn&amp;#8217;t have any broken URLs as you haven&amp;#8217;t changed any. Well that&amp;#8217;s great, but as your site grows, it is going to be a target for spammers and hackers. They are going to start requesting all sorts of file to see if they can find an exploit. Instead of bootstrapping Drupal each time to tell them that &lt;span class="caps"&gt;DLL&lt;/span&gt; file doesn&amp;#8217;t exist, it would be much better if Apache could just say that, to save resources for your real users.&lt;/p&gt;

	&lt;p&gt;So, what can you do? How can you stop Drupal from handling 404s but not break modules like imagecache?&lt;/p&gt;&lt;p&gt;&lt;a href="http://tedserbinski.com/tags/drupal/preventing-drupal-handling-404s-performance" target="_blank"&gt;read more&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=lG7RFO8KA2E:uW4XV-uV5sw:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=lG7RFO8KA2E:uW4XV-uV5sw:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?i=lG7RFO8KA2E:uW4XV-uV5sw:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=lG7RFO8KA2E:uW4XV-uV5sw:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/tedserbinski?a=lG7RFO8KA2E:uW4XV-uV5sw:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/tedserbinski?i=lG7RFO8KA2E:uW4XV-uV5sw:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/tedserbinski/~4/lG7RFO8KA2E" height="1" width="1"/&gt;</description>
 <comments>http://tedserbinski.com/tags/drupal/preventing-drupal-handling-404s-performance#comments</comments>
 <category domain="http://tedserbinski.com/tags/code">code</category>
 <category domain="http://tedserbinski.com/tags/drupal">drupal</category>
 <pubDate>Wed, 16 Jul 2008 04:29:15 +0000</pubDate>
 <dc:creator>ted</dc:creator>
 <guid isPermaLink="false">191 at http://tedserbinski.com</guid>
<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license><feedburner:origLink>http://tedserbinski.com/tags/drupal/preventing-drupal-handling-404s-performance</feedburner:origLink></item>
</channel>
</rss>
