<?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:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:pingback="http://madskills.com/public/xml/rss/module/pingback/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
  <channel>
    <title>MattBirmingham.com</title>
    <link>http://www.mattbirmingham.com/</link>
    <description>&lt;i&gt;Jack-of-all-trades; Master of few&lt;/i&gt;</description>
    <language>en-us</language>
    <copyright>Matt Birmingham</copyright>
    <lastBuildDate>Fri, 05 Sep 2008 09:32:35 GMT</lastBuildDate>
    <generator>newtelligence dasBlog 2.0.7226.0</generator>
    <managingEditor>MattBirmingham@Gmail.com</managingEditor>
    <webMaster>MattBirmingham@Gmail.com</webMaster>
    <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/Mattbirmingham" type="application/rss+xml" /><item>
      <trackback:ping>http://www.mattbirmingham.com/Trackback.aspx?guid=71b3f918-330a-461f-b7ac-8f4b53627cd8</trackback:ping>
      <pingback:server>http://www.mattbirmingham.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.mattbirmingham.com/PermaLink,guid,71b3f918-330a-461f-b7ac-8f4b53627cd8.aspx</pingback:target>
      <dc:creator>MattBirmingham</dc:creator>
      <wfw:comment>http://www.mattbirmingham.com/CommentView,guid,71b3f918-330a-461f-b7ac-8f4b53627cd8.aspx</wfw:comment>
      <wfw:commentRss>http://www.mattbirmingham.com/SyndicationService.asmx/GetEntryCommentsRss?guid=71b3f918-330a-461f-b7ac-8f4b53627cd8</wfw:commentRss>
      
      <title>7 Easy Steps to Install PHP5 on IIS6 and Windows XP</title>
      <guid isPermaLink="false">http://www.mattbirmingham.com/PermaLink,guid,71b3f918-330a-461f-b7ac-8f4b53627cd8.aspx</guid>
      <link>http://feedproxy.google.com/~r/Mattbirmingham/~3/8KS7v_jVDyw/7EasyStepsToInstallPHP5OnIIS6AndWindowsXP.aspx</link>
      <pubDate>Fri, 05 Sep 2008 09:32:35 GMT</pubDate>
      <description>&lt;body xmlns="http://www.w3.org/1999/xhtml"&gt;&#xD;
        &lt;p&gt;&#xD;
There are various tutorials (including in the PHP distributable) on how to install&#xD;
PHP on Windows XP for development.  Few are this straightforward, and none (that&#xD;
I could easily find) use the ZIP file, allowing for you to easily upgrade and/or remove&#xD;
PHP cleanly from your system.  &#xD;
&lt;/p&gt;&#xD;
        &lt;ol&gt;&#xD;
          &lt;li&gt;&#xD;
Download PHP from &lt;a href="http://www.php.net/downloads.php"&gt;PHP.net&lt;/a&gt;.  Get&#xD;
PHP in the ZIP distribution. &#xD;
&lt;/li&gt;&#xD;
          &lt;li&gt;&#xD;
Create the directory c:\php, and expand the distro in that new directory. &#xD;
&lt;/li&gt;&#xD;
          &lt;li&gt;&#xD;
Add the new directory to your PATH variables.  PATH variables are found by right-clicking&#xD;
on My Computer -&amp;gt; Properties -&amp;gt; Advanced -&amp;gt; Environment.  You'll see&#xD;
many system variables.  Select "path" and edit, adding "c:\php" (without the&#xD;
quotes) preceding or following it with a semicolon, depending on where you put it&#xD;
in the string. &#xD;
&lt;/li&gt;&#xD;
          &lt;li&gt;&#xD;
Copy and rename php.ini-recommended to c:\windows\php.ini &#xD;
&lt;/li&gt;&#xD;
          &lt;li&gt;&#xD;
Edit php.ini setting the following: &#xD;
&lt;ol&gt;&lt;li&gt;&#xD;
doc_root = c:\inetpub\wwwroot &#xD;
&lt;/li&gt;&lt;li&gt;&#xD;
cgi.force_redirect = 0 &#xD;
&lt;/li&gt;&lt;li&gt;&#xD;
extension_dir = c:\php\ext &#xD;
&lt;/li&gt;&lt;li&gt;&#xD;
(optional) uncomment extension = php_mysql.dll &#xD;
&lt;/li&gt;&lt;/ol&gt;&lt;/li&gt;&#xD;
          &lt;li&gt;&#xD;
Add ISAPI to IIS by first opening the IIS MMS.  Right-click on Web Server -&amp;gt;&#xD;
Properties -&amp;gt; Home Directory -&amp;gt; Configuration -&amp;gt; Mappings &#xD;
&lt;ol&gt;&lt;li&gt;&#xD;
Add c:\php\php5isapi.dll, setting .php as the extension, then click OK twice to Home&#xD;
Directory &#xD;
&lt;/li&gt;&lt;li&gt;&#xD;
Add same DLL to the ISAPI modules, naming the module "PHP"&lt;br&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/li&gt;&#xD;
          &lt;li&gt;&#xD;
Change to Documents tab, and add index.php (to allow for full PHP sites) &#xD;
&lt;/li&gt;&#xD;
        &lt;/ol&gt;&#xD;
        &lt;p&gt;&#xD;
Make sure all of your settings are set by stopping and restarting IIS by running NET&#xD;
STOP iisadmin, then NET START w3svc.&lt;br&gt;&lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
To test, create a new IIS virtual directory and create a file index.php, edit it adding&#xD;
the following code:&#xD;
&lt;/p&gt;&#xD;
        &lt;blockquote&gt;&#xD;
          &lt;p&gt;&#xD;
&amp;lt;html&amp;gt; &#xD;
&lt;br&gt;&#xD;
&amp;lt;head&amp;gt;&amp;lt;/head&amp;gt; &#xD;
&lt;br&gt;&#xD;
&amp;lt;body&amp;gt; &#xD;
&lt;br&gt;&#xD;
&amp;lt;?php phpinfo(); ?&amp;gt; &#xD;
&lt;br&gt;&#xD;
&amp;lt;/body&amp;gt; &#xD;
&lt;br&gt;&#xD;
&amp;lt;/html&amp;gt;&#xD;
&lt;/p&gt;&#xD;
        &lt;/blockquote&gt;&#xD;
        &lt;p&gt;&#xD;
Save the file, then open your new IIS app.  If all goes well, you'll be looking&#xD;
at a PHP screen enumerating all of your file settings.&#xD;
&lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
If you want to remove PHP, just reverse the steps starting at #7 and go backwards. &#xD;
It's really that easy.&#xD;
&lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
[Update: 10/7/08]&#xD;
&lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
In a new virtual XP Pro install, I have had 401.3 errors on this install.  &lt;a href="http://support.microsoft.com/kb/271071/"&gt;I&#xD;
found this (rather draconian) "fix" to the 401.3 error I was receiving&lt;/a&gt;. &#xD;
YMMV, but it did seem that the install was having some strange ACL issues.&lt;br&gt;&lt;/p&gt;&#xD;
        &lt;div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:9aec7880-c88f-4509-808b-03f395583921" style="margin: 0px; padding: 0px; display: inline;"&gt;Technorati&#xD;
Tags: &lt;a href="http://technorati.com/tags/PHP" rel="tag"&gt;PHP&lt;/a&gt;,&lt;a href="http://technorati.com/tags/IIS6" rel="tag"&gt;IIS6&lt;/a&gt;,&lt;a href="http://technorati.com/tags/XP" rel="tag"&gt;XP&lt;/a&gt;,&lt;a href="http://technorati.com/tags/install" rel="tag"&gt;install&lt;/a&gt;&lt;/div&gt;&#xD;
        &lt;img width="0" height="0" src="http://www.mattbirmingham.com/aggbug.ashx?id=71b3f918-330a-461f-b7ac-8f4b53627cd8"&gt;&lt;/img&gt;&#xD;
      &lt;/body&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=8KS7v_jVDyw:Qq9qE1tebKg:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=8KS7v_jVDyw:Qq9qE1tebKg:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?i=8KS7v_jVDyw:Qq9qE1tebKg:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=8KS7v_jVDyw:Qq9qE1tebKg:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=8KS7v_jVDyw:Qq9qE1tebKg:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=8KS7v_jVDyw:Qq9qE1tebKg:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?i=8KS7v_jVDyw:Qq9qE1tebKg:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=8KS7v_jVDyw:Qq9qE1tebKg:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?i=8KS7v_jVDyw:Qq9qE1tebKg:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
      <comments>http://www.mattbirmingham.com/CommentView,guid,71b3f918-330a-461f-b7ac-8f4b53627cd8.aspx</comments>
      <category>Development</category>
      <category>Web hosting</category>
    <feedburner:origLink>http://www.mattbirmingham.com/2008/09/05/7EasyStepsToInstallPHP5OnIIS6AndWindowsXP.aspx</feedburner:origLink></item>
    <item>
      <trackback:ping>http://www.mattbirmingham.com/Trackback.aspx?guid=14eb47c3-7c67-444a-a82e-aee6def4be1b</trackback:ping>
      <pingback:server>http://www.mattbirmingham.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.mattbirmingham.com/PermaLink,guid,14eb47c3-7c67-444a-a82e-aee6def4be1b.aspx</pingback:target>
      <dc:creator>MattBirmingham</dc:creator>
      <wfw:comment>http://www.mattbirmingham.com/CommentView,guid,14eb47c3-7c67-444a-a82e-aee6def4be1b.aspx</wfw:comment>
      <wfw:commentRss>http://www.mattbirmingham.com/SyndicationService.asmx/GetEntryCommentsRss?guid=14eb47c3-7c67-444a-a82e-aee6def4be1b</wfw:commentRss>
      
      <title>Sick Mac: Bad Fan Noises = Lost Revenue</title>
      <guid isPermaLink="false">http://www.mattbirmingham.com/PermaLink,guid,14eb47c3-7c67-444a-a82e-aee6def4be1b.aspx</guid>
      <link>http://feedproxy.google.com/~r/Mattbirmingham/~3/ACwOq6pHFWY/SickMacBadFanNoisesLostRevenue.aspx</link>
      <pubDate>Thu, 31 Jul 2008 22:22:18 GMT</pubDate>
      <description>&lt;body xmlns="http://www.w3.org/1999/xhtml"&gt;&#xD;
        &lt;p&gt;&#xD;
          &lt;a href="http://www.mattbirmingham.com/content/binary/WindowsLiveWriter/SickMacBadFanNoisesLostRevenue_D825/genius_bar_2.jpg"&gt;&#xD;
            &lt;img style="border-right: 0px; border-top: 0px; margin: 0px 0px 0px 4px; border-left: 0px; border-bottom: 0px" height="185" alt="genius_bar" src="http://www.mattbirmingham.com/content/binary/WindowsLiveWriter/SickMacBadFanNoisesLostRevenue_D825/genius_bar_thumb.jpg" width="260" align="right" border="0"&gt;&lt;/img&gt;&#xD;
          &lt;/a&gt; I'm&#xD;
4 weeks into my &lt;a href="http://www.mattbirmingham.com/2008/07/25/BackFromVacationHaveMacWillDevelopASPNET.aspx"&gt;Grand&#xD;
Apple Experiment&lt;/a&gt;, and I've had to officially visit the Genius Bar.  Yuck. &#xD;
One of my early concerns with getting into this with Apple is that &lt;strong&gt;they provide&#xD;
no onsite support for business customers&lt;/strong&gt;.  If issues like this keep&#xD;
continuing, Apple won't get any of my company's future business, despite their good&#xD;
hardware.&#xD;
&lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
My company makes money directly by billing hours to my clients.  If I'm not working,&#xD;
I'm not making money, simple as that.  When my MacBook Pro started making &lt;strong&gt;a&#xD;
horrifying grinding noise&lt;/strong&gt;, I was worried.  Not a little worried, as&#xD;
this wasn't a "little" noise, but a &lt;em&gt;lot worried.&lt;/em&gt;  I was able&#xD;
to reproduce the noise on multiple occasions, so off to the Genius Bar I go.  &#xD;
&lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
Bad fans, it turns out, and I believe it's either a bad bearing or some missing piece&#xD;
that is causing the fan to get out of alignment.  This is not a sound I want &lt;strong&gt;my&#xD;
4 week-old computer &lt;/strong&gt;making, and it's very likely that a bad fan will cause&#xD;
early failure of other hardware.&#xD;
&lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
The nearest Genius Bar is a 25 minute drive from anywhere.  That plus the wait&#xD;
plus the diagnosis plus the drive back easily puts me at 2 hours of lost work. &#xD;
The new fans came in within a week, so off to Apple I go again, (25x2 + 2 hour bench&#xD;
time) for another 3 hours of lost work.  &lt;strong&gt;That's 5 hours.  Gone. &#xD;
Not good.&lt;/strong&gt;&lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
The Genius Bar did a fine job and my computer no longer makes unexplainable noises. &#xD;
That said, Apple really needs to provide on-site service to business clients for me&#xD;
to consider more hardware from them in the future.&#xD;
&lt;/p&gt;&#xD;
        &lt;img width="0" height="0" src="http://www.mattbirmingham.com/aggbug.ashx?id=14eb47c3-7c67-444a-a82e-aee6def4be1b"&gt;&lt;/img&gt;&#xD;
      &lt;/body&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=ACwOq6pHFWY:Sfh_FJ_TQ6A:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=ACwOq6pHFWY:Sfh_FJ_TQ6A:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?i=ACwOq6pHFWY:Sfh_FJ_TQ6A:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=ACwOq6pHFWY:Sfh_FJ_TQ6A:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=ACwOq6pHFWY:Sfh_FJ_TQ6A:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=ACwOq6pHFWY:Sfh_FJ_TQ6A:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?i=ACwOq6pHFWY:Sfh_FJ_TQ6A:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=ACwOq6pHFWY:Sfh_FJ_TQ6A:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?i=ACwOq6pHFWY:Sfh_FJ_TQ6A:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
      <comments>http://www.mattbirmingham.com/CommentView,guid,14eb47c3-7c67-444a-a82e-aee6def4be1b.aspx</comments>
      <category>Apple</category>
      <category>Tech Support</category>
    <feedburner:origLink>http://www.mattbirmingham.com/2008/07/31/SickMacBadFanNoisesLostRevenue.aspx</feedburner:origLink></item>
    <item>
      <trackback:ping>http://www.mattbirmingham.com/Trackback.aspx?guid=98e49f9e-52fa-4486-a7bc-139ecf91879f</trackback:ping>
      <pingback:server>http://www.mattbirmingham.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.mattbirmingham.com/PermaLink,guid,98e49f9e-52fa-4486-a7bc-139ecf91879f.aspx</pingback:target>
      <dc:creator>MattBirmingham</dc:creator>
      <wfw:comment>http://www.mattbirmingham.com/CommentView,guid,98e49f9e-52fa-4486-a7bc-139ecf91879f.aspx</wfw:comment>
      <wfw:commentRss>http://www.mattbirmingham.com/SyndicationService.asmx/GetEntryCommentsRss?guid=98e49f9e-52fa-4486-a7bc-139ecf91879f</wfw:commentRss>
      
      <title>Back from vacation; Have Mac Will Develop ASP.NET</title>
      <guid isPermaLink="false">http://www.mattbirmingham.com/PermaLink,guid,98e49f9e-52fa-4486-a7bc-139ecf91879f.aspx</guid>
      <link>http://feedproxy.google.com/~r/Mattbirmingham/~3/fawnT8P57TA/BackFromVacationHaveMacWillDevelopASPNET.aspx</link>
      <pubDate>Fri, 25 Jul 2008 17:13:23 GMT</pubDate>
      <description>&lt;body xmlns="http://www.w3.org/1999/xhtml"&gt;Again, I apologize for my absence of late. &#xD;
A wonderful week-long vacation in Southern California which provided my body much&#xD;
needed outdoor time left me renewed and ready to code.&lt;br&gt;&lt;br&gt;&#xD;
Just before leaving, I began the switch in my company from Dell hardware to Apple&#xD;
hardware.  This was a decision I really labored over.  All of my pro's and&#xD;
con's could be distilled into the following list:&lt;br&gt;&lt;ul&gt;&lt;li&gt;&#xD;
(Con) I really don't know UNIX, and maintaining a hetrogenous set of OSes in my network&#xD;
scares me more than a little&lt;br&gt;&lt;/li&gt;&lt;li&gt;&#xD;
(Pro) The &lt;a href="http://www.pcworld.com/article/136649-3/in_pictures_the_most_notable_notebooks_of_2007.html"&gt;MacBook&#xD;
Pro is the fastest laptop running Vista&lt;/a&gt; on the market&lt;/li&gt;&lt;li&gt;&#xD;
(Con) Entourage is no substitute for Outlook, which is my Killer App&lt;/li&gt;&lt;li&gt;&#xD;
(Pro) I can not only develop Windows-based apps, but Mac and iPhone apps too&lt;/li&gt;&lt;li&gt;&#xD;
(Con) I'm an old dog&lt;/li&gt;&lt;li&gt;&#xD;
(Pro) I like learning new tricks&lt;/li&gt;&lt;/ul&gt;&#xD;
So there you have it, it's tied.  Well, actually not so much; to conserve cash,&#xD;
I like to lease my computers.  Sure, it may cost a bit more in the long run,&#xD;
but in the short term I don't have to lay out $1-2k per seat, but rather ~$70 per&#xD;
month per seat.  So when I started looking into Apple's corporate financing,&#xD;
I was confused.  Although I eventually got it worked out, &lt;b&gt;Apple's online information&#xD;
proved to be out of date and just plain wrong&lt;/b&gt;.  (Specifically?  Don't&#xD;
click on the link to fill out a lease application online.)  Hmmm... not a good&#xD;
way to start out a B2B relationship.&lt;br&gt;&lt;br&gt;&#xD;
My other fear is &lt;b&gt;Apple's pure lack of on-site support&lt;/b&gt;.  I'm coming from&#xD;
years of owning Dell hardware, and say what you will about their offshore call center,&#xD;
every time I've &lt;i&gt;really&lt;/i&gt; needed assistance, Dell's been there and provided me&#xD;
top-notch service.  Apple on the other hand makes me go to them.  Again,&#xD;
not a great model for B2B and only passable for consumers.&lt;br&gt;&lt;br&gt;&#xD;
Why switch?  Simply this: the iPhone.  No, no, I don't have one, but it's&#xD;
arguable that the iPhone is the greatest tech consumer appliance in the marketplace. &#xD;
If Apple gets Exhcange integration right, it really could be The Killer Device for&#xD;
all corporate types, and that's impressive.  So, if I ever dream of even touching&#xD;
a line of code for the iPhone, a Windows-only box simply won't do.  In short, &lt;b&gt;Apple&#xD;
hardware provides me flexibility that a Windows-only box can't&lt;/b&gt;.&lt;br&gt;&lt;br&gt;&#xD;
So this is the start of the Grand Experiment.&lt;br&gt;&lt;p&gt;&lt;/p&gt;&lt;img width="0" height="0" src="http://www.mattbirmingham.com/aggbug.ashx?id=98e49f9e-52fa-4486-a7bc-139ecf91879f"&gt;&lt;/img&gt;&lt;/body&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=fawnT8P57TA:qpUXVF0Sj0Q:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=fawnT8P57TA:qpUXVF0Sj0Q:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?i=fawnT8P57TA:qpUXVF0Sj0Q:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=fawnT8P57TA:qpUXVF0Sj0Q:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=fawnT8P57TA:qpUXVF0Sj0Q:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=fawnT8P57TA:qpUXVF0Sj0Q:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?i=fawnT8P57TA:qpUXVF0Sj0Q:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=fawnT8P57TA:qpUXVF0Sj0Q:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?i=fawnT8P57TA:qpUXVF0Sj0Q:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
      <comments>http://www.mattbirmingham.com/CommentView,guid,98e49f9e-52fa-4486-a7bc-139ecf91879f.aspx</comments>
      <category>Apple</category>
      <category>Vista</category>
    <feedburner:origLink>http://www.mattbirmingham.com/2008/07/25/BackFromVacationHaveMacWillDevelopASPNET.aspx</feedburner:origLink></item>
    <item>
      <trackback:ping>http://www.mattbirmingham.com/Trackback.aspx?guid=7441d3bd-7647-4366-bd2f-df12e28ec715</trackback:ping>
      <pingback:server>http://www.mattbirmingham.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.mattbirmingham.com/PermaLink,guid,7441d3bd-7647-4366-bd2f-df12e28ec715.aspx</pingback:target>
      <dc:creator>MattBirmingham</dc:creator>
      <wfw:comment>http://www.mattbirmingham.com/CommentView,guid,7441d3bd-7647-4366-bd2f-df12e28ec715.aspx</wfw:comment>
      <wfw:commentRss>http://www.mattbirmingham.com/SyndicationService.asmx/GetEntryCommentsRss?guid=7441d3bd-7647-4366-bd2f-df12e28ec715</wfw:commentRss>
      
      <title>Fewer posts = better Google Statistics??</title>
      <guid isPermaLink="false">http://www.mattbirmingham.com/PermaLink,guid,7441d3bd-7647-4366-bd2f-df12e28ec715.aspx</guid>
      <link>http://feedproxy.google.com/~r/Mattbirmingham/~3/XGl5YyfRNto/FewerPostsBetterGoogleStatistics.aspx</link>
      <pubDate>Fri, 27 Jun 2008 20:04:32 GMT</pubDate>
      <description>&lt;body xmlns="http://www.w3.org/1999/xhtml"&gt;&#xD;
        &lt;p&gt;&#xD;
          &lt;img style="border-right: 0px; border-top: 0px; margin: 4px 0px 4px 4px; border-left: 0px; border-bottom: 0px" height="140" alt="GoogleAnalytics" src="http://www.mattbirmingham.com/content/binary/WindowsLiveWriter/FewerpostsbetterGoogleStatistics_B3F4/GoogleAnalytics.jpg" width="234" align="right" border="0"&gt;&lt;/img&gt; I've&#xD;
been on a vacation from making posts recently, mainly because I've been so busy at&#xD;
work and home.  Certainly not because I don't love my readership... all 3 of&#xD;
you.&#xD;
&lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
Anyway, I thought I'd take a peek at my Google Analytics statistics and found that&#xD;
- &lt;strong&gt;despite my absence - my readership is growing healthily, getting bigger&#xD;
by the day&lt;/strong&gt;.  How wierd is that?&#xD;
&lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
Well, there might be an answer to this: &lt;strong&gt;&lt;a href="http://free.grisoft.com/" target="_blank"&gt;Grisoft's&#xD;
AVG v8.0 virus protection&lt;/a&gt;&lt;/strong&gt;.  It turns out that the latest version&#xD;
(optionally) installs a browser plug-in, called "LinkScanner", that will&#xD;
ping all search result websites to determine if the site is malicious.  Although&#xD;
it's an interesting idea, many statistics are gathered from web logs, and these logs&#xD;
are getting artificially inflated due to this extra ping.&#xD;
&lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
I'm not sold that Google or Microsoft analytics are getting artificially inflated,&#xD;
but it certainly could be something to watch, &lt;a href="http://osblues.com/2008/06/03/avg-destroys-web-analytics/" target="_blank"&gt;as&#xD;
web masters get more riled about their unnecessarily inflated bandwidth&lt;/a&gt;.&#xD;
&lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
More reading:&#xD;
&lt;/p&gt;&#xD;
        &lt;ul&gt;&#xD;
          &lt;li&gt;&#xD;
            &lt;a href="http://www.theregister.co.uk/2008/06/26/avg_disguises_fake_traffic_as_ie6/" target="_blank"&gt;The&#xD;
Register: AVG disguises fake traffic as IE6&lt;/a&gt;&#xD;
          &lt;/li&gt;&#xD;
          &lt;li&gt;&#xD;
            &lt;a href="http://free.grisoft.com/ww.faq.num-1241" target="_blank"&gt;Grisoft: LinkScanner&#xD;
FAQ&lt;/a&gt;&#xD;
          &lt;/li&gt;&#xD;
        &lt;/ul&gt;&#xD;
        &lt;div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:094a7949-1751-4389-919e-58b19c2481dd" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px"&gt;Technorati&#xD;
Tags: &lt;a href="http://technorati.com/tags/Grisoft" rel="tag"&gt;Grisoft&lt;/a&gt;,&lt;a href="http://technorati.com/tags/AVG%208.0" rel="tag"&gt;AVG&#xD;
8.0&lt;/a&gt;,&lt;a href="http://technorati.com/tags/LinkScanner" rel="tag"&gt;LinkScanner&lt;/a&gt;,&lt;a href="http://technorati.com/tags/Google%20Analytics" rel="tag"&gt;Google&#xD;
Analytics&lt;/a&gt;&lt;/div&gt;&#xD;
        &lt;img width="0" height="0" src="http://www.mattbirmingham.com/aggbug.ashx?id=7441d3bd-7647-4366-bd2f-df12e28ec715"&gt;&lt;/img&gt;&#xD;
      &lt;/body&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=XGl5YyfRNto:09luWTO0E9A:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=XGl5YyfRNto:09luWTO0E9A:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?i=XGl5YyfRNto:09luWTO0E9A:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=XGl5YyfRNto:09luWTO0E9A:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=XGl5YyfRNto:09luWTO0E9A:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=XGl5YyfRNto:09luWTO0E9A:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?i=XGl5YyfRNto:09luWTO0E9A:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=XGl5YyfRNto:09luWTO0E9A:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?i=XGl5YyfRNto:09luWTO0E9A:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
      <comments>http://www.mattbirmingham.com/CommentView,guid,7441d3bd-7647-4366-bd2f-df12e28ec715.aspx</comments>
      <category>Tech Support</category>
      <category>Web hosting</category>
    <feedburner:origLink>http://www.mattbirmingham.com/2008/06/27/FewerPostsBetterGoogleStatistics.aspx</feedburner:origLink></item>
    <item>
      <trackback:ping>http://www.mattbirmingham.com/Trackback.aspx?guid=f01d6e40-1df0-466e-a1a8-3565577c80e4</trackback:ping>
      <pingback:server>http://www.mattbirmingham.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.mattbirmingham.com/PermaLink,guid,f01d6e40-1df0-466e-a1a8-3565577c80e4.aspx</pingback:target>
      <dc:creator>MattBirmingham</dc:creator>
      <wfw:comment>http://www.mattbirmingham.com/CommentView,guid,f01d6e40-1df0-466e-a1a8-3565577c80e4.aspx</wfw:comment>
      <wfw:commentRss>http://www.mattbirmingham.com/SyndicationService.asmx/GetEntryCommentsRss?guid=f01d6e40-1df0-466e-a1a8-3565577c80e4</wfw:commentRss>
      
      <title>30 Days of .NET Windows Mobile Applications</title>
      <guid isPermaLink="false">http://www.mattbirmingham.com/PermaLink,guid,f01d6e40-1df0-466e-a1a8-3565577c80e4.aspx</guid>
      <link>http://feedproxy.google.com/~r/Mattbirmingham/~3/K0SMVWzp0hM/30DaysOfNETWindowsMobileApplications.aspx</link>
      <pubDate>Thu, 05 Jun 2008 18:38:00 GMT</pubDate>
      <description>&lt;body xmlns="http://www.w3.org/1999/xhtml"&gt;&#xD;
        &lt;p&gt;&#xD;
          &lt;img style="border-right: 0px; border-top: 0px; margin: 4px 0px 4px 4px; border-left: 0px; border-bottom: 0px" height="168" alt="WindowsMobile" src="http://www.mattbirmingham.com/content/binary/WindowsLiveWriter/30Daysof.NETWindowsMobileApplications_A301/WindowsMobile_a0309c6b-d980-45fe-8ed7-827a03bc21b3.jpg" width="180" align="right" border="0"&gt;&lt;/img&gt;&#xD;
          &lt;a href="http://www.cjcraft.com/blog/default.aspx" target="_blank"&gt;Chris&#xD;
Craft&lt;/a&gt; is building &lt;a href="http://www.cjcraft.com/blog/2008/06/01/30DaysOfNETWindowsMobileApplications.aspx" target="_blank"&gt;one&#xD;
.NET-based WM application a day for the month of June&lt;/a&gt;, and is documenting the&#xD;
output (source code and all) on his blog, &lt;a href="http://www.cjcraft.com/blog/default.aspx" target="_blank"&gt;cjcraft.com&lt;/a&gt;. &#xD;
If you've ever been interested in .NET development for WM, this is a perfect jump&#xD;
start.&#xD;
&lt;/p&gt;&#xD;
        &lt;div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:212c6765-13b4-435b-90bd-f7ab5ac9cbbe" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px"&gt;Technorati&#xD;
Tags: &lt;a href="http://technorati.com/tags/Windows%20Mobile%20Applications" rel="tag"&gt;Windows&#xD;
Mobile Applications&lt;/a&gt;,&lt;a href="http://technorati.com/tags/.NET" rel="tag"&gt;.NET&lt;/a&gt;&lt;/div&gt;&#xD;
        &lt;img width="0" height="0" src="http://www.mattbirmingham.com/aggbug.ashx?id=f01d6e40-1df0-466e-a1a8-3565577c80e4"&gt;&lt;/img&gt;&#xD;
      &lt;/body&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=K0SMVWzp0hM:yBjhCLy2wvw:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=K0SMVWzp0hM:yBjhCLy2wvw:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?i=K0SMVWzp0hM:yBjhCLy2wvw:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=K0SMVWzp0hM:yBjhCLy2wvw:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=K0SMVWzp0hM:yBjhCLy2wvw:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=K0SMVWzp0hM:yBjhCLy2wvw:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?i=K0SMVWzp0hM:yBjhCLy2wvw:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=K0SMVWzp0hM:yBjhCLy2wvw:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?i=K0SMVWzp0hM:yBjhCLy2wvw:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
      <comments>http://www.mattbirmingham.com/CommentView,guid,f01d6e40-1df0-466e-a1a8-3565577c80e4.aspx</comments>
      <category>.NET 3.0</category>
      <category>Windows Mobile</category>
    <feedburner:origLink>http://www.mattbirmingham.com/2008/06/05/30DaysOfNETWindowsMobileApplications.aspx</feedburner:origLink></item>
    <item>
      <trackback:ping>http://www.mattbirmingham.com/Trackback.aspx?guid=06bb2a60-7f20-4d6b-bdad-97f3c294477e</trackback:ping>
      <pingback:server>http://www.mattbirmingham.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.mattbirmingham.com/PermaLink,guid,06bb2a60-7f20-4d6b-bdad-97f3c294477e.aspx</pingback:target>
      <dc:creator>MattBirmingham</dc:creator>
      <wfw:comment>http://www.mattbirmingham.com/CommentView,guid,06bb2a60-7f20-4d6b-bdad-97f3c294477e.aspx</wfw:comment>
      <wfw:commentRss>http://www.mattbirmingham.com/SyndicationService.asmx/GetEntryCommentsRss?guid=06bb2a60-7f20-4d6b-bdad-97f3c294477e</wfw:commentRss>
      
      <title>ASP.NET AJAX CascadingDropDown How-to help: &amp;quot;method error 500&amp;quot;</title>
      <guid isPermaLink="false">http://www.mattbirmingham.com/PermaLink,guid,06bb2a60-7f20-4d6b-bdad-97f3c294477e.aspx</guid>
      <link>http://feedproxy.google.com/~r/Mattbirmingham/~3/nytzo0RunS4/ASPNETAJAXCascadingDropDownHowtoHelpQuotmethodError500quot.aspx</link>
      <pubDate>Mon, 28 Apr 2008 22:56:51 GMT</pubDate>
      <description>&lt;body xmlns="http://www.w3.org/1999/xhtml"&gt;&#xD;
        &lt;p&gt;&#xD;
          &lt;a href="http://joeon.net/" target="_blank"&gt;Joe Stagner&lt;/a&gt; and others have produced&#xD;
a long line of &lt;strong&gt;&lt;a href="http://www.asp.net/learn/ajax-videos/" target="_blank"&gt;how-to&#xD;
jumpstart videos&lt;/a&gt;&lt;/strong&gt; on learning &lt;a href="http://www.asp.net/ajax/" target="_blank"&gt;ASP.NET&#xD;
AJAX&lt;/a&gt; and the community supported &lt;a href="http://www.asp.net/ajax/ajaxcontroltoolkit/" target="_blank"&gt;AJAX&#xD;
Toolkit control extenders&lt;/a&gt;.  Video 3 of 72 , &lt;em&gt;&lt;a href="http://www.asp.net/learn/ajax-videos/video-77.aspx" target="_blank"&gt;How&#xD;
Do I: Use the ASP.NET AJAX CascadingDropDown Control Extender&lt;/a&gt;&lt;/em&gt;, has some errors&#xD;
that may cause some newbies to get hung up on learning these tools, which is a shame.&#xD;
&lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
First off, I'm a C# developer, and the videos are written from the VB.NET mind set. &#xD;
If you're like me, you'll need to note that the "shared" VB keyword is functionally&#xD;
the same as the "static" keyword in C#.  You'll also need to take note&#xD;
that the method call &lt;em&gt;QuerySimpleCascadingDropDownDocument&lt;/em&gt; returns an array&#xD;
of &lt;em&gt;CascadingDropDownNameValue&lt;/em&gt; objects, so you, like I, may miss the fact&#xD;
that he's returning an array from the methods &lt;em&gt;GetDropDownContents&lt;/em&gt; and &lt;em&gt;GetDropDownContentsPageMethod.&lt;/em&gt;&lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
The big issue that I and &lt;a href="http://www.google.com/search?q=method+error+500&amp;amp;ie=utf-8&amp;amp;oe=utf-8&amp;amp;aq=t&amp;amp;rls=org.mozilla:en-US:official&amp;amp;client=firefox-a" target="_blank"&gt;apparently&#xD;
others&lt;/a&gt; came across is the fact that upon running the application as demonstrated,&#xD;
the dropdowns will be populated with the error message:&#xD;
&lt;/p&gt;&#xD;
        &lt;blockquote&gt;&#xD;
          &lt;p&gt;&#xD;
            &lt;strong&gt;[method error 500]&lt;/strong&gt;&#xD;
          &lt;/p&gt;&#xD;
        &lt;/blockquote&gt;&#xD;
        &lt;p&gt;&#xD;
The fix is simple: in the HTML, you must define the ServicePath as follows:&#xD;
&lt;/p&gt;&#xD;
        &lt;blockquote&gt;&#xD;
          &lt;p&gt;&#xD;
            &lt;strong&gt;...ServiceMethod="GetDropDownContents" ServicePath="~/CarsService.asmx"...&lt;/strong&gt;&#xD;
          &lt;/p&gt;&#xD;
        &lt;/blockquote&gt;&#xD;
        &lt;p&gt;&#xD;
Note the "~/" at the beginning of the ServicePath.  Without this, the&#xD;
service will get called, you can step into it, yet the results will be an error.  &#xD;
&lt;/p&gt;&#xD;
        &lt;div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:53ed6a04-a301-43e2-9183-c1853ec2a83f" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px"&gt;Technorati&#xD;
Tags: &lt;a href="http://technorati.com/tags/Joe%20Stagner" rel="tag"&gt;Joe Stagner&lt;/a&gt;,&lt;a href="http://technorati.com/tags/ASP.NET%20AJAX" rel="tag"&gt;ASP.NET&#xD;
AJAX&lt;/a&gt;,&lt;a href="http://technorati.com/tags/method%20error%20500" rel="tag"&gt;method&#xD;
error 500&lt;/a&gt;,&lt;a href="http://technorati.com/tags/CascadingDropDown%20Control%20Extender" rel="tag"&gt;CascadingDropDown&#xD;
Control Extender&lt;/a&gt;,&lt;a href="http://technorati.com/tags/How%20Do%20I" rel="tag"&gt;How&#xD;
Do I&lt;/a&gt;,&lt;a href="http://technorati.com/tags/How%20To" rel="tag"&gt;How To&lt;/a&gt;&lt;/div&gt;&#xD;
        &lt;img width="0" height="0" src="http://www.mattbirmingham.com/aggbug.ashx?id=06bb2a60-7f20-4d6b-bdad-97f3c294477e"&gt;&lt;/img&gt;&#xD;
      &lt;/body&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=nytzo0RunS4:k0FnwyactJ8:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=nytzo0RunS4:k0FnwyactJ8:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?i=nytzo0RunS4:k0FnwyactJ8:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=nytzo0RunS4:k0FnwyactJ8:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=nytzo0RunS4:k0FnwyactJ8:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=nytzo0RunS4:k0FnwyactJ8:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?i=nytzo0RunS4:k0FnwyactJ8:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=nytzo0RunS4:k0FnwyactJ8:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?i=nytzo0RunS4:k0FnwyactJ8:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
      <comments>http://www.mattbirmingham.com/CommentView,guid,06bb2a60-7f20-4d6b-bdad-97f3c294477e.aspx</comments>
      <category>ASP.NET AJAX</category>
      <category>Development</category>
    <feedburner:origLink>http://www.mattbirmingham.com/2008/04/28/ASPNETAJAXCascadingDropDownHowtoHelpQuotmethodError500quot.aspx</feedburner:origLink></item>
    <item>
      <trackback:ping>http://www.mattbirmingham.com/Trackback.aspx?guid=d1d1150f-4c74-47b5-b154-5130d073cf22</trackback:ping>
      <pingback:server>http://www.mattbirmingham.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.mattbirmingham.com/PermaLink,guid,d1d1150f-4c74-47b5-b154-5130d073cf22.aspx</pingback:target>
      <dc:creator>MattBirmingham</dc:creator>
      <wfw:comment>http://www.mattbirmingham.com/CommentView,guid,d1d1150f-4c74-47b5-b154-5130d073cf22.aspx</wfw:comment>
      <wfw:commentRss>http://www.mattbirmingham.com/SyndicationService.asmx/GetEntryCommentsRss?guid=d1d1150f-4c74-47b5-b154-5130d073cf22</wfw:commentRss>
      
      <title>Got 5 minutes?  Learn to play an instrument</title>
      <guid isPermaLink="false">http://www.mattbirmingham.com/PermaLink,guid,d1d1150f-4c74-47b5-b154-5130d073cf22.aspx</guid>
      <link>http://feedproxy.google.com/~r/Mattbirmingham/~3/G6YA8LW7Bu0/Got5MinutesLearnToPlayAnInstrument.aspx</link>
      <pubDate>Thu, 24 Apr 2008 22:35:09 GMT</pubDate>
      <description>&lt;body xmlns="http://www.w3.org/1999/xhtml"&gt;&#xD;
        &lt;p&gt;&#xD;
You know, like learning how to play 32nd not fills on a 3pc drum kit.  5min.com&#xD;
has all sorts of great sub-5-minute tips &amp;amp; tricks, not only about learning instruments,&#xD;
but &lt;a href="http://www.5min.com/Video/Chess--Two-knights-opening-1509" target="_blank"&gt;how&#xD;
to play chess&lt;/a&gt;, how to &lt;a href="http://www.5min.com/Video/Texas-Holdem-pot-odds-4489" target="_blank"&gt;understand&#xD;
pot odds&lt;/a&gt;, or how to &lt;a href="http://www.5min.com/Video/How-to-drive-traffic-to-your-site-using-links-2495" target="_blank"&gt;make&#xD;
a really bad presentation&lt;/a&gt;.&#xD;
&lt;/p&gt;&#xD;
        &lt;div class="wlWriterSmartContent" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:716b89e5-0f36-4495-b65c-2035c92e12ae" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px"&gt;&#xD;
          &lt;div&gt;&#xD;
            &lt;div style="text-align:center"&gt;&#xD;
              &lt;object width="510" height="427" id="FiveminPlayer"&gt;&#xD;
                &lt;param name="allowfullscreen" value="true"&gt;&lt;/param&gt;&#xD;
                &lt;param name="allowScriptAccess" value="always"&gt;&lt;/param&gt;&#xD;
                &lt;param name="movie" value="http://www.5min.com/Embeded/15681041/"&gt;&lt;/param&gt;&#xD;
                &lt;embed src="http://www.5min.com/Embeded/15681041/" type="application/x-shockwave-flash" width="510" height="427" allowfullscreen="true" allowscriptaccess="always"&gt;&#xD;
                &lt;/embed&gt;&#xD;
              &lt;/object&gt;&#xD;
              &lt;br&gt;&#xD;
              &lt;a href="http://www.5min.com/" style="font-family: Verdana;font-size: 10px;" target="_blank"&gt;Watch&#xD;
More How to and DIY videos&lt;/a&gt;&#xD;
            &lt;/div&gt;&#xD;
          &lt;/div&gt;&#xD;
        &lt;/div&gt;&#xD;
        &lt;p&gt;&#xD;
Note to self: time to hit the practice pads.&#xD;
&lt;/p&gt;&#xD;
        &lt;div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:817c51f3-696a-4508-8868-a251d9615cde" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px"&gt;Technorati&#xD;
Tags: &lt;a href="http://technorati.com/tags/5min.com" rel="tag"&gt;5min.com&lt;/a&gt;,&lt;a href="http://technorati.com/tags/tutorials" rel="tag"&gt;tutorials&lt;/a&gt;&lt;/div&gt;&#xD;
        &lt;img width="0" height="0" src="http://www.mattbirmingham.com/aggbug.ashx?id=d1d1150f-4c74-47b5-b154-5130d073cf22"&gt;&lt;/img&gt;&#xD;
      &lt;/body&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=G6YA8LW7Bu0:K6SVNSnPSak:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=G6YA8LW7Bu0:K6SVNSnPSak:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?i=G6YA8LW7Bu0:K6SVNSnPSak:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=G6YA8LW7Bu0:K6SVNSnPSak:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=G6YA8LW7Bu0:K6SVNSnPSak:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=G6YA8LW7Bu0:K6SVNSnPSak:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?i=G6YA8LW7Bu0:K6SVNSnPSak:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=G6YA8LW7Bu0:K6SVNSnPSak:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?i=G6YA8LW7Bu0:K6SVNSnPSak:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
      <comments>http://www.mattbirmingham.com/CommentView,guid,d1d1150f-4c74-47b5-b154-5130d073cf22.aspx</comments>
      <category>Ramblings</category>
    <feedburner:origLink>http://www.mattbirmingham.com/2008/04/24/Got5MinutesLearnToPlayAnInstrument.aspx</feedburner:origLink></item>
    <item>
      <trackback:ping>http://www.mattbirmingham.com/Trackback.aspx?guid=bea59a7f-198a-4c3b-8523-e8fc0a8af5c5</trackback:ping>
      <pingback:server>http://www.mattbirmingham.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.mattbirmingham.com/PermaLink,guid,bea59a7f-198a-4c3b-8523-e8fc0a8af5c5.aspx</pingback:target>
      <dc:creator>MattBirmingham</dc:creator>
      <wfw:comment>http://www.mattbirmingham.com/CommentView,guid,bea59a7f-198a-4c3b-8523-e8fc0a8af5c5.aspx</wfw:comment>
      <wfw:commentRss>http://www.mattbirmingham.com/SyndicationService.asmx/GetEntryCommentsRss?guid=bea59a7f-198a-4c3b-8523-e8fc0a8af5c5</wfw:commentRss>
      
      <title>Quiet Technologies aviation headset</title>
      <guid isPermaLink="false">http://www.mattbirmingham.com/PermaLink,guid,bea59a7f-198a-4c3b-8523-e8fc0a8af5c5.aspx</guid>
      <link>http://feedproxy.google.com/~r/Mattbirmingham/~3/On9No-6zwwo/QuietTechnologiesAviationHeadset.aspx</link>
      <pubDate>Wed, 23 Apr 2008 01:11:26 GMT</pubDate>
      <description>&lt;body xmlns="http://www.w3.org/1999/xhtml"&gt;&#xD;
        &lt;p&gt;&#xD;
Since I just did an aviation post, I might as well keep the good times rolling. &#xD;
More than anything, this post is a reminder for me: &lt;a href="http://www.quiettechnologies.com/index_002.htm#" target="_blank"&gt;Quiet&#xD;
Technologies' Halo headset&lt;/a&gt; has gotten &lt;a href="http://www.google.com/search?q=quiet+technologies+halo+review&amp;amp;ie=utf-8&amp;amp;oe=utf-8&amp;amp;aq=t&amp;amp;rls=org.mozilla:en-US:official&amp;amp;client=firefox-a" target="_blank"&gt;rave&#xD;
reviews&lt;/a&gt; from any private pilot trying them on.  They offer passive noise&#xD;
reduction vis-a-vis in-ear monitors, rather than the alternative, which is a giant&#xD;
bulky headset which usually runs 1.5-3x the cost of the Halo.&#xD;
&lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
At the price, it might not be beatable, and the fact that they're likely a ton more&#xD;
comfortable than can-style, they'll likely be the product for me, at some point in&#xD;
the future.  Extra bonus, you can keep your hat on while wearing them. &#xD;
In Phoenix, that alone is worth the price.&#xD;
&lt;/p&gt;&#xD;
        &lt;div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:5d033d4d-55df-49da-8ae9-92421aa58185" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px"&gt;Technorati&#xD;
Tags: &lt;a href="http://technorati.com/tags/aviation%20headset" rel="tag"&gt;aviation headset&lt;/a&gt;,&lt;a href="http://technorati.com/tags/Quiet%20Technologies%20Halo" rel="tag"&gt;Quiet&#xD;
Technologies Halo&lt;/a&gt;,&lt;a href="http://technorati.com/tags/in-ear" rel="tag"&gt;in-ear&lt;/a&gt;&lt;/div&gt;&#xD;
        &lt;img width="0" height="0" src="http://www.mattbirmingham.com/aggbug.ashx?id=bea59a7f-198a-4c3b-8523-e8fc0a8af5c5"&gt;&lt;/img&gt;&#xD;
      &lt;/body&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=On9No-6zwwo:FAn1aGNPJzQ:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=On9No-6zwwo:FAn1aGNPJzQ:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?i=On9No-6zwwo:FAn1aGNPJzQ:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=On9No-6zwwo:FAn1aGNPJzQ:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=On9No-6zwwo:FAn1aGNPJzQ:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=On9No-6zwwo:FAn1aGNPJzQ:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?i=On9No-6zwwo:FAn1aGNPJzQ:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=On9No-6zwwo:FAn1aGNPJzQ:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?i=On9No-6zwwo:FAn1aGNPJzQ:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
      <comments>http://www.mattbirmingham.com/CommentView,guid,bea59a7f-198a-4c3b-8523-e8fc0a8af5c5.aspx</comments>
      <category>Aviation</category>
    <feedburner:origLink>http://www.mattbirmingham.com/2008/04/23/QuietTechnologiesAviationHeadset.aspx</feedburner:origLink></item>
    <item>
      <trackback:ping>http://www.mattbirmingham.com/Trackback.aspx?guid=7622b4aa-fac9-4e41-a92d-36547afda4cc</trackback:ping>
      <pingback:server>http://www.mattbirmingham.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.mattbirmingham.com/PermaLink,guid,7622b4aa-fac9-4e41-a92d-36547afda4cc.aspx</pingback:target>
      <dc:creator>MattBirmingham</dc:creator>
      <wfw:comment>http://www.mattbirmingham.com/CommentView,guid,7622b4aa-fac9-4e41-a92d-36547afda4cc.aspx</wfw:comment>
      <wfw:commentRss>http://www.mattbirmingham.com/SyndicationService.asmx/GetEntryCommentsRss?guid=7622b4aa-fac9-4e41-a92d-36547afda4cc</wfw:commentRss>
      
      <title>Netflix-style tutorial videos</title>
      <guid isPermaLink="false">http://www.mattbirmingham.com/PermaLink,guid,7622b4aa-fac9-4e41-a92d-36547afda4cc.aspx</guid>
      <link>http://feedproxy.google.com/~r/Mattbirmingham/~3/by6K4h2CMIQ/NetflixstyleTutorialVideos.aspx</link>
      <pubDate>Wed, 23 Apr 2008 01:02:15 GMT</pubDate>
      <description>&lt;body xmlns="http://www.w3.org/1999/xhtml"&gt;&#xD;
        &lt;p&gt;&#xD;
          &lt;img style="border-right: 0px; border-top: 0px; margin: 4px 0px 4px 4px; border-left: 0px; border-bottom: 0px" height="117" alt="avnac" src="http://www.mattbirmingham.com/content/binary/WindowsLiveWriter/Netflixstyletutorialvideos_F41B/avnac.jpg" width="260" align="right" border="0"&gt;&lt;/img&gt; I&#xD;
was presented with an interesting site that rents out and mails videos direct to the&#xD;
customer, providing a postage-paid envelope for returning the video.  Sound familiar? &#xD;
It's not Netflix, but &lt;a href="http://www.avnac.com/default.php" target="_blank"&gt;AVNac.com,&#xD;
self-billed as "Aviation's video rental store."&lt;/a&gt;&lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
What I find interesting about this service is that there are many markets that offer&#xD;
videos which Netflix does not cover.  Aviation is certainly a good example, where&#xD;
thousands of films are produced annually for training, but &lt;strong&gt;there are other&#xD;
groups that produce niche videos&lt;/strong&gt;, including dance and music instruction.  &#xD;
&lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
Bravo to AVNac for filling a void, but &lt;strong&gt;I wonder if it wouldn't be better to&#xD;
rent some of these products and view them online?&lt;/strong&gt;  Seems like a better&#xD;
revenue model to me.&#xD;
&lt;/p&gt;&#xD;
        &lt;div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:dbd56ba7-aee4-4629-ab4f-52996f4713d2" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px"&gt;Technorati&#xD;
Tags: &lt;a href="http://technorati.com/tags/AVnac.com" rel="tag"&gt;AVnac.com&lt;/a&gt;,&lt;a href="http://technorati.com/tags/aviation%20video" rel="tag"&gt;aviation&#xD;
video&lt;/a&gt;,&lt;a href="http://technorati.com/tags/training" rel="tag"&gt;training&lt;/a&gt;,&lt;a href="http://technorati.com/tags/dvd" rel="tag"&gt;dvd&lt;/a&gt;,&lt;a href="http://technorati.com/tags/online%20rental" rel="tag"&gt;online&#xD;
rental&lt;/a&gt;&lt;/div&gt;&#xD;
        &lt;img width="0" height="0" src="http://www.mattbirmingham.com/aggbug.ashx?id=7622b4aa-fac9-4e41-a92d-36547afda4cc"&gt;&lt;/img&gt;&#xD;
      &lt;/body&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=by6K4h2CMIQ:jpnBk9t9Meo:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=by6K4h2CMIQ:jpnBk9t9Meo:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?i=by6K4h2CMIQ:jpnBk9t9Meo:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=by6K4h2CMIQ:jpnBk9t9Meo:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=by6K4h2CMIQ:jpnBk9t9Meo:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=by6K4h2CMIQ:jpnBk9t9Meo:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?i=by6K4h2CMIQ:jpnBk9t9Meo:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=by6K4h2CMIQ:jpnBk9t9Meo:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?i=by6K4h2CMIQ:jpnBk9t9Meo:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
      <comments>http://www.mattbirmingham.com/CommentView,guid,7622b4aa-fac9-4e41-a92d-36547afda4cc.aspx</comments>
      <category>Aviation</category>
      <category>Ramblings</category>
    <feedburner:origLink>http://www.mattbirmingham.com/2008/04/23/NetflixstyleTutorialVideos.aspx</feedburner:origLink></item>
    <item>
      <trackback:ping>http://www.mattbirmingham.com/Trackback.aspx?guid=666f117f-5be1-4b25-b25b-4a6d45e06151</trackback:ping>
      <pingback:server>http://www.mattbirmingham.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.mattbirmingham.com/PermaLink,guid,666f117f-5be1-4b25-b25b-4a6d45e06151.aspx</pingback:target>
      <dc:creator>MattBirmingham</dc:creator>
      <wfw:comment>http://www.mattbirmingham.com/CommentView,guid,666f117f-5be1-4b25-b25b-4a6d45e06151.aspx</wfw:comment>
      <wfw:commentRss>http://www.mattbirmingham.com/SyndicationService.asmx/GetEntryCommentsRss?guid=666f117f-5be1-4b25-b25b-4a6d45e06151</wfw:commentRss>
      <slash:comments>1</slash:comments>
      
      <title>David Swensen's formula for retirement portfolios</title>
      <guid isPermaLink="false">http://www.mattbirmingham.com/PermaLink,guid,666f117f-5be1-4b25-b25b-4a6d45e06151.aspx</guid>
      <link>http://feedproxy.google.com/~r/Mattbirmingham/~3/PV__14CGTU8/DavidSwensensFormulaForRetirementPortfolios.aspx</link>
      <pubDate>Tue, 22 Apr 2008 00:58:30 GMT</pubDate>
      <description>&lt;body xmlns="http://www.w3.org/1999/xhtml"&gt;&#xD;
        &lt;p&gt;&#xD;
I came across a great "article" (is that the right term for an audio segment&#xD;
which is also available online?) on &lt;a href="http://en.wikipedia.org/wiki/David_Swensen" target="_blank"&gt;David&#xD;
Swensen&lt;/a&gt;.  Swensen manages Yale's endowment, and &lt;a href="http://www.npr.org/templates/story/story.php?storyId= 89324244#89326007" target="_blank"&gt;has&#xD;
managed success even during these trying bear markets&lt;/a&gt;, realizing an average annual&#xD;
return of 17.8 percent over the last 10 years.&#xD;
&lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
          &lt;em&gt;&#xD;
            &lt;a href="http://www.amazon.com/review/product/0743228383/ref=dp_top_cm_cr_acr_txt?%5Fencoding=UTF8&amp;amp;showViewpoints=1" target="_blank"&gt;David&#xD;
Swensen's book, Unconventional Success&lt;/a&gt;&#xD;
          &lt;/em&gt;, has received complaints for being&#xD;
a very dry read.  That's unfortunate, because the message seems to be a good&#xD;
one: &#xD;
&lt;/p&gt;&#xD;
        &lt;ul&gt;&#xD;
          &lt;li&gt;&#xD;
invest broadly in index funds (avoiding other mutual funds due to their built-in cost&#xD;
structure)&lt;/li&gt;&#xD;
          &lt;li&gt;&#xD;
rebalance your portfolio to match your goals as often as you can while still avoiding&#xD;
fees&lt;/li&gt;&#xD;
          &lt;li&gt;&#xD;
do it yourself, avoiding costs associated with account managers&lt;/li&gt;&#xD;
        &lt;/ul&gt;&#xD;
        &lt;p&gt;&#xD;
Swenson suggests the following portfolio:&#xD;
&lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
30% Domestic Equity (&lt;a href="http://finance.google.com/finance?client=ob&amp;amp;q=VTSMX" target="_blank"&gt;VTSMX&lt;/a&gt;, &lt;a href="http://finance.google.com/finance?q=tinrx&amp;amp;hl=en" target="_blank"&gt;TINRX&lt;/a&gt;) &#xD;
&lt;br&gt;&#xD;
20% Real Estate (&lt;a href="http://finance.google.com/finance?q=vgsix&amp;amp;hl=en&amp;amp;meta=hl%3Den" target="_blank"&gt;VGSIX&lt;/a&gt;, &lt;a href="http://finance.google.com/finance?q=tcrex&amp;amp;hl=en&amp;amp;meta=hl%3Den" target="_blank"&gt;TCREX&lt;/a&gt;) &#xD;
&lt;br&gt;&#xD;
15% US T-Bonds (&lt;a href="http://finance.google.com/finance?q=vfisx&amp;amp;hl=en&amp;amp;meta=hl%3Den" target="_blank"&gt;VFISX&lt;/a&gt;, &lt;a href="http://finance.google.com/finance?q=tctrx&amp;amp;hl=en&amp;amp;meta=hl%3Den" target="_blank"&gt;TCTRX&lt;/a&gt;, &lt;a href="http://finance.google.com/finance?q=vfitx&amp;amp;hl=en&amp;amp;meta=hl%3Den" target="_blank"&gt;VFITX&lt;/a&gt;, &lt;a href="http://finance.google.com/finance?q=tiorx&amp;amp;hl=en&amp;amp;meta=hl%3Den" target="_blank"&gt;TIORX&lt;/a&gt;, &lt;a href="http://finance.google.com/finance?q=vustx%5D&amp;amp;hl=en&amp;amp;meta=hl%3Den" target="_blank"&gt;VUSTX&lt;/a&gt;) &#xD;
&lt;br&gt;&#xD;
15% US Treasury Inflation Protected Securities "TIPS" (&lt;a href="http://finance.google.com/finance?q=vipsx&amp;amp;hl=en&amp;amp;meta=hl%3Den" target="_blank"&gt;VIPSX&lt;/a&gt;, &lt;a href="http://finance.google.com/finance?q=tcilx&amp;amp;hl=en&amp;amp;meta=hl%3Den" target="_blank"&gt;TCILX&lt;/a&gt;) &#xD;
&lt;br&gt;&#xD;
15% Foreign Developed Equity (&lt;a href="http://finance.google.com/finance?q=vgtsx&amp;amp;hl=en&amp;amp;meta=hl%3Den" target="_blank"&gt;VGTSX&lt;/a&gt;, &lt;a href="http://finance.google.com/finance?q=tierx&amp;amp;hl=en&amp;amp;meta=hl%3Den" target="_blank"&gt;TIERX&lt;/a&gt;) &#xD;
&lt;br&gt;&#xD;
5% Emerging Market Equity (&lt;a href="http://finance.google.com/finance?q=veiex&amp;amp;hl=en&amp;amp;meta=hl%3Den" target="_blank"&gt;VEIEX&lt;/a&gt;)&#xD;
&lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
The only challenge (that I'm reviewing) is the above portfolio requires an initial&#xD;
investment of ~$60k, since the minimum buy in for VEIEX is $3,000.  Doing the&#xD;
math the rest of the way up yields a &lt;em&gt;starting&lt;/em&gt; investment of $60k.&#xD;
&lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
The folks at The Motley Fool agree in general terms.  They say, simply, &lt;a href="http://www.fool.com/School/MutualFunds/Basics/Intro.htm" target="_blank"&gt;"Buy&#xD;
an index fund."&lt;/a&gt;&lt;/p&gt;&#xD;
        &lt;div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:9b01f53f-5f4d-4d91-933e-f5209b3d69de" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px"&gt;Technorati&#xD;
Tags: &lt;a href="http://technorati.com/tags/David%20Swensen" rel="tag"&gt;David Swensen&lt;/a&gt;,&lt;a href="http://technorati.com/tags/investing" rel="tag"&gt;investing&lt;/a&gt;,&lt;a href="http://technorati.com/tags/index%20funds" rel="tag"&gt;index&#xD;
funds&lt;/a&gt;&lt;/div&gt;&#xD;
        &lt;img width="0" height="0" src="http://www.mattbirmingham.com/aggbug.ashx?id=666f117f-5be1-4b25-b25b-4a6d45e06151"&gt;&lt;/img&gt;&#xD;
      &lt;/body&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=PV__14CGTU8:W4fKTugagR0:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=PV__14CGTU8:W4fKTugagR0:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?i=PV__14CGTU8:W4fKTugagR0:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=PV__14CGTU8:W4fKTugagR0:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=PV__14CGTU8:W4fKTugagR0:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=PV__14CGTU8:W4fKTugagR0:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?i=PV__14CGTU8:W4fKTugagR0:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=PV__14CGTU8:W4fKTugagR0:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?i=PV__14CGTU8:W4fKTugagR0:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
      <comments>http://www.mattbirmingham.com/CommentView,guid,666f117f-5be1-4b25-b25b-4a6d45e06151.aspx</comments>
      <category>Money</category>
      <category>Ramblings</category>
    <feedburner:origLink>http://www.mattbirmingham.com/2008/04/22/DavidSwensensFormulaForRetirementPortfolios.aspx</feedburner:origLink></item>
    <item>
      <trackback:ping>http://www.mattbirmingham.com/Trackback.aspx?guid=1616ab0f-b0b4-4072-a276-fcfa02f9b470</trackback:ping>
      <pingback:server>http://www.mattbirmingham.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.mattbirmingham.com/PermaLink,guid,1616ab0f-b0b4-4072-a276-fcfa02f9b470.aspx</pingback:target>
      <dc:creator>MattBirmingham</dc:creator>
      <wfw:comment>http://www.mattbirmingham.com/CommentView,guid,1616ab0f-b0b4-4072-a276-fcfa02f9b470.aspx</wfw:comment>
      <wfw:commentRss>http://www.mattbirmingham.com/SyndicationService.asmx/GetEntryCommentsRss?guid=1616ab0f-b0b4-4072-a276-fcfa02f9b470</wfw:commentRss>
      
      <title>FontStruct: I heart you</title>
      <guid isPermaLink="false">http://www.mattbirmingham.com/PermaLink,guid,1616ab0f-b0b4-4072-a276-fcfa02f9b470.aspx</guid>
      <link>http://feedproxy.google.com/~r/Mattbirmingham/~3/ijMJ_bFiHlM/FontStructIHeartYou.aspx</link>
      <pubDate>Fri, 18 Apr 2008 23:19:20 GMT</pubDate>
      <description>&lt;body xmlns="http://www.w3.org/1999/xhtml"&gt;&#xD;
        &lt;p&gt;&#xD;
          &lt;img style="border-right: 0px; border-top: 0px; margin: 4px 0px 4px 4px; border-left: 0px; border-bottom: 0px" height="89" alt="FontStruct" src="http://www.mattbirmingham.com/content/binary/WindowsLiveWriter/FontStructIheartyou_E06F/FontStruct.jpg" width="259" align="right" border="0"&gt;&lt;/img&gt; GeekDad&#xD;
produced another gem today, &lt;a href="http://www.FontStruct.com" target="_blank"&gt;FontStruct,&#xD;
a free webservice that allows you to create and distribute fonts&lt;/a&gt;.  &lt;strong&gt;For&#xD;
free&lt;/strong&gt;.&#xD;
&lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
I'm going to need to practice building fonts, but it's great fun to work with fonts&#xD;
if you're into that sort of thing.  For starters, you can always take an existing&#xD;
font, "clone" and modify it to get the feel for how they work.  The&#xD;
tool appears to give you a product akin to what you paid for it, so don't expect miracles.&#xD;
&lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
If you'd rather just buy a good font, FontStruct is associated with &lt;a href="http://www.fontshop.com" target="_blank"&gt;FontShop,&#xD;
an online font retailer&lt;/a&gt;.  &lt;a href="http://www.fontshop.com/fontfeed/" target="_blank"&gt;FontShop&#xD;
also has an interesting RSS feed&lt;/a&gt;, again, if you're into that sort of thing. &#xD;
It seems to be fairly low volume, so it might be worth dropping into your reader of&#xD;
choice.&#xD;
&lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
OT, &lt;a href="http://blog.wired.com/geekdad" target="_blank"&gt;Geekdad&lt;/a&gt; is quickly&#xD;
becoming one of my favorite RSS feeds to read.  As a geek and a dad, they speak&#xD;
to my soul.  &#xD;
&lt;/p&gt;&#xD;
        &lt;div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:06dedec0-3818-4dd7-b8e4-a8212e57c4c9" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px"&gt;Technorati&#xD;
Tags: &lt;a href="http://technorati.com/tags/fonts" rel="tag"&gt;fonts&lt;/a&gt;,&lt;a href="http://technorati.com/tags/font%20generator" rel="tag"&gt;font&#xD;
generator&lt;/a&gt;,&lt;a href="http://technorati.com/tags/font%20software" rel="tag"&gt;font&#xD;
software&lt;/a&gt;,&lt;a href="http://technorati.com/tags/FontStruct" rel="tag"&gt;FontStruct&lt;/a&gt;,&lt;a href="http://technorati.com/tags/FontShop" rel="tag"&gt;FontShop&lt;/a&gt;&lt;/div&gt;&#xD;
        &lt;img width="0" height="0" src="http://www.mattbirmingham.com/aggbug.ashx?id=1616ab0f-b0b4-4072-a276-fcfa02f9b470"&gt;&lt;/img&gt;&#xD;
      &lt;/body&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=ijMJ_bFiHlM:g2kJST8QCzs:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=ijMJ_bFiHlM:g2kJST8QCzs:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?i=ijMJ_bFiHlM:g2kJST8QCzs:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=ijMJ_bFiHlM:g2kJST8QCzs:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=ijMJ_bFiHlM:g2kJST8QCzs:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=ijMJ_bFiHlM:g2kJST8QCzs:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?i=ijMJ_bFiHlM:g2kJST8QCzs:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Mattbirmingham?a=ijMJ_bFiHlM:g2kJST8QCzs:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Mattbirmingham?i=ijMJ_bFiHlM:g2kJST8QCzs:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
      <comments>http://www.mattbirmingham.com/CommentView,guid,1616ab0f-b0b4-4072-a276-fcfa02f9b470.aspx</comments>
      <category>Design</category>
    <feedburner:origLink>http://www.mattbirmingham.com/2008/04/18/FontStructIHeartYou.aspx</feedburner:origLink></item>
  </channel>
</rss>
