<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Chinh Do &#187; Windows Mobile / Pocket PC</title>
	<atom:link href="http://www.chinhdo.com/category/technology/windows-mobile/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.chinhdo.com</link>
	<description>Chinh's not quite random thoughts on software development, .NET, gadgets, and other things.</description>
	<lastBuildDate>Sat, 06 Aug 2011 21:04:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Bag of Links #1</title>
		<link>http://www.chinhdo.com/20090123/bags-of-links-1/</link>
		<comments>http://www.chinhdo.com/20090123/bags-of-links-1/#comments</comments>
		<pubDate>Sat, 24 Jan 2009 03:52:21 +0000</pubDate>
		<dc:creator>Chinh Do</dc:creator>
				<category><![CDATA[Dotnet/.NET - C#]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software/tools]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Windows Mobile / Pocket PC]]></category>

		<guid isPermaLink="false">http://www.chinhdo.com/?p=269</guid>
		<description><![CDATA[A while ago I had been posting my Finds of the Weeks series and this is the continuation of that. Instead of weekly though, this series will be more of a &#8220;whenever possible&#8221; kind of thing. General Programming Some code optimizations can actually slow down your app. Beautiful Code: False Optimizations by sernaferna. Quad core [...]]]></description>
			<content:encoded><![CDATA[<p>A while ago I had been posting my <a href="http://www.chinhdo.com/?s=Finds+of+the+Week" target="_blank">Finds of the Weeks</a> series and this is the continuation of that. Instead of weekly though, this series will be more of a &#8220;whenever possible&#8221; kind of thing.</p>
<h3>General Programming</h3>
<ul>
<li>Some code optimizations can actually slow down your app. <a href="http://sernaferna.blogspot.com/2008/07/beautiful-code-false-optimizations.html">Beautiful Code: False Optimizations</a> by sernaferna.</li>
<li><a href="http://www.sharepointblogs.com/craiglussier/archive/2008/07/04/quad-core-8gb-ram-server-2008-with-hyper-v-a-great-dev-environment.aspx">Quad core + 8GB RAM + Server 2008 with Hyper-V = A Great Dev Environment</a>. By Craig Lussier.</li>
<li>I started using <a href="http://jquery.com/">JQuery</a> a few months ago and it&#8217;s now my favorite Javascript library. Combine with <a href="http://weblogs.asp.net/scottgu/archive/2008/11/21/jquery-intellisense-in-vs-2008.aspx">Visual Studio 2008&#8242;s Javascript intellisense</a>, and you have scripting nirvana.</li>
<li><a href="http://dev.iceburg.net/jquery/jqModal/">jqModal</a> is a modal dialog plug-in for JQuery. Worked great for a project I was working on two months ago.</li>
<li><a href="http://my.safaribooksonline.com/0596100655/eclipsepg-CHP-1" target="_blank">Safari Books Online</a> is a great online programming books service. For a monthly fee, you get to read several books using your browser. The browser interface is not great, but the price is much lower than actually buying the book.<a href="http://www.chinhdo.com/wp-content/uploads/2009/01/image3.png"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" src="http://www.chinhdo.com/wp-content/uploads/2009/01/image-thumb3.png" border="0" alt="Safari Online Books" width="470" height="367" /></a></li>
<li>Randomly ordering an array is simple. That&#8217;s what I thought until I ran across <a href="http://aspnet.4guysfromrolla.com/articles/070208-1.aspx" target="_blank">Techniques for Randomly Reordering an Array</a> (by Scott Michell).</li>
</ul>
<h3>.NET/C# Stuff</h3>
<ul>
<li>Eugene Osovetsky explained a few peculiarities when consuming WCF services from Visual Studio 2003: <a href="http://blogs.msdn.com/eugeneos/archive/2007/02/05/solving-the-disappearing-data-issue-when-using-add-web-reference-or-wsdl-exe-with-wcf-services.aspx" target="_blank">Solving the &#8220;disappearing data&#8221; issue when using Add Web Reference or Wsdl.exe with WCF services</a>.</li>
<li>If you have a DataReader and don&#8217;t intend to read all records from it, call <a href="http://msdn.microsoft.com/en-us/library/system.data.idbcommand.cancel.aspx" target="_blank">IDbCommand.Cancel</a> before you call IDataReader.Close so that the rest of the unread records are skipped.</li>
<li>Scott Hanselman: <a href="http://www.hanselman.com/blog/CommentView.aspx?guid=a6959f2b-bd77-41d7-8600-0f5037cf0f06#commentstart" target="_blank">Assembly Fiefdoms: What&#8217;s the Right Number of Assemblies/Libraries?</a></li>
<li><a href="http://weblogs.asp.net/savanness/archive/2003/07/22/10417.aspx" target="_blank">VS.NET Tip of the Day: Reusing C# Source Code Across Multiple Assemblies</a>. By ShawnVN.</li>
<li><a href="http://insario.com/blog/jfk/archive/2004/11/30/164.aspx" target="_blank">Setting the log file location at runtime with a DOM configured log4net</a>. By Keyley on Kode.</li>
<li>WCF &#8211; <a href="http://msdn.microsoft.com/en-us/library/aa702726.aspx" target="_blank">Recommended Settings for Tracing and Message Logging</a>. MSDN.</li>
<li>WCF &#8211; <a href="http://blogs.msdn.com/drnick/archive/2007/07/18/enabling-performance-counters.aspx" target="_blank">Enabling Performance Counters</a>. By Nicholas Allen.</li>
<li>One of these days I&#8217;ll get back into Windows Mobile programming. <a href="http://msdn.microsoft.com/en-us/magazine/cc163341.aspx" target="_blank">Adjust Your Ring Volume For Ambient Noise</a>, Chris Mitchell.</li>
<li>Did you know ReSharper supports wildcards in its Go To Type dialog box? Joe White&#8217;s <a href="http://blog.excastle.com/2007/01/31/blog-event-the-31-days-of-resharper/" target="_blank">31 Days of ReSharper</a> series is a must read for ReSharper fanatics like me.</li>
<li>Is image processing in C++ a thing of the past? <a href="http://www.devx.com/dotnet/Article/18163/1954?pf=true" target="_blank">Discover Enhanced Image Manipulation with GDI+</a> (by Tade Oyebode).</li>
<li><a href="http://msdn.microsoft.com/en-us/library/system.runtime.serialization.datacontractserializer.aspx" target="_blank">DataContractSerializer</a> can be used to deserialize WCF messages.</li>
<li><a href="http://www.codeproject.com/KB/dotnet/mysteriesofconfiguration.aspx" target="_blank">Unraveling the Mysteries of .NET 2.0 Configuration</a>, by Jon Rista.</li>
</ul>
<h3>Database</h3>
<ul>
<li>Stefan Delmarco talked about the <a href="http://www.fotia.co.uk/fotia/DY.19.NewSequentialId.aspx" target="_blank">NEWSEQUENTIALID function</a> in SQL Server 2005.</li>
<li>Mutexes are fun: <a href="http://www.sqlteam.com/article/application-locks-or-mutexes-in-sql-server-2005" target="_blank">Application Locks (or Mutexes) in SQL Server 2005</a>. Mladen Prajdic.</li>
</ul>
<h3>Windows</h3>
<ul>
<li>Experiencing strange issues with your Windows (like dialog boxes that don&#8217;t show up)? You may be having a desktop heap issue. Try these articles:
<ul>
<li><a href="http://weblogs.asp.net/kdente/archive/2004/06/04/148145.aspx" target="_blank">Windows XP flakiness &#8211; solved</a>. By Kevin Dente.</li>
<li><a href="http://support.microsoft.com/kb/126962" target="_blank">&#8220;Out of Memory&#8221; error message appears when you have a large number of programs running</a>. Microsoft Support.</li>
</ul>
</li>
<li>If IE crashes when you try to open SharePoint documents, try this fix: regsvr32 &#8220;C:\Program Files\Microsoft Office\OFFICE11\OWSSUPP.DLL&#8221;.</li>
</ul>
<h3>Software, Tools, etc.</h3>
<ul>
<li>If you have a Linksys WRT54* router, I highly recommend loading <a href="http://www.polarcloud.com/tomato" target="_blank">Tomato firmware</a>. I have been using it for about 6 months now and it&#8217;s so much better than the built-in Linksys firmware. Tomato&#8217;s QOS works great to make sure my Vonage phone line remains usable at all times.<a href="http://www.chinhdo.com/wp-content/uploads/2009/01/image4.png"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" src="http://www.chinhdo.com/wp-content/uploads/2009/01/image-thumb4.png" border="0" alt="Tomato firmware" width="454" height="314" /></a></li>
</ul>
<h3>PowerShell</h3>
<ul>
<li>Ben Pierce posted a series of very useful PowerShell command-line demos: <a href="http://blogs.technet.com/benp/archive/2008/06/12/tech-ed-2008-demo-1-administering-windows.aspx" target="_blank">Demo1</a> (Administering Windows), <a href="http://blogs.technet.com/benp/archive/2008/06/12/tech-ed-2008-demo-2-administering-servers-in-bulk.aspx" target="_blank">Demo 2</a> (Administering Servers in bulk), <a href="http://blogs.technet.com/benp/archive/2008/06/12/tech-ed-2008-demo-3-how-do-i-know-which-classes-to-use.aspx" target="_blank">Demo 3</a> (How do I Know Which Class to Use), <a href="http://blogs.technet.com/benp/archive/2008/06/12/tech-ed-2008-demo-4-administering-hyper-v.aspx" target="_blank">Demo 4</a> (Administering Hyper-V).</li>
</ul>
<h3>Something Different</h3>
<ul>
<li><a href="http://vimeo.com/1470875">World War</a> is a very nicely done digital animation by Vincent Chai. My son can watch it for hours.</li>
<li>Your browsing history can be used by any web site out there to guess your gender. <a href="http://www.mikeonads.com/2008/07/13/using-your-browser-url-history-estimate-gender/">Using your browser URL history to estimate gender</a>, by Mike on Ads.</li>
<li><a href="http://vimeo.com/moogaloop.swf?clip_id=1778399&amp;server=vimeo.com&amp;sho">Humans can fly</a> (video).</li>
<li>A fascinating into the human mind: <a href="http://www.newyorker.com/reporting/2007/04/16/070416fa_fact_colapinto?currentPage=all" target="_blank">The Interpreter</a> (Has a remote Amazonian tribe upended our understanding of language?). By John Colapinto.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.chinhdo.com/20090123/bags-of-links-1/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Windows Mobile 6.1 for Samsung SCH-i760</title>
		<link>http://www.chinhdo.com/20080728/windows-mobile-61-for-samsung-sch-i760/</link>
		<comments>http://www.chinhdo.com/20080728/windows-mobile-61-for-samsung-sch-i760/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 01:17:43 +0000</pubDate>
		<dc:creator>Chinh Do</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Windows Mobile / Pocket PC]]></category>

		<guid isPermaLink="false">http://www.chinhdo.com/20080728/windows-mobile-61-for-samsung-sch-i760/</guid>
		<description><![CDATA[Good news for i760 owners: Windows Mobile 6.1 update is now available. This update fixes one major annoyance: support for SDHC cards with more than 2GB. I use my i760 as a music player and it&#8217;s kind of tough to have to fit my music selection into 2GB (or 4GB if you use the hack [...]]]></description>
			<content:encoded><![CDATA[<p>Good news for i760 owners: Windows Mobile 6.1 update is now available.</p>
<p>This update fixes one major annoyance: support for SDHC cards with more than 2GB. I use my i760 as a music player and it&#8217;s kind of tough to have to fit my music selection into 2GB (or 4GB if you use the hack but didn&#8217;t want to use a hack).</p>
<p>Some features of note in WM 6.1:</p>
<ul>
<li>Support for SDHC cards&nbsp; beyond 2GB. 8GB cards seem to be working fine for people.
<li>Threaded SMS reader.
<li>View YouTube videos (m.youtube.com).</li>
</ul>
<p>Download the update from Verizon <a href="http://support.vzw.com/phones/index.html?p=3364">here</a>.</p>
<p>More information <a href="http://pdaphonehome.com/forums/samsung-sch-i760/113736-wm-6-1-i760-officially-released-faqs-general-info.html">here</a>.</p>
<p><a href="http://www.chinhdo.com/wp-content/uploads/2008/07/image.png"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="319" alt="Verizon SCH-i760 Upgrade Tool" src="http://www.chinhdo.com/wp-content/uploads/2008/07/image-thumb.png" width="450" border="0"></a> </p>
<p>A word of warning:&nbsp; the upgrade utility provided by Verizon/Samsung looks like a major piece of rushware. Many people reported no problems with the upgrade, but others <a href="http://pdaphonehome.com/forums/samsung-sch-i760/107305-windows-mobile-6-1-sch-i760-rumor-thread-20.html">reported</a> of bricked phones, partially upgraded phones, and having to try the upgrade process multiple times to get it to work.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chinhdo.com/20080728/windows-mobile-61-for-samsung-sch-i760/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Finds of the Week &#8211; April 6, 2008</title>
		<link>http://www.chinhdo.com/20080407/finds-of-the-week-20080406/</link>
		<comments>http://www.chinhdo.com/20080407/finds-of-the-week-20080406/#comments</comments>
		<pubDate>Tue, 08 Apr 2008 03:23:52 +0000</pubDate>
		<dc:creator>Chinh Do</dc:creator>
				<category><![CDATA[Dotnet/.NET - C#]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Windows Mobile / Pocket PC]]></category>

		<guid isPermaLink="false">http://www.chinhdo.com/20080407/finds-of-the-week-20080406/</guid>
		<description><![CDATA[Programming Omar AL Zabir discussed tips on how to reduce website download time by heavily compressing PNG and JPEG. Jeff Atwood wrote a detailed how-to on how to set up Subversion on Windows. Poorly Formatted Code Costs You Money. By Jakub Korab. .NET/C# For when I finally find time to learn LINQ: Architecting LINQ To [...]]]></description>
			<content:encoded><![CDATA[<h3>Programming</h3>
<ul>
<li>Omar AL Zabir discussed tips on how to <a href="http://weblogs.asp.net/omarzabir/archive/2008/04/07/reduce-website-download-time-by-heavily-compressing-png-and-jpeg.aspx">reduce website download time by heavily compressing PNG and JPEG</a>.</li>
<li>Jeff Atwood wrote a detailed how-to on <a href="http://www.codinghorror.com/blog/archives/001093.html">how to set up Subversion on Windows</a>.</li>
<li><a href="http://www.jakubkorab.net/2008/01/poorly-formatted-code-costs-you-money.html">Poorly Formatted Code Costs You Money</a>. By Jakub Korab.</li>
</ul>
<h3>.NET/C#</h3>
<ul>
<li>For when I finally find time to learn LINQ: <a href="http://codebetter.com/blogs/ian_cooper/archive/2008/02/17/architecting-linq-to-sql-applications-part-5.aspx">Architecting LINQ To SQL Applications</a>, an 8-part series by Ian Cooper.</li>
<li><a href="http://weblogs.asp.net/scottgu/archive/2008/04/02/unit-testing-with-silverlight.aspx">Unit Testing with Silverlight</a>. By Scott Guthrie.</li>
<li>Toolico.com has a nice <a href="http://blog.toolico.com/2008/developers-tools/string-format-made-simpl#more-9">Silverlight utility</a> to lookup/generate string formatting codes.
<p><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="360" alt="Toolico.com String Format Utility" src="http://www.chinhdo.com/wp-content/uploads/2008/04/image.png" width="450" border="0" /> </li>
</ul>
<h3>Windows Mobile/Pocket PC</h3>
<ul>
<li><a href="http://www.informationweek.com/blog/main/archives/2008/04/ctia_first_impr.html">First Impressions Of Windows Mobile 6.1</a>. Information Week.</li>
</ul>
<h3>Gaming</h3>
<ul>
<li><a href="http://www.starcraft2.com/movies.xml">StarCraft 2 videos</a>.      </p>
<p><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="177" alt="StarCraft 2 video" src="http://www.chinhdo.com/wp-content/uploads/2008/04/image1.png" width="240" border="0" /> </li>
</ul>
<h3>Something a Little Different</h3>
<ul>
<li><a href="http://www.youtube.com/watch?v=fPgV6-gnQaE&amp;eurl=http://www.google.com/reader/view/">New Version of Google Maps</a> with expanded Street View released.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.chinhdo.com/20080407/finds-of-the-week-20080406/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Finds of the Week &#8211; March 2, 2008</title>
		<link>http://www.chinhdo.com/20080304/finds-of-the-week-20080302/</link>
		<comments>http://www.chinhdo.com/20080304/finds-of-the-week-20080302/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 05:56:34 +0000</pubDate>
		<dc:creator>Chinh Do</dc:creator>
				<category><![CDATA[Dotnet/.NET - C#]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Windows Mobile / Pocket PC]]></category>

		<guid isPermaLink="false">http://www.chinhdo.com/20080304/finds-of-the-week-20080302/</guid>
		<description><![CDATA[Programming Very good tips to gain a better understanding of your Project Managers: 10 things Project Managers wish Developers understood. By Frank Kelly. Jakob Nielsen&#8217;s Top-10 Application-Design Mistakes point out some common design problems that can be easily avoided. What&#8217;s your favorite code search engine? Learn to search for code better with one of these [...]]]></description>
			<content:encoded><![CDATA[</p>
<h3>Programming</h3>
<ul>
<li>Very good tips to gain a better understanding of your Project Managers: <a href="http://softarc.blogspot.com/2008/02/ten-things-developers-would-know-if.html">10 things Project Managers wish Developers understood</a>. By Frank Kelly. </li>
<li>Jakob Nielsen&#8217;s <a href="http://www.useit.com/alertbox/application-mistakes.html">Top-10 Application-Design Mistakes</a> point out some common design problems that can be easily avoided. </li>
<li>What&#8217;s your favorite code search engine? Learn to search for code better with one of these <a href="http://knightknetwork.com/2007/09/13/5-great-code-search-engines/">5 Great Code Search Engines!</a>. By David Knight. </li>
</ul>
<h3>C#.NET</h3>
<ul>
<li>Scott Guthrie provided an extensive <a href="http://weblogs.asp.net/scottgu/archive/2008/02/28/first-look-at-using-expression-blend-with-silverlight-2.aspx">First Look at Using Expression Blend with Silverlight 2</a>. </li>
<li><a href="http://www.sitechno.com/Blog/CircularReferencesWithWCFSolvedADifferentWay.aspx">Circular references with WCF: solved a different way</a>. By Ruurd Boeke. </li>
<li>Bored with nothing to read? Check out <a href="http://www.yoda.arachsys.com/csharp/">Jon Skeet&#8217;s C# and .NET articles and links</a>. Lots of good stuff to peruse. </li>
<li>Keith Brown&#8217;s <a href="http://msdn2.microsoft.com/en-us/magazine/cc163531.aspx">Security Briefs: Limited User Problems and Split Knowledge</a> discusses WCF services running under normal user accounts. </li>
<li>WCF &#8211; <a href="http://www.theserverside.net/tt/articles/showarticle.tss?id=SecuringWCFService">Securing your WCF service</a>. By William Tay. </li>
<li>WCF &#8211; <a href="http://www.code-magazine.com/article.aspx?quickid=0611051&amp;page=1">Fundamentals of WCF Security</a>. By Michele Leroux. </li>
</ul>
<h3>.NET Tips &amp; Tricks</h3>
<ul>
<li>Did you know you can <a href="http://msdn2.microsoft.com/en-us/library/581hfskb(VS.80).aspx">give threads any names you want</a> (MSDN)? The names are extremely useful when it comes to debugging time:       </p>
<p><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="130" alt="Thread names and debugging" src="http://www.chinhdo.com/wp-content/uploads/2008/03/image.png" width="220" border="0" /> </li>
<li>System.IO.Directory.CreateDirectory will create all directories and subdirectories as specified by the path parameter. No need to write code to create each directory in the chain. Just do this:
<pre class="csharpcode">Directory.CreateDirectory(<span class="str">@&quot;c:\MyApp\Env\Dev&quot;</span>);</pre>
</li>
<li>System.IO.Path.GetDirectoryName returns the directory name from a fully qualified file name.<br />
    </li>
</ul>
<h3>Powershell</h3>
<ul>
<li><a href="http://www.hanselman.com/blog/2008WindowScriptingGamesAdvancedPowerShellEvent7.aspx">Round-robin game scheduling algorithm in Powershell</a>. By Scott Hanselman. Check out my C# 2.0 algorithm in the comments section. </li>
<li>Mitch Denny wrote <a href="http://notgartner.wordpress.com/2008/02/23/how-to-host-the-powershell-runtime/">How To: Host the PowerShell Runtime</a>. </li>
<li>Use Powershell array expression syntax @(&#8230;) allows you to force a scalar return value to be wrapped in a array, if it&#8217;s not already in an array. I learned about this the hard way while trying to figure out while Get-Childitem sometimes returns an array and sometimes a scalar. Bruce Payette wrote more about it <a href="http://blogs.msdn.com/powershell/archive/2007/01/23/array-literals-in-powershell.aspx">here</a>. </li>
</ul>
<h3>Windows Mobile / Pocket PC</h3>
<ul>
<li>I needed a way to stream music and other media to my Windows Mobile phone (Samsung SCH-i760) and all the PCs around the house. <a href="http://www.orb.com">Orb</a> seems to be the answer. I&#8217;ve only had it running for a few days but it seems to be working great. I can stream music and photos (have not tested videos yet) to any PC in the house or anywhere on the net. I can also listen to my entire music library on my i760 phone anytime, anywhere through Verizon Wireless&#8217;s unlimited (with a catch&#8230; not to exceed 5GB) EDVO connection.
<p><a href="http://www.chinhdo.com/wp-content/uploads/2008/03/image1.png"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="328" alt="Orb Mycast" src="http://www.chinhdo.com/wp-content/uploads/2008/03/image-thumb.png" width="450" border="0" /></a> </p>
<p></li>
<li>I am a Google Mobile guy, but <a href="http://mobile.yahoo.com">Yahoo! Go for Windows Mobile</a> also looks very cool. I downloaded it to my Samsung SCH-i760 a few days ago. I am still checking it out but here are a few things I like:
<ul>
<li>Nice and responsive interface. </li>
<li>Built-in RSS Reader. </li>
<li>Street and satellite maps.
<p>Here are a few screenshots: </p>
<p><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="210" alt="Yahoo! Go" src="http://www.chinhdo.com/wp-content/uploads/2008/03/image2.png" width="222" border="0" /> </p>
<p><a href="http://www.chinhdo.com/wp-content/uploads/2008/03/image3.png"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="220" alt="Yahoo! Go" src="http://www.chinhdo.com/wp-content/uploads/2008/03/image-thumb1.png" width="247" border="0" /></a> </p>
<p><a href="http://www.chinhdo.com/wp-content/uploads/2008/03/image4.png"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="241" alt="Yahoo! Go Weather" src="http://www.chinhdo.com/wp-content/uploads/2008/03/image-thumb2.png" width="186" border="0" /></a>&#160; </li>
</ul>
</li>
</ul>
<h3>Software and Tools</h3>
<ul>
<li>
<p>You can configure Notepad++ to always use spaces for tabs/indentation. The option is a little hidden. It&#8217;s in Settings/Preferences/MISC, under Tab Setting: </p>
<p><a href="http://www.chinhdo.com/wp-content/uploads/2008/03/image5.png"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="297" alt="Notepad++ tab to spaces setting" src="http://www.chinhdo.com/wp-content/uploads/2008/03/image-thumb3.png" width="426" border="0" /></a> </p>
</li>
</ul>
<h3>Something a Little Different</h3>
<ul>
<li><a href="http://www.break.com/index/roommate-alien-prank-goes-bad.html">Alien Prank Goes Bad</a> (video). </li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.chinhdo.com/20080304/finds-of-the-week-20080302/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Finds of the Week &#8211; February 3, 2007</title>
		<link>http://www.chinhdo.com/20080205/finds-of-the-week-february-3-2007/</link>
		<comments>http://www.chinhdo.com/20080205/finds-of-the-week-february-3-2007/#comments</comments>
		<pubDate>Tue, 05 Feb 2008 05:08:15 +0000</pubDate>
		<dc:creator>Chinh Do</dc:creator>
				<category><![CDATA[Dotnet/.NET - C#]]></category>
		<category><![CDATA[Gmail IMAP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software/tools]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Windows Mobile / Pocket PC]]></category>

		<guid isPermaLink="false">http://www.chinhdo.com/20080205/finds-of-the-week-february-3-2007/</guid>
		<description><![CDATA[.NET MSMQ and WCF &#8211; hands-on lab now available at MSDN Code Gallery. Via John Breakwell. Scott Densmore shared more good stuff on the upcoming Enterprise Library 4. Microsoft rolled out a new code sharing site: MSDN Code Gallery. Code Gallery is kind of like CodePlex, but for the everyday developer. Via Jim Glass. A [...]]]></description>
			<content:encoded><![CDATA[<h3>.NET</h3>
<ul>
<li><a href="http://blogs.msdn.com/johnbreakwell/archive/2008/02/01/msmq-and-wcf-hands-on-lab-now-available.aspx">MSMQ and WCF &#8211; hands-on lab now available</a> at MSDN Code Gallery. Via John Breakwell.</li>
<li>Scott Densmore <a href="http://blogs.msdn.com/scottdensmore/archive/2008/01/31/enterprise-library-4-now-with-more-peace-love-and-rock-n-roll.aspx">shared</a> more good stuff on the upcoming Enterprise Library 4.</li>
<li>Microsoft rolled out a new code sharing site: <a href="http://blogs.msdn.com/jim_glass/archive/2008/01/30/hot-msdn-code-gallery-goes-live.aspx">MSDN Code Gallery</a>. Code Gallery is kind of like CodePlex, but for the everyday developer. Via Jim Glass.</li>
<li>A new version of the Source Code Outliner Power Toy <a href="http://blogs.msdn.com/quanto/archive/2008/01/28/source-code-outliner-powertoy.aspx">is available</a>. Via Quan To.</li>
<li><a href="http://www.codinghorror.com/blog/archives/001050.html">Get Your Database Under Version Control</a>. Jeff Atwood. My guess is that 75% or more of databases out there are not under version control.</li>
<li>Jeff Moser wrote a detailed analysis of the various looping constructs in .NET: <a href="http://www.moserware.com/2008/02/for-loops-using-i-i-enumerators-or-none.html">For Loops: Using i++, ++i, Enumerators, or None of the Above?</a>&#160; I totally forgot about ++i.</li>
<li>A timely article for my current project: <a href="http://blogs.msdn.com/ploeh/archive/2006/12/03/UnitTestingWCFServices.aspx">Unit Testing WCF Services</a>. By Mark Seemann.</li>
<li>James Newtonking explained why he <a href="http://james.newtonking.com/archive/2008/02/03/why-i-changed-my-mine-about-extension-methods.aspx">changed his mind</a> about extension methods.</li>
<li>Buddy Lindsey, Jr&#8217;s <a href="http://www.buddylindsey.com/Blog/page/TDD-for-Beginners-Series.aspx">TDD for Beginners Series</a> is a good introduction to Test Driven Development.</li>
<li>Vadym Stetsiak explained why <a href="http://vadmyst.blogspot.com/2008/02/when-stringtolower-is-evil.html">string.ToLower() is Evil</a>. Use string.Compare instead.</li>
<li><a href="http://www.codeproject.com/KB/aspnet/10ASPNetPerformance.aspx">10 ASP.NET Performance and Scalability Secrets</a> is an excellent article from Omar AlZabir. Many of the tips are for larger/high-trafficked sites but good to know nonetheless.</li>
<li>If you are into design patterns, Jason McDonald put together a very nice quick <a href="http://www.mcdonaldland.info/2007/11/28/40/">reference poster/PDF on the most common patterns</a>.</li>
<li>Visual Studio Magazine had a <a href="http://visualstudiomagazine.com/features/article.aspx?editorialsid=2410">very good article on WCF best practices</a> (Connect Apps with WCF) by Brian Noyes.</li>
</ul>
<h3>Software/Tools</h3>
<ul>
<li><a href="http://www.fiddler2.com/">Fiddler</a> is a VERY useful HTTP debugger.      </p>
<p><a href="http://www.chinhdo.com/wp-content/uploads/2008/02/image.png"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="308" alt="Fiddler" src="http://www.chinhdo.com/wp-content/uploads/2008/02/image-thumb.png" width="400" border="0" /></a>       </li>
<li>Use BitTorrent to send files. That and more at <a href="http://lifehacker.com/350405/top-10-bittorrent-tools-and-tricks">Top 10 BitTorrent Tools and Tricks</a> &#8211; Lifehacker. </li>
<li><a href="http://weblogs.asp.net/rosherove/archive/2008/02/04/nice-little-gmail-trick.aspx">You can SHIFT+CLICK to multi-select in Gmail</a>. Via Roy Osherove.</li>
</ul>
<h3>Windows Mobile &#8211; Pocket PC</h3>
<ul>
<li>Looks like Google has fixed the problems that were plaguing Gmail IMAP on Windows Mobile devices. Read the blog entry from the official Gmail Blog <a href="http://gmailblog.blogspot.com/2008/01/imap-on-windows-mobile-devices.html">here</a>. And here&#8217;s a related article from PC World: <a href="http://www.pcworld.com/article/id,141997-c,email/article.html">Google fixes Gmail IMAP problem on Windows Mobile</a>.</li>
<li>Viigo is a free RSS reader for Windows Mobile. I have not really used it that much but it seems to work ok.
<p><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="180" alt="Viigo RSS Reader for Windows Mobile" src="http://www.chinhdo.com/wp-content/uploads/2008/02/image1.png" width="240" border="0" />&#160; </li>
<li><a href="http://www.skyfire.com/">Skyfire</a> is another promising Windows Mobile browser currently in private beta. Via <a href="http://www.engadget.com/2008/01/28/skyfire-browser-for-windows-mobile-is-game-changing-does-flash/">Engadget</a>.
<p><embed src="http://www.youtube.com/v/4mWUoxiLZFc&amp;rel=1&amp;border=1" width="425" height="373" type="application/x-shockwave-flash" wmode="transparent" />      </li>
<li>If you have a Samsung Windows Mobile device, try the included PicSel browser. Here&#8217;s a <a href="http://tamspalm.blogspot.com/2005/10/web-browsing-on-palm-picsel-browser.html">review of Picsel browser</a>, with a lot of useful how-to information included. By Tam Hanna.</li>
</ul>
<h3>And Now, For Something A Little Different</h3>
<p><a href="http://www.nikon.co.jp/main/eng/feelnikon/discovery/universcale/nano.swf">Nano</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.chinhdo.com/20080205/finds-of-the-week-february-3-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finds of the Week &#8211; January 27, 2008</title>
		<link>http://www.chinhdo.com/20080128/finds-of-the-week-january-27-2008/</link>
		<comments>http://www.chinhdo.com/20080128/finds-of-the-week-january-27-2008/#comments</comments>
		<pubDate>Tue, 29 Jan 2008 03:35:19 +0000</pubDate>
		<dc:creator>Chinh Do</dc:creator>
				<category><![CDATA[Dotnet/.NET - C#]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software/tools]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Windows Mobile / Pocket PC]]></category>

		<guid isPermaLink="false">http://www.chinhdo.com/20080128/finds-of-the-week-january-27-2008/</guid>
		<description><![CDATA[.NET Programming, C# HTTP Programming with WCF and the .NET Framework 3.5 is a good article covering HTTP endpoints in WCF 3.5. By Justin Smith, MSDN Magazine. WCF Load Test is an open source tool that can generate unit tests from WCF trace files. Source Code Outliner PowerToy for Visual Studio 2008 is now available. [...]]]></description>
			<content:encoded><![CDATA[<h3>.NET Programming, C#</h3>
<ul>
<li><a href="http://msdn.microsoft.com/msdnmag/issues/08/01/WCFinOrcas/default.aspx">HTTP Programming with WCF and the .NET Framework 3.5</a> is a good article covering HTTP endpoints in WCF 3.5. By Justin Smith, MSDN Magazine. </li>
<li><a href="http://www.codeplex.com/WCFLoadTest">WCF Load Test</a> is an open source tool that can generate unit tests from WCF trace files. </li>
<li>Source Code Outliner PowerToy for Visual Studio 2008 is <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=55E6FE58-2163-45E7-92D0-B9C298FBDFAD&amp;displaylang=en">now available</a>. Via <a href="http://blogs.msdn.com/jameslau/archive/2008/01/27/source-code-outliner-powertoy-is-now-available-for-vs-2008.aspx">James Lau</a>. </li>
<li>Good tips on interview techniques from Dustin Andrews: <a href="http://blogs.msdn.com/dustin_andrews/archive/2008/01/18/why-doesn-t-anybody-ask-me-to-code-a-unit-test-in-an-interview.aspx">Why doesn&#8217;t anybody ask me to code a unit test in an interview?</a> </li>
<li>Throw away that mouse and <a href="http://www.dotnetcurry.com/(X(1)A(4IPgAbaYyAEkAAAANTk2MDI1YTQtNDFkZS00OWNhLTg2N2UtMDJmYzAwMzA0NTExcJowN69PO6poLcWfcR1pSPSKGQk1)S(gst1v4yfctzupb55z1frmdav))/ShowArticle.aspx?ID=91&amp;AspxAutoDetectCookieSupport=1">go mouseless with ASP.NET 2.0</a>. Suprotim Agarwal. </li>
<li><a href="http://gregs-blog.com/2008/01/22/update-quake-3-arena-net-port-is-done/">Quake 3 Arena Ported to .NET Managed C++ VS 2008!</a> Greg Dolley. </li>
<li>Add support for OpenID to your ASP.NET app. Mads Kristensen posted his <a href="http://blog.madskristensen.dk/post/OpenID-implementation-in-Csharp-and-ASPNET.aspx">OpenID implementation</a>. </li>
<li><a href="http://yangcao88.spaces.live.com/Blog/cns!1ppRXnKxUiSr5Bh0faV-l1PQ!107.entry?wa%3dwsignin1.0&amp;wa=wsignin1.0">How to Create a Database Object Programmatically in Enterprise Library, Painfully?</a> Yang&#8217;s .NET Zone. </li>
<li>Miked Esjardins shared his <a href="http://mikedesjardins.us/blog/2008/01/what-i-learned-from-contributing-to.html">experience contributing to an open source project</a>. </li>
<li>Andy shared first hand tips on <a href="http://savvyduck.blogspot.com/2008/01/being-developer-during-recession.html">being a developer during a recession</a>. </li>
<li><a href="http://bloggingbits.com/why-firefox-is-a-web-designers-best-friend/">Firefox is a developer&#8217;s best friend</a>. According to Mohsin. </li>
</ul>
<h3>Powershell</h3>
<ul>
<li><a href="http://weblogs.asp.net/shahar/default.aspx">[Tip] Option Explicit in PowerShell</a>. Sharar Gvirtz. </li>
</ul>
<h3>Software and Tools</h3>
<ul>
<li><a href="http://www.techcrunch.com/2008/01/17/yahoo-implements-openid-massive-win-for-the-project/">Yahoo Implements OpenID</a>. Michael Arrington, via Techcrunch. </li>
<li><a href="http://www.microsoft.com/expression/products/overview.aspx?key=encoder">Microsoft Expression Encoder</a> is my new tool of choice to perform batch compression of digicam movies. Batch processing is handled very nicely, especially on my new Quad Core PC. I used to use <a href="http://sourceforge.net/projects/megui">MeGUI</a>/x264 before, but it was just taking too much time to work through the various bugs and issues.
<p><a href="http://www.chinhdo.com/wp-content/uploads/2008/01/image13.png"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="315" alt="Microsoft Expression Encoder" src="http://www.chinhdo.com/wp-content/uploads/2008/01/image-thumb5.png" width="450" border="0" /></a>       </li>
<li>If you use OneNote, check out the <a href="http://blogs.msdn.com/johnguin/archive/2008/01/17/a-summary-of-the-onenote-powertoys-from-the-test-team-for-2007.aspx">OneNote 2007 PowerToys.</a> John Guin. </li>
<li><a href="http://www.speakeasy.net/speedtest/">Speakeasy&#8217;s Speed Test</a> is my favorite bandwidth tester:
<p><a href="http://www.chinhdo.com/wp-content/uploads/2008/01/image14.png"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="288" alt="Speakeasy Speed Test" src="http://www.chinhdo.com/wp-content/uploads/2008/01/image-thumb6.png" width="450" border="0" /></a> </li>
</ul>
<h3>Windows Mobile / Pocket PC</h3>
<ul>
<li>Scott Hanselman posted a nice <a href="http://www.hanselman.com/blog/BestMobileWebsitesForTinyBrowsers.aspx">list of mobile-friendly web sites</a>. </li>
</ul>
<h3>Something Different</h3>
<ul>
<li><a href="http://blog.pmarca.com/2008/01/oh-boy-the-ft-l.html">The FT liveblogs the Societe Generale conference call</a>, via Marc Andreessen. </li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.chinhdo.com/20080128/finds-of-the-week-january-27-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finds of the Week &#8211; January 20, 2008</title>
		<link>http://www.chinhdo.com/20080121/finds-of-the-week-jan-20-2008/</link>
		<comments>http://www.chinhdo.com/20080121/finds-of-the-week-jan-20-2008/#comments</comments>
		<pubDate>Mon, 21 Jan 2008 04:04:18 +0000</pubDate>
		<dc:creator>Chinh Do</dc:creator>
				<category><![CDATA[Dotnet/.NET - C#]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[HDTV]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Windows Mobile / Pocket PC]]></category>

		<guid isPermaLink="false">http://www.chinhdo.com/20080121/finds-of-the-week-jan-20-2008/</guid>
		<description><![CDATA[.NET, C#, Programming ScottGui made the long awaited announcement: .NET Framework Library Source now available. Roy Osherove raised a attention grabbing question: Dependency Injection &#8211; Is it relevant beyond unit testing? From the folks who brought you Best C# Blogs, a List of best C# Web Sites. By Tim Martinn/DevTopics. Sandcastle January 2008 Release Available. [...]]]></description>
			<content:encoded><![CDATA[<h3>.NET, C#, Programming</h3>
<ul>
<li>ScottGui made the long awaited announcement: <a href="http://weblogs.asp.net/scottgu/archive/2008/01/16/net-framework-library-source-code-now-available.aspx">.NET Framework Library Source now available</a>. </li>
<li>Roy Osherove raised a attention grabbing question: <a href="http://weblogs.asp.net/rosherove/archive/2008/01/18/dependency-injection-is-it-relevant-beyond-unit-testing.aspx">Dependency Injection &#8211; Is it relevant beyond unit testing?</a> </li>
<li>From the folks who brought you <a href="http://www.devtopics.com/best-c-blogs/">Best C# Blogs</a>, a <a href="http://www.devtopics.com/best-c-web-sites/">List of best C# Web Sites</a>. By Tim Martinn/DevTopics. </li>
<li><a href="http://weblogs.asp.net/jmandia/archive/2008/01/16/sandcastle-january-2008-release-available.aspx">Sandcastle January 2008 Release Available</a>. Via John Mandia. </li>
<li>James Carr&#8217;s <a href="http://blog.james-carr.org/?p=44">TDD Anti-Patterns</a> is a fun and enlightening read on of Test Driven Development. </li>
<li>It&#8217;s possible to write your own ASP.NET Web Service help page. Shahed Khan <a href="http://geekswithblogs.net/shahed/archive/2008/01/09/118419.aspx">has the details</a>. </li>
<li>Tobias Hertkorn <a href="http://saftsack.fs.uni-bayreuth.de/~dun3/archives/measure-memory-consumption-creating-object-functions/102.html">posted a great tip</a> on how to measure memory consumption of objects in C# right in the code. </li>
</ul>
<h3>Software and Tools</h3>
<ul>
<li>Jeff Atwood shared <a href="http://www.codinghorror.com/blog/archives/001037.html">the Top Five Browser Shortcuts Everyone Should Know</a>. I didn&#8217;t know about the middle mouse button browser shortcut. Very useful. </li>
<li>Reading Nazmul Idris&#8217; <a href="http://developerlife.com/theblog/?p=265">post on Microsoft OneNote 2007</a> prompted me to try it myself&#8230;. and I loved it. It&#8217;s a great application to keep track of notes, journal entries, work logs, etc. It&#8217;s going to be an essential app for me from now on.
<p><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="408" alt="OneNote" src="http://www.chinhdo.com/wp-content/uploads/2008/01/image11.png" width="500" border="0" />&#160; </p>
<p>I especially like <a href="http://blogs.msdn.com/david_rasmussen/archive/2006/06/29/650705.aspx">offline mode support for USB flash drives</a>. You can keep your Notebooks on a flash memory card. OneNote automatically synchronizes its local cache with the flash card when the card is inserted. When not inserted, you can still work on the local cached copy.       </p>
<p>What I don&#8217;t like: no VBA macro support. One of the first thing I tried was pressing ALT+F11 to bring up the VBA IDE&#8230; nothing happened. A quick search in Online Help confirmed my sinking feeling: no VBA support. Supposedly, you can write add-ins. </li>
</ul>
<h3>Windows Mobile/Pocket PC</h3>
<ul>
<li><a href="http://www.pocketpcmag.com/blogs/index.php?blog=40&amp;title=the_coolest_applications_on_the_windows_&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1">The coolest applications on the Windows Mobile platform</a>, by Mike Riley. </li>
</ul>
<h3>Gadgets</h3>
<ul>
<li>Scott Hanselman did a <a href="http://www.hanselman.com/blog/VerizonFIOSTVReviewAndPhotoGallery.aspx">extensive review of Verizon FIOS TV</a>. </li>
</ul>
<h3>Something different</h3>
<h3></h3>
<ul>
<li><a href="http://www.metacafe.com/watch/1041454/dolphin_play_bubble_rings/">Watch</a> dolphins blowing circles made of air bubbles. </li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.chinhdo.com/20080121/finds-of-the-week-jan-20-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finds of the Week &#8211; Nov 16, 2007</title>
		<link>http://www.chinhdo.com/20071116/finds-of-the-week-20071116/</link>
		<comments>http://www.chinhdo.com/20071116/finds-of-the-week-20071116/#comments</comments>
		<pubDate>Sat, 17 Nov 2007 02:50:53 +0000</pubDate>
		<dc:creator>Chinh Do</dc:creator>
				<category><![CDATA[Dotnet/.NET - C#]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Windows Mobile / Pocket PC]]></category>

		<guid isPermaLink="false">http://www.chinhdo.com/20071116/finds-of-the-week-20071116/</guid>
		<description><![CDATA[.NET For Richmonders, this article on InRich.com forecasts that IT salaries in Richmond will climb faster than U.S. averages. Understand the Impact of Low-Lock Techniques in Multithreaded Apps by Vance Morrison, via MSDN Magazine Dustin Campbell wrote about F#, specifically how to borrow some of its neat features to use in C#. Derik Whittaker commented [...]]]></description>
			<content:encoded><![CDATA[<h3>.NET</h3>
<ul>
<li>For Richmonders, <a href="http://www.inrich.com/cva/ric/news/business.apx.-content-articles-RTD-2007-10-26-0120.html">this article</a> on InRich.com forecasts that IT salaries in Richmond will climb faster than U.S. averages.</li>
<li><a href="http://msdn.microsoft.com/msdnmag/issues/05/10/MemoryModels/">Understand the Impact of Low-Lock Techniques in Multithreaded Apps</a> by Vance Morrison, via MSDN Magazine</li>
<li>Dustin Campbell <a href="http://diditwith.net/2007/11/14/ImproveYourCBorrowFromF.aspx">wrote about F#</a>, specifically how to borrow some of its neat features to use in C#.</li>
<li>Derik Whittaker <a href="http://devlicio.us/blogs/derik_whittaker/archive/2007/11/14/if-the-code-is-dead-then-bury-it.aspx">commented</a> on the unnecessary and bad practice of leaving commented code around.</li>
<li><a href="http://dotnettipoftheday.org/tips/sqlbulkcopy.aspx">SqlBulkCopy</a> is a technique to insert a large number of records to SQL Server efficiently. Via .NET Tips of the Day.</li>
</ul>
<h3>Software and Tools</h3>
<ul>
<li>Scott Hanselman <a href="http://www.hanselman.com/blog/HanselminutesPodcast87PlanningPlacingAndBuildingAHouseWithGoogleEarthAndSketchUp.aspx">shared tips</a> on how to plan and build a new house using Google Earth and Sketchup.</li>
<li><a href="http://blogs.msdn.com/outlook/archive/2007/11/14/fun-with-outlook-date-fields.aspx">Fun with Outlook Date Fields</a>, Kristel Leow, via Microsoft Office Outlook Team Blog. Not mentioned is my favorite: &#8220;now + x days/hours/weeks&#8221;.</li>
<li>Microsoft has <a href="http://blogs.msdn.com/mapo/archive/2007/11/15/line-of-code-counter.aspx">released</a> a free tool to count Lines of Code. Via Stefano Mapelli&#8217;s Scattered Notes.</li>
<li>Mike Walker provided <a href="http://blogs.msdn.com/mikewalker/archive/2007/11/13/vista-sp1-first-impressions.aspx">initial impressions</a> of Windows Vista Service Pack 1. Via MSDN Blogs.</li>
<li><a href="http://blogs.msdn.com/virtual_pc_guy/archive/2007/11/13/more-vhds-available.aspx">More VHDs available</a>. Ben Armstrong (Virtual PC Guy&#8217;s WebLog).</li>
<li>IE to <a href="http://blogs.msdn.com/justsean/archive/2007/11/08/ie-to-remove-click-to-activate.aspx">remove the annoying &#8220;Click to Activate&#8221;</a> &#8220;feature&#8221;. Sean Lyndersay (MSDN Blogs).</li>
</ul>
<h3>Tech and Gadgets</h3>
<ul>
<li>Dish Network <a href="http://www.engadgethd.com/2007/08/15/dish-network-enables-external-storage-ethernet-port-on-dvrs/">enables</a> ethernet ports on ViP622 HD DVRs. The main feature that the broadband connection brings is video on demand. The ethernet connection also allows the box to call home via the Internet instead of using the phone line.</li>
</ul>
<h3>Miscellaneous</h3>
<ul>
<li>View popular &#8220;sightings&#8221; on Google Maps, Windows Live Maps, and Yahoo Maps at <a href="http://virtualglobetrotting.com">Virtual Globetrotting</a> </li>
</ul>
<h3>And Now, Something Different</h3>
<p>I cut a kiwi fruit in halves the other day and this was what I saw:</p>
<p><img src="/images/200711/kiwifruit-heart.jpg" alt="Kiki Fruit Heart" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.chinhdo.com/20071116/finds-of-the-week-20071116/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Finds of the Week &#8211; Oct 31, 2007</title>
		<link>http://www.chinhdo.com/20071101/finds-of-the-week-20071031/</link>
		<comments>http://www.chinhdo.com/20071101/finds-of-the-week-20071031/#comments</comments>
		<pubDate>Fri, 02 Nov 2007 03:18:56 +0000</pubDate>
		<dc:creator>Chinh Do</dc:creator>
				<category><![CDATA[Dotnet/.NET - C#]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Software/tools]]></category>
		<category><![CDATA[Windows Mobile / Pocket PC]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[pocket pc]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.chinhdo.com/20071101/finds-of-the-week-20071031/</guid>
		<description><![CDATA[Here are my finds for this week: .NET Tip/Trick: Hard Drive Speed and Visual Studio Performance (ScottGu via weblogs.asp.net). ScottGu doesn&#39;t need a link from me, but I feel that this post of his is very important for all .NET developers to know. Scott recommends a minimum of 2GB of RAM for a Visual Studio [...]]]></description>
			<content:encoded><![CDATA[<p>Here are my finds for this week:</p>
<h3>.NET</h3>
<ul>
<li><a href="http://weblogs.asp.net/scottgu/archive/2007/11/01/tip-trick-hard-drive-speed-and-visual-studio-performance.aspx">Tip/Trick: Hard Drive Speed and Visual Studio Performance</a> (ScottGu via weblogs.asp.net). ScottGu doesn&#39;t need a link from me, but I feel that this post of his is very important for all .NET developers to know. Scott recommends a minimum of 2GB of RAM for a Visual Studio machine. I have 4GB on my home PC by the way and it&#39;s great, because it lets me do things like typing up this article in Visual Studio 2008 in a Virtual PC, for example.</li>
<li><a href="http://msdn2.microsoft.com/en-us/vstudio/bb821248.aspx">How Do I: Create and Modify a Cascading Style Sheet in Visual Studio 2008</a>? (Todd Miranda via msdn.microsoft.com). Check out the new support for CSS in Visual Studio 2008.</li>
<li><a href="http://www.ajaxninja.com/?p=230">DiscountASP.NET and Community Server do not mix, despite what DiscountASP.NET advertises</a> (AjaxNinja, via AjaxNinja.com).</li>
</ul>
<h3>Tools</h3>
<ul>
<li>I hope my hard drive doesn&#39;t crash in the next few days&#8230; because my initial <a href="http://mozy.com/">Mozy</a> backup is still running&#8230; about 3 weeks after I started it. At this rate it should be done in a few more days.
<p>                        <img src="/chinh/blog/images/200711/mozy.jpg" alt="Mozy Backup" /></li>
<li><a href="http://www.oracle.com/technology/products/database/sql_developer">Oracle SQL Developer</a> is a very nice and full-featured Oracle query and browsing tool. Best of all: it&#39;s free.
<p>                        <img src="/chinh/blog/images/200711/oracle-sql-developer.jpg" alt="Oracle SQL Developer" /></li>
</ul>
<h3>Windows Mobile / Pocket PC</h3>
<ul>
<li>I <a href="http://www.chinhdo.com/20070901/watch-live-tv-on-your-windows-mobile-phonepocket-pc/">wrote before</a> about how Verizon Wireless may cut you off if you use up too much bandwidth per month. Good news: Verizon Wireless has just <a href="http://www.news.com/Verizon-Wireless-settles-N.Y.-probe-into-marketing/2100-1034_3-6214848.html">settled a N.Y. probe</a> (news.com) into that practice.</li>
<li>I&#39;ve been checking my Gmail account everyday every since the <a href="http://gmailblog.blogspot.com/2007/10/sync-your-inbox-across-devices-with.html">IMAP announcement</a> on Oct 24. Today, it finally showed up!
<p>                        <img alt="Gmail IMAP" src="/chinh/blog/images/200711/gmail-imap-1.jpg" /></p>
</li>
<li><a href="http://www.fannsoftware.com/PpcSoftMain.html">Capture Screen Utility</a> from Fann Software is a free screen capture program for Pocket PC and Windows Mobile devices. It&#39;s free, and it works.
<p>                        <img style="border: solid 1px black" src="/chinh/blog/images/200711/CapScrUtil.png" alt="Fann Software Screen Capture Utility for Windows Mobile/Pocket PC" />
                    </li>
</ul>
<h3>Miscellaneous</h3>
<ul>
<li>If you are anoyed about that pesky Windows Language Bar that keeps coming back after you tell it to go away, you are not alone. <a href="http://blogs.howtogeek.com/mysticgeek/2007/08/04/make-the-language-bar-go-away/">Here</a>&#39;s how to get rid of it for good (How-To Geek Blogs).</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.chinhdo.com/20071101/finds-of-the-week-20071031/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finds of the Week &#8211; 10/24/2007</title>
		<link>http://www.chinhdo.com/20071024/find-of-the-week-2007-10-24/</link>
		<comments>http://www.chinhdo.com/20071024/find-of-the-week-2007-10-24/#comments</comments>
		<pubDate>Thu, 25 Oct 2007 01:23:46 +0000</pubDate>
		<dc:creator>Chinh Do</dc:creator>
				<category><![CDATA[Dotnet/.NET - C#]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software/tools]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Windows Mobile / Pocket PC]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[mozy]]></category>
		<category><![CDATA[online backup]]></category>
		<category><![CDATA[pocket pc]]></category>

		<guid isPermaLink="false">http://www.chinhdo.com/20071024/find-of-the-week-2007-10-24/</guid>
		<description><![CDATA[.NET Improve ODP.NET Performance (Mark A Williams, via Oracle Magazine) shows how Connection Pooling, Controlling Fetch Size, and Statement Caching can be used to maximize performance with the Oracle Data Provider for .NET. Did you know that you can profile a selected Unit Test in Visual Studio Team System? Read more at Profiling a Unit [...]]]></description>
			<content:encoded><![CDATA[<h3>.NET</h3>
<ul>
<li><a href="http://www.oracle.com/technology/oramag/oracle/06-jul/o46odp.html">Improve ODP.NET Performance</a> (Mark A Williams, via Oracle Magazine) shows how Connection Pooling, Controlling Fetch Size, and Statement Caching can be used to maximize performance with the Oracle Data Provider for .NET.</li>
<li>Did you know that you can profile a selected Unit Test in Visual Studio Team System? Read more at <a href="http://blogs.msdn.com/noahc/archive/2006/10/13/profiling-a-unit-test.aspx">Profiling a Unit Test</a> (Noah Coad, via blogs.msdn.com).</li>
</ul>
<h3>Tools</h3>
<ul>
<li>Sysinternals (now part of Microsoft) <a href="http://www.microsoft.com/technet/sysinternals/utilities/ProcessExplorer.mspx">has released a new version</a> (v11.02) of their extremely useful Process Explorer utility. This is one of my must-have utility on any new system.</li>
<p><img alt="Process Explorer" src="/images/200710/process-explorer.jpg" /></p>
<li><a href="http://filezilla-project.org/">FileZilla</a> is an open source FTP utility for Windows. It&#39;s free and has all the features I use. What more can one ask for?</li>
<p><img alt="Filezilla" src="/images/200710/filezilla.png" /></p>
<li>I signed up for <a href="http://mozy.com/">Mozy</a> two weeks ago. The price is right: $4.95 per month for peace of mind. However, it&#8217;s been 2 weeks and the initial backup is still only 50% complete!! I have a Verizon FIOS connection with 2000 Kbps upload speed and about 37GB of data to backup. I&#8217;ll post an update on how restores work whenever this thing finishes.</li>
<p><img alt="Mozy" src="/images/200710/mozy.jpg" /></p>
</ul>
<h3>Windows Mobile / Pocket PC</h3>
<ul>
<li>Google has just <a href="http://gmailblog.blogspot.com/2007/10/sync-your-inbox-across-devices-with.html">announced</a> free IMAP for Gmail! Unfortunately, it&#39;s not available on my Gmail account yet. I am hoping that the IMAP with Windows Mobile Outlook is better than Gmail mobile (via Pocket IE or Opera Mobile).</li>
</ul>
<h3>Blogs</h3>
<ul>
<li><a href="http://www.hanselman.com/blog/">Scott Hanselman&#39;s Computer Zen</a> is one of my favorite .NET related blogs. I don&#39;t know how he does it, but Scott often writes several detailed posts a day. Don&#39;t forget to check out his <a href="http://www.hanselman.com/blog/ScottHanselmans2007UltimateDeveloperAndPowerUsersToolListForWindows.aspx">Tools List</a> post.</li>
</ul>
<h3>Miscellaneous</h3>
<ul>
<li>Did you know that the best Wikipedia content is often from anonymous &quot;good samaritans&quot;? &quot;Anonymous contributors with a single edit had the highest quality of any group.&quot; Read more <a href="http://arstechnica.com/news.ars/post/20071018-anonymous-good-samaritans-may-produce-wikipedias-best-content.html">here</a>.</li>
</ul>
<h3>And Now, Something Different</h3>
<p>Alexa.com&#39;s current list of 100 Top Sites in the United States (sorted by traffic) has a couple of interesting entries. In addition to the familiar Yahoo!, Google, and Myspace, there are two Vietnamese related sites: <a href="http://vnexpress.net">VnExpress</a> at number 70, and <a href="http://www.vietfun.com/">Vietfun</a>, at number 80. Besides these two sites, there are no other non-English or minority-centered web sites on the list that I could tell.</p>
<p>Possible explanations:</p>
<ul>
<li>Alexa rankings are way off base.</li>
<li>Vietnamese Americans are using the net much more than any other minority groups (unlikely). If this is true, there is an untapped market here.</li>
</ul>
<p>Anyone else has an explanation?</p>
<p><img alt="alexa-rankings-usa-1" src="/images/200710/alexa-rankings-1.jpg" /></p>
<p><img alt="alexa-rankings-usa-1" src="/images/200710/alexa-rankings-2.jpg" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.chinhdo.com/20071024/find-of-the-week-2007-10-24/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

