<?xml version="1.0" encoding="utf-8"?>
<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/" version="2.0">
  <channel>
    <title>kevin Mocha - Projects | Mobile Navigator Website</title>
    <link>http://blog.ilovedoudou.com/</link>
    <description>Bookmarks collected from web.</description>
    <language>en-us</language>
    <copyright>Kevin Mocha</copyright>
    <lastBuildDate>Fri, 04 Apr 2008 20:28:55 GMT</lastBuildDate>
    <generator>newtelligence dasBlog 1.9.6264.0</generator>
    <managingEditor>lulustock@gmail.com</managingEditor>
    <webMaster>lulustock@gmail.com</webMaster>
    <item>
      <trackback:ping>http://blog.ilovedoudou.com/Trackback.aspx?guid=3e68c8a3-012e-44ec-a02a-0d526aaa2d18</trackback:ping>
      <pingback:server>http://blog.ilovedoudou.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.ilovedoudou.com/PermaLink,guid,3e68c8a3-012e-44ec-a02a-0d526aaa2d18.aspx</pingback:target>
      <dc:creator>Kevin Mocha</dc:creator>
      <wfw:comment>http://blog.ilovedoudou.com/CommentView,guid,3e68c8a3-012e-44ec-a02a-0d526aaa2d18.aspx</wfw:comment>
      <wfw:commentRss>http://blog.ilovedoudou.com/SyndicationService.asmx/GetEntryCommentsRss?guid=3e68c8a3-012e-44ec-a02a-0d526aaa2d18</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <h3>Windows 2003 Server SP1 Firewall Modification for Passive or PASV FTP Connections 
</h3>
        <i>(Portions of this document are parphrased from or directly copied from <a href="http://support.microsoft.com/default.aspx?scid=kb%3Ben%3B555022">Microsoft
KB article 555022</a> by Bernard Cheah, MVP.) </i>
        <p>
Passive Mode FTP connections are normally required by clients connecting through a
NAT firewall or router. The client connects on port 21 and issues a PASV command,
the server responds with a port in the 1024-65535 range for the data connection. After
a data connection command is issued by the client, the server connects to the client
using the port immediately above the client-side port of the control connection. The
Windows 2003 SP1 Firewall will prevent PASV FTP from working properly unless exceptions
for the ports are created. A metabase property key named PassivePortRange can be configured
to specify the port range the server will respond with. This can be used to limit
the security risk for the FTP server. The property key only exists in IIS 6.0. Support
for IIS 5.0 on Windows 2000 can be added, but the system administrator will need to
install Service Pack 4 and add the PassivePortRange key in the system registry. Two
ports must be opened for each concurrent FTP connection. 
</p>
        <p>
          <b>On Windows 2003 Server with IIS6</b>
        </p>
        <ul>
          <li>
To Enable Direct Metabase Edit 
<ol><li>
Open the IIS Microsoft Management Console (MMC). 
</li><li>
Right-click on the Local Computer node. 
</li><li>
Select Properties. 
</li><li>
Make sure the Enable Direct Metabase Edit checkbox is checked. 
</li></ol></li>
          <li>
Configure PassivePortRange via ADSUTIL script 
<ol><li>
Click Start, click Run, type cmd, and then click OK. 
</li><li>
Type cd Inetpub\AdminScripts and then press ENTER. 
</li><li>
Type the following command where the range is specified in "..". cscript.exe adsutil.vbs
set /MSFTPSVC/PassivePortRange "5001-5201" 
</li><li>
Restart the FTP Publishing Service. 
</li></ol>
You'll see the following output, when you configure via ADSUTIL script:<br />
Microsoft (R) Windows Script Host Version 5.6<br />
Copyright (C) Microsoft Corporation 1996-2001. All rights reserved.<br />
PassivePortRange : (STRING) "5001-5201" 
</li>
        </ul>
        <p>
 
</p>
        <p>
It's crazy to add 201 exceptions rules. Just disable the windows firewall temporarily.
</p>
        <ul>
          <li>
            <strike>Add each port to the Windows Firewall </strike>
            <ol>
              <li>
                <strike>Click Start, click Control Panel, open Windows Firewall, and select the Exceptions
tab. </strike>
              </li>
              <li>
                <strike>Click the Add Port button. </strike>
              </li>
              <li>
                <strike>Enter a Name for the Exception and the first number in the port range. </strike>
              </li>
              <li>
                <strike>Click TCP if not already selected and click OK. </strike>
              </li>
              <li>
                <strike>Repeat for each port in the range - for large ranges see the end of the document. </strike>
              </li>
              <li>
                <strike>Enable the Windows Firewall on the General Tab. </strike>
              </li>
            </ol>
          </li>
        </ul>
        <img width="0" height="0" src="http://blog.ilovedoudou.com/aggbug.ashx?id=3e68c8a3-012e-44ec-a02a-0d526aaa2d18" />
      </body>
      <title>Enable Passive Mode in IIS6 FTP Service.</title>
      <guid isPermaLink="false">http://blog.ilovedoudou.com/PermaLink,guid,3e68c8a3-012e-44ec-a02a-0d526aaa2d18.aspx</guid>
      <link>http://blog.ilovedoudou.com/PermaLink,guid,3e68c8a3-012e-44ec-a02a-0d526aaa2d18.aspx</link>
      <pubDate>Fri, 04 Apr 2008 20:28:55 GMT</pubDate>
      <description>&lt;h3&gt;Windows 2003 Server SP1 Firewall Modification for Passive or PASV FTP Connections 
&lt;/h3&gt;
&lt;i&gt;(Portions of this document are parphrased from or directly copied from &lt;a href="http://support.microsoft.com/default.aspx?scid=kb%3Ben%3B555022"&gt;Microsoft
KB article 555022&lt;/a&gt; by Bernard Cheah, MVP.) &lt;/i&gt; 
&lt;p&gt;
Passive Mode FTP connections are normally required by clients connecting through a
NAT firewall or router. The client connects on port 21 and issues a PASV command,
the server responds with a port in the 1024-65535 range for the data connection. After
a data connection command is issued by the client, the server connects to the client
using the port immediately above the client-side port of the control connection. The
Windows 2003 SP1 Firewall will prevent PASV FTP from working properly unless exceptions
for the ports are created. A metabase property key named PassivePortRange can be configured
to specify the port range the server will respond with. This can be used to limit
the security risk for the FTP server. The property key only exists in IIS 6.0. Support
for IIS 5.0 on Windows 2000 can be added, but the system administrator will need to
install Service Pack 4 and add the PassivePortRange key in the system registry. Two
ports must be opened for each concurrent FTP connection. 
&lt;p&gt;
&lt;b&gt;On Windows 2003 Server with IIS6&lt;/b&gt; 
&lt;ul&gt;
&lt;li&gt;
To Enable Direct Metabase Edit 
&lt;ol&gt;
&lt;li&gt;
Open the IIS Microsoft Management Console (MMC). 
&lt;li&gt;
Right-click on the Local Computer node. 
&lt;li&gt;
Select Properties. 
&lt;li&gt;
Make sure the Enable Direct Metabase Edit checkbox is checked. 
&lt;/li&gt;
&lt;/ol&gt;
&lt;li&gt;
Configure PassivePortRange via ADSUTIL script 
&lt;ol&gt;
&lt;li&gt;
Click Start, click Run, type cmd, and then click OK. 
&lt;li&gt;
Type cd Inetpub\AdminScripts and then press ENTER. 
&lt;li&gt;
Type the following command where the range is specified in "..". cscript.exe adsutil.vbs
set /MSFTPSVC/PassivePortRange "5001-5201" 
&lt;li&gt;
Restart the FTP Publishing Service. 
&lt;/li&gt;
&lt;/ol&gt;
You'll see the following output, when you configure via ADSUTIL script:&lt;br&gt;
Microsoft (R) Windows Script Host Version 5.6&lt;br&gt;
Copyright (C) Microsoft Corporation 1996-2001. All rights reserved.&lt;br&gt;
PassivePortRange : (STRING) "5001-5201" 
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
It's crazy to add 201 exceptions rules. Just disable the windows firewall temporarily.
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;strike&gt;Add each port to the Windows Firewall &lt;/strike&gt; 
&lt;ol&gt;
&lt;li&gt;
&lt;strike&gt;Click Start, click Control Panel, open Windows Firewall, and select the Exceptions
tab. &lt;/strike&gt; 
&lt;li&gt;
&lt;strike&gt;Click the Add Port button. &lt;/strike&gt; 
&lt;li&gt;
&lt;strike&gt;Enter a Name for the Exception and the first number in the port range. &lt;/strike&gt; 
&lt;li&gt;
&lt;strike&gt;Click TCP if not already selected and click OK. &lt;/strike&gt; 
&lt;li&gt;
&lt;strike&gt;Repeat for each port in the range - for large ranges see the end of the document. &lt;/strike&gt; 
&lt;li&gt;
&lt;strike&gt;Enable the Windows Firewall on the General Tab. &lt;/strike&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;img width="0" height="0" src="http://blog.ilovedoudou.com/aggbug.ashx?id=3e68c8a3-012e-44ec-a02a-0d526aaa2d18" /&gt;</description>
      <comments>http://blog.ilovedoudou.com/CommentView,guid,3e68c8a3-012e-44ec-a02a-0d526aaa2d18.aspx</comments>
      <category>Projects / Mobile Navigator Website</category>
    </item>
    <item>
      <trackback:ping>http://blog.ilovedoudou.com/Trackback.aspx?guid=e0d99d7c-e3ef-429f-b4e0-fbb99de06cef</trackback:ping>
      <pingback:server>http://blog.ilovedoudou.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.ilovedoudou.com/PermaLink,guid,e0d99d7c-e3ef-429f-b4e0-fbb99de06cef.aspx</pingback:target>
      <dc:creator>Kevin Mocha</dc:creator>
      <wfw:comment>http://blog.ilovedoudou.com/CommentView,guid,e0d99d7c-e3ef-429f-b4e0-fbb99de06cef.aspx</wfw:comment>
      <wfw:commentRss>http://blog.ilovedoudou.com/SyndicationService.asmx/GetEntryCommentsRss?guid=e0d99d7c-e3ef-429f-b4e0-fbb99de06cef</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
IIS 6 doesn't handle extensionless URLs. You'll need to change your routes to use
the .mvc extension. 
</p>
        <p>
For example, 
</p>
        <p>
  routes.Add(new Route("Links.mvc/{categoryName}",... 
</p>
        <p>
Make sure that IIS 6 maps .mvc to the aspnet_isapi.dll.
</p>
        <img width="0" height="0" src="http://blog.ilovedoudou.com/aggbug.ashx?id=e0d99d7c-e3ef-429f-b4e0-fbb99de06cef" />
      </body>
      <title>Deploy MVC application on Server with IIS6</title>
      <guid isPermaLink="false">http://blog.ilovedoudou.com/PermaLink,guid,e0d99d7c-e3ef-429f-b4e0-fbb99de06cef.aspx</guid>
      <link>http://blog.ilovedoudou.com/PermaLink,guid,e0d99d7c-e3ef-429f-b4e0-fbb99de06cef.aspx</link>
      <pubDate>Fri, 04 Apr 2008 20:26:40 GMT</pubDate>
      <description>&lt;p&gt;
IIS 6 doesn't handle extensionless URLs. You'll need to change your routes to use
the .mvc extension. 
&lt;p&gt;
For example, 
&lt;p&gt;
&amp;nbsp; routes.Add(new Route("Links.mvc/{categoryName}",... 
&lt;p&gt;
Make sure that IIS 6 maps .mvc to the aspnet_isapi.dll.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.ilovedoudou.com/aggbug.ashx?id=e0d99d7c-e3ef-429f-b4e0-fbb99de06cef" /&gt;</description>
      <comments>http://blog.ilovedoudou.com/CommentView,guid,e0d99d7c-e3ef-429f-b4e0-fbb99de06cef.aspx</comments>
      <category>DotNet / ASP;Projects / Mobile Navigator Website;Web</category>
    </item>
    <item>
      <trackback:ping>http://blog.ilovedoudou.com/Trackback.aspx?guid=efa10fd9-ea8c-4e75-88e2-88bb0ae69dcc</trackback:ping>
      <pingback:server>http://blog.ilovedoudou.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.ilovedoudou.com/PermaLink,guid,efa10fd9-ea8c-4e75-88e2-88bb0ae69dcc.aspx</pingback:target>
      <dc:creator>Kevin Mocha</dc:creator>
      <wfw:comment>http://blog.ilovedoudou.com/CommentView,guid,efa10fd9-ea8c-4e75-88e2-88bb0ae69dcc.aspx</wfw:comment>
      <wfw:commentRss>http://blog.ilovedoudou.com/SyndicationService.asmx/GetEntryCommentsRss?guid=efa10fd9-ea8c-4e75-88e2-88bb0ae69dcc</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <a title="http://developer.apple.com/iphone/devcenter/designingcontent.html" href="http://developer.apple.com/iphone/devcenter/designingcontent.html">http://developer.apple.com/iphone/devcenter/designingcontent.html</a>
        </p>
        <p>
          <a title="http://www.practicalecommerce.com/blogs/developers-diary/archives/104" href="http://www.practicalecommerce.com/blogs/developers-diary/archives/104">http://www.practicalecommerce.com/blogs/developers-diary/archives/104</a>
        </p>
        <p>
 
</p>
        <p>
I'm getting ready to setup an HTC Excalibur and I wanted to post my list of favorite
sites to visit with my Mobile Browser and a list of the apps I really need to install
to make my Windows Mobile Smartphone complete. 
</p>
        <ul>
          <li>
            <strong>Amazon Mobile </strong>- <a href="http://m.amazon.com">http://m.amazon.com</a> -
A basic, but very usable site, focused on search, that lets folks who've setup their
Amazon account ahead of time purchase directly from the phone. Nice if you have Amazon
Prime Free Shipping. 
</li>
          <li>
            <strong>BBC PDA </strong>- <a href="http://www.bbc.co.uk/mobile/pda">http://www.bbc.co.uk/mobile/pda</a> or <a href="http://www.bbc.co.uk/mobile">http://www.bbc.co.uk/mobile</a> -
BBC has a mobile site and a PDA site, but the PDA site looks best on Smartphones or
Blackberries. The best of the BBC on my phone. The mobile site would look good on
an old black-and-white WAP Nokia. 
</li>
          <li>
            <strong>CNN Mobile </strong>- <a href="http://m.cnn.com">http://m.cnn.com</a> - Same
here, mobile CNN, some pics, I use this site a lot. 
</li>
          <li>
            <strong>Engadget Mobile </strong>- <a href="http://m.engadget.com">http://m.engadget.com</a> -
My favorite tech and gadget blog, now with mobiley goodness. I wish I could see comments
though. 
</li>
          <li>
            <strong>Hanselman.com</strong> - <a href="http://www.hanselman.com">http://www.hanselman.com</a> -
Ha! See what I did right there? Back in the day, we taught <a href="http://www.hanselman.com/blog/MakingDasBlogWorkOnMobileDevices.aspx">dasBlog
about mobile devices</a> and if you hit hanselman.com from a Blackberry or Windows
Mobile browser (and a number of other tiny browsers), we'll detect it and give you
a mobile experience. Yay! 
</li>
          <li>
            <strong>Facebook</strong> - <a href="http://m.facebook.com">http://m.facebook.com</a> -
In terms of pure functionality, I'd say that Facebook's mobile site is, hands-down,
the most functional. It feels like you can most everything you'd ever want to using
only Tiny HTML. This site and this company continue to impress, probably because it's
running entirely on Red Bull and 20-year-olds. 
</li>
          <li>
            <strong>Flight Stats</strong> - <a href="http://mobile.flightstats.com">http://mobile.flightstats.com</a> -
This fine site has saved my <a href="http://www.urbandictionary.com/define.php?term=tuckus">tuckus</a> a
number of times while traveling. Their Airport Chatter section is interesting also. 
</li>
          <li>
            <strong>Google</strong> - <a href="http://www.google.com/xhtml">http://www.google.com/xhtml</a> -
The Tiny XHTML version of Google includes location specific searches and personalization
with News, Weather, Movies, etc. 
<ul><li><strong>+1-800-GOOG-411 (+1-800-4664-411)</strong> - If you're able to call this number,
either domestically or internationally, it's worth a try because it's amazing. Much
better than the "1-800-Tell-Me stuff back in the day, but still of the same vein.
I use this a LOT. 
</li></ul></li>
          <li>
            <strong>Microsoft Live </strong>- <a href="http://wls.live.com">http://wls.live.com</a> or <a href="http://m.live.com">http://m.live.com</a> -
If you hit wls you'll get your browser detected and possible prompted to download
a nice applet for your phone. If you hit m.live.com you'll get tiny Windows Live Search. 
</li>
          <li>
            <strong>Gmail</strong> - <a href="http://m.gmail.com">http://m.gmail.com</a> - If
you hit gmail with your phone you should get detected and sent over to the mobile
version. If not, you can hit m.gmail.com or <a href="https://mail.google.com/mail/x/">https://mail.google.com/mail/<strong>x/</strong></a> where
the <em>x</em> is magic. If you're running <a href="http://www.google.com/calendar/hosted/YOURDOMAIN.com/m">Google
Apps for Your Domain (GAFYD) you can hack that URL also</a>. 
</li>
          <li>
            <strong>Joystiq </strong>- <a href="http://m.joystiq.com">http://m.joystiq.com</a> -
Tiny Gaming Site. Interestingly, while they use (I think) the same back end as Engadget,
sometimes the fonts are all wonky. 
</li>
          <li>
            <strong>Mobile MSN </strong>- <a href="http://m.msn.com">http://m.msn.com</a> - A
decent mobile portal and good jumping off point. The mobile stocks are particularly
good. 
</li>
          <li>
            <strong>MSNBC </strong>- <a href="http://www.msnbc.msn.com">http://www.msnbc.msn.com</a> -
It's astonishingly LAME that you can't get to this site from <a href="http://m.msnbc.com">http://m.msnbc.com</a> but
perhaps they'll read this and make that DNS change, because this is a really good
tiny news site. 
</li>
          <li>
            <strong>Alarm.com</strong> - <a href="https://www.alarm.com/pda">https://www.alarm.com/pda</a> -
I use Alarm.com to manage my security systems at the house and our rentals from my
phone. If you've got a service available over the web, you really ought to have a
minimal mobile website so kudos to them for having one. 
</li>
          <li>
            <strong>Twitter </strong>- <a href="http://m.twitter.com">http://m.twitter.com</a> -
Does exactly what it says it does...mobile twitter, although I'd like to be able to
see Direct Replies in the interface. 
</li>
          <li>
            <strong>Wapedia (Mobile Wikipedia) </strong>- <a href="http://wapedia.mobi/en">http://wapedia.mobi/en</a> -
Very useful for <strike>winning arguments with the wife</strike> self-edification,
it's the mobile Wikipedia. 
</li>
        </ul>
        <p>
I think it's funny that folks thought that the ".mobi" top level domain extension
was a good idea and that the internet just changed "www.foo.com" to "m.foo.com" and
saved the registration fee. Plus, I don't have to tap out the "obi" which saves me,
like minutes. 
</p>
        <p>
What are <em>your </em>must-have mobile websites, Dear Reader? <img width="0" height="0" src="http://blog.ilovedoudou.com/aggbug.ashx?id=efa10fd9-ea8c-4e75-88e2-88bb0ae69dcc" /></p>
      </body>
      <title>iPhone web site developing</title>
      <guid isPermaLink="false">http://blog.ilovedoudou.com/PermaLink,guid,efa10fd9-ea8c-4e75-88e2-88bb0ae69dcc.aspx</guid>
      <link>http://blog.ilovedoudou.com/PermaLink,guid,efa10fd9-ea8c-4e75-88e2-88bb0ae69dcc.aspx</link>
      <pubDate>Fri, 25 Jan 2008 22:01:26 GMT</pubDate>
      <description>&lt;p&gt;
&lt;a title="http://developer.apple.com/iphone/devcenter/designingcontent.html" href="http://developer.apple.com/iphone/devcenter/designingcontent.html"&gt;http://developer.apple.com/iphone/devcenter/designingcontent.html&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a title="http://www.practicalecommerce.com/blogs/developers-diary/archives/104" href="http://www.practicalecommerce.com/blogs/developers-diary/archives/104"&gt;http://www.practicalecommerce.com/blogs/developers-diary/archives/104&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
I'm getting ready to setup an HTC Excalibur and I wanted to post my list of favorite
sites to visit with my Mobile Browser and a list of the apps I really need to install
to make my Windows Mobile Smartphone complete. 
&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Amazon Mobile &lt;/strong&gt;- &lt;a href="http://m.amazon.com"&gt;http://m.amazon.com&lt;/a&gt; -
A basic, but very usable site, focused on search, that lets folks who've setup their
Amazon account ahead of time purchase directly from the phone. Nice if you have Amazon
Prime Free Shipping. 
&lt;li&gt;
&lt;strong&gt;BBC PDA &lt;/strong&gt;- &lt;a href="http://www.bbc.co.uk/mobile/pda"&gt;http://www.bbc.co.uk/mobile/pda&lt;/a&gt; or &lt;a href="http://www.bbc.co.uk/mobile"&gt;http://www.bbc.co.uk/mobile&lt;/a&gt; -
BBC has a mobile site and a PDA site, but the PDA site looks best on Smartphones or
Blackberries. The best of the BBC on my phone. The mobile site would look good on
an old black-and-white WAP Nokia. 
&lt;li&gt;
&lt;strong&gt;CNN Mobile &lt;/strong&gt;- &lt;a href="http://m.cnn.com"&gt;http://m.cnn.com&lt;/a&gt; - Same
here, mobile CNN, some pics, I use this site a lot. 
&lt;li&gt;
&lt;strong&gt;Engadget Mobile &lt;/strong&gt;- &lt;a href="http://m.engadget.com"&gt;http://m.engadget.com&lt;/a&gt; -
My favorite tech and gadget blog, now with mobiley goodness. I wish I could see comments
though. 
&lt;li&gt;
&lt;strong&gt;Hanselman.com&lt;/strong&gt; - &lt;a href="http://www.hanselman.com"&gt;http://www.hanselman.com&lt;/a&gt; -
Ha! See what I did right there? Back in the day, we taught &lt;a href="http://www.hanselman.com/blog/MakingDasBlogWorkOnMobileDevices.aspx"&gt;dasBlog
about mobile devices&lt;/a&gt; and if you hit hanselman.com from a Blackberry or Windows
Mobile browser (and a number of other tiny browsers), we'll detect it and give you
a mobile experience. Yay! 
&lt;li&gt;
&lt;strong&gt;Facebook&lt;/strong&gt; - &lt;a href="http://m.facebook.com"&gt;http://m.facebook.com&lt;/a&gt; -
In terms of pure functionality, I'd say that Facebook's mobile site is, hands-down,
the most functional. It feels like you can most everything you'd ever want to using
only Tiny HTML. This site and this company continue to impress, probably because it's
running entirely on Red Bull and 20-year-olds. 
&lt;li&gt;
&lt;strong&gt;Flight Stats&lt;/strong&gt; - &lt;a href="http://mobile.flightstats.com"&gt;http://mobile.flightstats.com&lt;/a&gt; -
This fine site has saved my &lt;a href="http://www.urbandictionary.com/define.php?term=tuckus"&gt;tuckus&lt;/a&gt; a
number of times while traveling. Their Airport Chatter section is interesting also. 
&lt;li&gt;
&lt;strong&gt;Google&lt;/strong&gt; - &lt;a href="http://www.google.com/xhtml"&gt;http://www.google.com/xhtml&lt;/a&gt; -
The Tiny XHTML version of Google includes location specific searches and personalization
with News, Weather, Movies, etc. 
&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;+1-800-GOOG-411 (+1-800-4664-411)&lt;/strong&gt; - If you're able to call this number,
either domestically or internationally, it's worth a try because it's amazing. Much
better than the "1-800-Tell-Me stuff back in the day, but still of the same vein.
I use this a LOT. 
&lt;/li&gt;
&lt;/ul&gt;
&lt;li&gt;
&lt;strong&gt;Microsoft Live &lt;/strong&gt;- &lt;a href="http://wls.live.com"&gt;http://wls.live.com&lt;/a&gt; or &lt;a href="http://m.live.com"&gt;http://m.live.com&lt;/a&gt; -
If you hit wls you'll get your browser detected and possible prompted to download
a nice applet for your phone. If you hit m.live.com you'll get tiny Windows Live Search. 
&lt;li&gt;
&lt;strong&gt;Gmail&lt;/strong&gt; - &lt;a href="http://m.gmail.com"&gt;http://m.gmail.com&lt;/a&gt; - If
you hit gmail with your phone you should get detected and sent over to the mobile
version. If not, you can hit m.gmail.com or &lt;a href="https://mail.google.com/mail/x/"&gt;https://mail.google.com/mail/&lt;strong&gt;x/&lt;/strong&gt;&lt;/a&gt; where
the &lt;em&gt;x&lt;/em&gt; is magic. If you're running &lt;a href="http://www.google.com/calendar/hosted/YOURDOMAIN.com/m"&gt;Google
Apps for Your Domain (GAFYD) you can hack that URL also&lt;/a&gt;. 
&lt;li&gt;
&lt;strong&gt;Joystiq &lt;/strong&gt;- &lt;a href="http://m.joystiq.com"&gt;http://m.joystiq.com&lt;/a&gt; -
Tiny Gaming Site. Interestingly, while they use (I think) the same back end as Engadget,
sometimes the fonts are all wonky. 
&lt;li&gt;
&lt;strong&gt;Mobile MSN &lt;/strong&gt;- &lt;a href="http://m.msn.com"&gt;http://m.msn.com&lt;/a&gt; - A
decent mobile portal and good jumping off point. The mobile stocks are particularly
good. 
&lt;li&gt;
&lt;strong&gt;MSNBC &lt;/strong&gt;- &lt;a href="http://www.msnbc.msn.com"&gt;http://www.msnbc.msn.com&lt;/a&gt; -
It's astonishingly LAME that you can't get to this site from &lt;a href="http://m.msnbc.com"&gt;http://m.msnbc.com&lt;/a&gt; but
perhaps they'll read this and make that DNS change, because this is a really good
tiny news site. 
&lt;li&gt;
&lt;strong&gt;Alarm.com&lt;/strong&gt; - &lt;a href="https://www.alarm.com/pda"&gt;https://www.alarm.com/pda&lt;/a&gt; -
I use Alarm.com to manage my security systems at the house and our rentals from my
phone. If you've got a service available over the web, you really ought to have a
minimal mobile website so kudos to them for having one. 
&lt;li&gt;
&lt;strong&gt;Twitter &lt;/strong&gt;- &lt;a href="http://m.twitter.com"&gt;http://m.twitter.com&lt;/a&gt; -
Does exactly what it says it does...mobile twitter, although I'd like to be able to
see Direct Replies in the interface. 
&lt;li&gt;
&lt;strong&gt;Wapedia (Mobile Wikipedia) &lt;/strong&gt;- &lt;a href="http://wapedia.mobi/en"&gt;http://wapedia.mobi/en&lt;/a&gt; -
Very useful for &lt;strike&gt;winning arguments with the wife&lt;/strike&gt; self-edification,
it's the mobile Wikipedia. 
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
I think it's funny that folks thought that the ".mobi" top level domain extension
was a good idea and that the internet just changed "www.foo.com" to "m.foo.com" and
saved the registration fee. Plus, I don't have to tap out the "obi" which saves me,
like minutes. 
&lt;p&gt;
What are &lt;em&gt;your &lt;/em&gt;must-have mobile websites, Dear Reader? &lt;img width="0" height="0" src="http://blog.ilovedoudou.com/aggbug.ashx?id=efa10fd9-ea8c-4e75-88e2-88bb0ae69dcc" /&gt;</description>
      <comments>http://blog.ilovedoudou.com/CommentView,guid,efa10fd9-ea8c-4e75-88e2-88bb0ae69dcc.aspx</comments>
      <category>Cool Stuff;Life;Mobile;Projects / Mobile Navigator Website;Web</category>
    </item>
    <item>
      <trackback:ping>http://blog.ilovedoudou.com/Trackback.aspx?guid=276d262e-5033-4a6f-bad6-5786f1c1d9d0</trackback:ping>
      <pingback:server>http://blog.ilovedoudou.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.ilovedoudou.com/PermaLink,guid,276d262e-5033-4a6f-bad6-5786f1c1d9d0.aspx</pingback:target>
      <dc:creator>Kevin Mocha</dc:creator>
      <wfw:comment>http://blog.ilovedoudou.com/CommentView,guid,276d262e-5033-4a6f-bad6-5786f1c1d9d0.aspx</wfw:comment>
      <wfw:commentRss>http://blog.ilovedoudou.com/SyndicationService.asmx/GetEntryCommentsRss?guid=276d262e-5033-4a6f-bad6-5786f1c1d9d0</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
do postback in modalpopup:
</p>
        <p>
          <a title="http://forums.asp.net/p/1048185/1770706.aspx#1770706" href="http://forums.asp.net/p/1048185/1770706.aspx#1770706">http://forums.asp.net/p/1048185/1770706.aspx#1770706</a>
        </p>
        <p>
          <a href="http://www.aspdotnetcodes.com/ModalPopup_Postback.aspx">http://www.aspdotnetcodes.com/ModalPopup_Postback.aspx</a>
        </p>
        <p>
 
</p>
        <p>
Force page on postback when clicking on Select link in GridView
</p>
        <p>
          <a title="http://forums.asp.net/t/1145438.aspx" href="http://forums.asp.net/t/1145438.aspx">http://forums.asp.net/t/1145438.aspx</a>
        </p>
        <p>
 
</p>
        <p>
Hooking up popupModalextender and GridView linkbutton
</p>
        <p>
          <a title="http://forums.asp.net/p/1153491/1887835.aspx" href="http://forums.asp.net/p/1153491/1887835.aspx">http://forums.asp.net/p/1153491/1887835.aspx</a>
        </p>
        <p>
 
</p>
        <p>
Asp.net popup control:
</p>
        <p>
          <a title="http://www.codeproject.com/aspnet/asppopup.asp" href="http://www.codeproject.com/aspnet/asppopup.asp">http://www.codeproject.com/aspnet/asppopup.asp</a>
        </p>
        <img width="0" height="0" src="http://blog.ilovedoudou.com/aggbug.ashx?id=276d262e-5033-4a6f-bad6-5786f1c1d9d0" />
      </body>
      <title>behavior of the modalpopup control.</title>
      <guid isPermaLink="false">http://blog.ilovedoudou.com/PermaLink,guid,276d262e-5033-4a6f-bad6-5786f1c1d9d0.aspx</guid>
      <link>http://blog.ilovedoudou.com/PermaLink,guid,276d262e-5033-4a6f-bad6-5786f1c1d9d0.aspx</link>
      <pubDate>Mon, 15 Oct 2007 20:04:07 GMT</pubDate>
      <description>&lt;p&gt;
do postback in modalpopup:
&lt;/p&gt;
&lt;p&gt;
&lt;a title="http://forums.asp.net/p/1048185/1770706.aspx#1770706" href="http://forums.asp.net/p/1048185/1770706.aspx#1770706"&gt;http://forums.asp.net/p/1048185/1770706.aspx#1770706&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.aspdotnetcodes.com/ModalPopup_Postback.aspx"&gt;http://www.aspdotnetcodes.com/ModalPopup_Postback.aspx&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
Force page on postback when clicking on Select link in GridView
&lt;/p&gt;
&lt;p&gt;
&lt;a title="http://forums.asp.net/t/1145438.aspx" href="http://forums.asp.net/t/1145438.aspx"&gt;http://forums.asp.net/t/1145438.aspx&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
Hooking up popupModalextender and GridView linkbutton
&lt;/p&gt;
&lt;p&gt;
&lt;a title="http://forums.asp.net/p/1153491/1887835.aspx" href="http://forums.asp.net/p/1153491/1887835.aspx"&gt;http://forums.asp.net/p/1153491/1887835.aspx&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
Asp.net popup control:
&lt;/p&gt;
&lt;p&gt;
&lt;a title="http://www.codeproject.com/aspnet/asppopup.asp" href="http://www.codeproject.com/aspnet/asppopup.asp"&gt;http://www.codeproject.com/aspnet/asppopup.asp&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.ilovedoudou.com/aggbug.ashx?id=276d262e-5033-4a6f-bad6-5786f1c1d9d0" /&gt;</description>
      <comments>http://blog.ilovedoudou.com/CommentView,guid,276d262e-5033-4a6f-bad6-5786f1c1d9d0.aspx</comments>
      <category>DotNet / AJAX;Projects / Mobile Navigator Website</category>
    </item>
    <item>
      <trackback:ping>http://blog.ilovedoudou.com/Trackback.aspx?guid=31fdfa22-f090-4874-8c3d-ce6da7f58359</trackback:ping>
      <pingback:server>http://blog.ilovedoudou.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.ilovedoudou.com/PermaLink,guid,31fdfa22-f090-4874-8c3d-ce6da7f58359.aspx</pingback:target>
      <dc:creator>Kevin Mocha</dc:creator>
      <wfw:comment>http://blog.ilovedoudou.com/CommentView,guid,31fdfa22-f090-4874-8c3d-ce6da7f58359.aspx</wfw:comment>
      <wfw:commentRss>http://blog.ilovedoudou.com/SyndicationService.asmx/GetEntryCommentsRss?guid=31fdfa22-f090-4874-8c3d-ce6da7f58359</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Create a mobile navigator web site by which mobile users can find the top web sites
in the mobile worlds. May add a simple news and weather information there. 
</p>
        <p>
Some links:
</p>
        <p>
Best Sites for mobile devices: 
</p>
        <p>
          <a title="http://www.pocketpcmag.com/_top/bestsites.asp" href="http://www.pocketpcmag.com/_top/bestsites.asp">http://www.pocketpcmag.com/_top/bestsites.asp</a>
        </p>
        <p>
 
</p>
        <p>
Candidate domain names: 
</p>
        <p>
          <a href="http://www.mobiletop99.com">http://www.mobiletop99.com</a>
        </p>
        <p>
 
</p>
        <p>
Build mobile web site: 
</p>
        <p>
          <a title="http://www.hostway.com/web-resources/build-your-own/mobile/should-i-create-mobile-site.html" href="http://www.hostway.com/web-resources/build-your-own/mobile/should-i-create-mobile-site.html">http://www.hostway.com/web-resources/build-your-own/mobile/should-i-create-mobile-site.html</a>
        </p>
        <p>
.mobi
</p>
        <img width="0" height="0" src="http://blog.ilovedoudou.com/aggbug.ashx?id=31fdfa22-f090-4874-8c3d-ce6da7f58359" />
      </body>
      <title>Idea.</title>
      <guid isPermaLink="false">http://blog.ilovedoudou.com/PermaLink,guid,31fdfa22-f090-4874-8c3d-ce6da7f58359.aspx</guid>
      <link>http://blog.ilovedoudou.com/PermaLink,guid,31fdfa22-f090-4874-8c3d-ce6da7f58359.aspx</link>
      <pubDate>Sat, 08 Sep 2007 21:36:26 GMT</pubDate>
      <description>&lt;p&gt;
Create a mobile navigator web site by which mobile users can find the top web sites
in the mobile worlds. May add a simple news and weather information there. 
&lt;/p&gt;
&lt;p&gt;
Some links:
&lt;/p&gt;
&lt;p&gt;
Best Sites for mobile devices: 
&lt;/p&gt;
&lt;p&gt;
&lt;a title="http://www.pocketpcmag.com/_top/bestsites.asp" href="http://www.pocketpcmag.com/_top/bestsites.asp"&gt;http://www.pocketpcmag.com/_top/bestsites.asp&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
Candidate domain names: 
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.mobiletop99.com"&gt;http://www.mobiletop99.com&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
Build mobile web site: 
&lt;/p&gt;
&lt;p&gt;
&lt;a title="http://www.hostway.com/web-resources/build-your-own/mobile/should-i-create-mobile-site.html" href="http://www.hostway.com/web-resources/build-your-own/mobile/should-i-create-mobile-site.html"&gt;http://www.hostway.com/web-resources/build-your-own/mobile/should-i-create-mobile-site.html&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
.mobi
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.ilovedoudou.com/aggbug.ashx?id=31fdfa22-f090-4874-8c3d-ce6da7f58359" /&gt;</description>
      <comments>http://blog.ilovedoudou.com/CommentView,guid,31fdfa22-f090-4874-8c3d-ce6da7f58359.aspx</comments>
      <category>Projects / Mobile Navigator Website</category>
    </item>
  </channel>
</rss>