<?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>Sudarpo Chang with .NET</title>
	<atom:link href="http://www.sudarpo.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sudarpo.net</link>
	<description></description>
	<lastBuildDate>Wed, 16 May 2012 11:32:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>HTML5 Number/Numeric for ASP.NET Textbox</title>
		<link>http://www.sudarpo.net/2012/05/html5-numbernumeric-for-asp-net-textbox/</link>
		<comments>http://www.sudarpo.net/2012/05/html5-numbernumeric-for-asp-net-textbox/#comments</comments>
		<pubDate>Wed, 16 May 2012 02:01:13 +0000</pubDate>
		<dc:creator>Sudarpo</dc:creator>
				<category><![CDATA[ASP NET]]></category>

		<guid isPermaLink="false">http://www.sudarpo.net/?p=246</guid>
		<description><![CDATA[Problem ASP.NET 4.0 Web Forms I want to use HTML5 number input textbox I&#8217;m targetting html5 modern browser, e.g. Chrome, Apple Safari Solution With the latest NET 4.0 update, you can override input type of asp:Textbox to any html5 type. You can use type number by adding type=&#8221;number&#8221; to asp:Textbox. It will be rendered with <a href='http://www.sudarpo.net/2012/05/html5-numbernumeric-for-asp-net-textbox/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p><strong>Problem</strong></p>
<ul>
<li>ASP.NET 4.0 Web Forms</li>
<li>I want to use HTML5 number input textbox</li>
<li>I&#8217;m targetting html5 modern browser, e.g. Chrome, Apple Safari</li>
</ul>
<p><strong>Solution</strong></p>
<p>With the latest NET 4.0 update, you can override input type of asp:Textbox to any html5 type. You can use type number by adding <em><strong>type=&#8221;number&#8221;</strong></em> to <strong>asp:Textbox</strong>.</p>
<pre class="brush: csharp; title: ; notranslate">
&lt;asp:TextBox ID=&quot;TextBox1&quot; runat=&quot;server&quot;
  placeholder=&quot;number&quot;
  type=&quot;number&quot;&gt;&lt;/asp:TextBox&gt;
</pre>
<p>It will be rendered with spinboxes as shown below in Chrome and Safari. You can check <a href="http://caniuse.com/#feat=input-number">&#8220;Can I Use&#8221;</a> for list of browsers that support input type=number.</p>
<div id="attachment_268" class="wp-caption alignnone" style="width: 244px"><img src="http://www.sudarpo.net/w/media/2012/05/number-chrome.png" alt="Number Input in Chrome" title="number-chrome" width="234" height="37" class="size-full wp-image-268" /><p class="wp-caption-text">Number Input in Chrome</p></div>
<div id="attachment_267" class="wp-caption alignnone" style="width: 239px"><img src="http://www.sudarpo.net/w/media/2012/05/number-safari.png" alt="Number Input in Safari" title="number-safari" width="229" height="40" class="size-full wp-image-267" /><p class="wp-caption-text">Number Input in Safari</p></div>
<p><strong>Notes</strong><br />
This only works after you install <a href="http://support.microsoft.com/kb/2468871" title="Update for the .NET Framework 4">Update for the .NET Framework 4</a>. And your project target framework must be NET 4.0 and above.</p>
<blockquote><p>
Feature 3<br />
New syntax lets you define a TextBox control that is HTML5 compatible. For example, the following code defines a TextBox control that is HTML5 compatible:</p>
<pre class="brush: csharp; title: ; notranslate">
&lt;asp:textbox runat=&quot;server&quot; type=&quot;some-HTML5-type&quot; /&gt;
</pre>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.sudarpo.net/2012/05/html5-numbernumeric-for-asp-net-textbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML5 placeholder for ASP.NET Input Textbox</title>
		<link>http://www.sudarpo.net/2012/05/html5-placeholder-for-asp-net-input-textbox/</link>
		<comments>http://www.sudarpo.net/2012/05/html5-placeholder-for-asp-net-input-textbox/#comments</comments>
		<pubDate>Tue, 15 May 2012 15:26:33 +0000</pubDate>
		<dc:creator>Sudarpo</dc:creator>
				<category><![CDATA[ASP NET]]></category>
		<category><![CDATA[aspnet]]></category>
		<category><![CDATA[html5]]></category>

		<guid isPermaLink="false">http://www.sudarpo.net/?p=242</guid>
		<description><![CDATA[Problem I&#8217;m still fond of ASP.NET Web Forms, and I was wondering how to implement html5 placeholder for input textbox with ASP.NET 4.0 Web Forms. Solution To add html5 placeholder to input textbox in ASP.NET, you only need to add attribute placeholder to asp:Textbox tag. As simple as that! I didn&#8217;t verify this, but I <a href='http://www.sudarpo.net/2012/05/html5-placeholder-for-asp-net-input-textbox/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p><strong>Problem</strong></p>
<p>I&#8217;m still fond of ASP.NET Web Forms, and I was wondering how to implement html5 placeholder for input textbox with ASP.NET 4.0 Web Forms. </p>
<p><strong>Solution</strong></p>
<p>To add html5 placeholder to input textbox in ASP.NET, you only need to add attribute <em><strong>placeholder</strong></em> to <em><strong>asp:Textbox</strong></em> tag. As simple as that!</p>
<pre class="brush: csharp; title: ; notranslate">
&lt;asp:TextBox ID=&quot;placeholderTextBox&quot; runat=&quot;server&quot;
  placeholder=&quot;html5 placeholder&quot;&gt;&lt;/asp:TextBox&gt;
</pre>
<p>I didn&#8217;t verify this, but I guess you will have to install &#8220;<a href="http://visualstudiogallery.msdn.microsoft.com/a15c3ce9-f58f-42b7-8668-53f6cdc2cd83" target="_blank" title="Web Standards Update for Microsoft Visual Studio 2010 SP1">Web Standards Update for Microsoft Visual Studio 2010 SP1</a>&#8221; first.</p>
<p>Input textbox with placeholder as seen in Google Chrome 18 (May 2012).</p>
<p><img src="http://www.sudarpo.net/w/media/2012/05/placeholder-chrome.png" alt="placeholder in Google chrome" title="placeholder in Google chrome" width="239" height="112" class="size-full wp-image-245" /></p>
<p>When you run it Mozilla Firefox 12.</p>
<p><img src="http://www.sudarpo.net/w/media/2012/05/placeholder-firefox.png" alt="placeholder in Firefox" title="placeholder in Firefox" width="358" height="96" class="size-full wp-image-244" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sudarpo.net/2012/05/html5-placeholder-for-asp-net-input-textbox/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Official Windows Phone 7 Developer Tools RTM Offline Installer</title>
		<link>http://www.sudarpo.net/2010/12/official-windows-phone-7-developer-tools-rtm-offline-installer/</link>
		<comments>http://www.sudarpo.net/2010/12/official-windows-phone-7-developer-tools-rtm-offline-installer/#comments</comments>
		<pubDate>Wed, 01 Dec 2010 01:56:39 +0000</pubDate>
		<dc:creator>Sudarpo</dc:creator>
				<category><![CDATA[Windows Phone Developer Tool]]></category>
		<category><![CDATA[offline]]></category>
		<category><![CDATA[wp7dev]]></category>

		<guid isPermaLink="false">http://www.sudarpo.net/?p=189</guid>
		<description><![CDATA[Finally Microsoft officially released offline installer for Windows Phone 7 Developer Tools. Download: http://go.microsoft.com/fwlink/?LinkId=201927 Since it does not include October update, you have to download it separately. Update: January 2011 Update is already released. References: http://blogs.msdn.com/b/jaimer/archive/2010/11/27/iso-image-for-the-windows-phone-developer-tools.aspx http://www.microsoft.com/downloads/en/details.aspx?FamilyID=04704acf-a63a-4f97-952c-8b51b34b00ce http://create.msdn.com/en-us/news/Windows_Phone_Developer_Tools_January_2011_Update]]></description>
			<content:encoded><![CDATA[<p>Finally Microsoft officially released offline installer for Windows Phone 7 Developer Tools.</p>
<p>Download: <a href="http://go.microsoft.com/fwlink/?LinkId=201927" alt="Official WP7 Dev Tools Offline Installer" title="Official WP7 Dev Tools Offline Installer">http://go.microsoft.com/fwlink/?LinkId=201927</a></p>
<p>Since it does not include <a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=49b9d0c5-6597-4313-912a-f0cca9c7d277">October update</a>, you have to download it separately.</p>
<p>Update:<br />
January 2011 Update is already <a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=49B9D0C5-6597-4313-912A-F0CCA9C7D277">released</a>.</p>
<p>References:</p>
<ul>
<li><a href="http://blogs.msdn.com/b/jaimer/archive/2010/11/27/iso-image-for-the-windows-phone-developer-tools.aspx">http://blogs.msdn.com/b/jaimer/archive/2010/11/27/iso-image-for-the-windows-phone-developer-tools.aspx</a></li>
<li><a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=04704acf-a63a-4f97-952c-8b51b34b00ce">http://www.microsoft.com/downloads/en/details.aspx?FamilyID=04704acf-a63a-4f97-952c-8b51b34b00ce</a></li>
<li><a href="http://create.msdn.com/en-us/news/Windows_Phone_Developer_Tools_January_2011_Update">http://create.msdn.com/en-us/news/Windows_Phone_Developer_Tools_January_2011_Update</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.sudarpo.net/2010/12/official-windows-phone-7-developer-tools-rtm-offline-installer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Phone 7 Developer Tools Final is Released</title>
		<link>http://www.sudarpo.net/2010/09/windows-phone-7-developer-tools-final-is-released/</link>
		<comments>http://www.sudarpo.net/2010/09/windows-phone-7-developer-tools-final-is-released/#comments</comments>
		<pubDate>Fri, 17 Sep 2010 02:19:01 +0000</pubDate>
		<dc:creator>Sudarpo</dc:creator>
				<category><![CDATA[Windows Phone Developer Tool]]></category>
		<category><![CDATA[wp7dev]]></category>

		<guid isPermaLink="false">http://www.sudarpo.net/?p=179</guid>
		<description><![CDATA[It&#8217;s been a while since initial release of Windows Phone 7 Developer Tools and finally developers rejoiced.. Final Developer Tools is here for public consumption. There will be many other blogs that will post about this final release. I will be brief and list some useful references. Scott Gu&#8217;s on WP7 Final: new tools included <a href='http://www.sudarpo.net/2010/09/windows-phone-7-developer-tools-final-is-released/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a while since initial release of Windows Phone 7 Developer Tools and finally developers rejoiced.. Final Developer Tools is here for public consumption.</p>
<p>There will be many other blogs that will post about this final release. I will be brief and list some useful references.</p>
<ul>
<li><a href="http://weblogs.asp.net/scottgu/archive/2010/09/16/windows-phone-7-developer-tools-released.aspx">Scott Gu&#8217;s on WP7 Final</a>: new tools included in final release, a short preview of Panorama control and tutorial links.</li>
<li><a href="http://silverlight.codeplex.com/">Silverlight for Windows Phone 7 Toolkit</a></li>
<blockquote><p>
Wonderful new controls such as:</p>
<ol>
<li>ContextMenu</li>
<li>DatePicker</li>
<li>TimePicker</li>
<li>WrapPanel</li>
<li>ToggleSwitch</li>
<li>GestureService</li>
</ol>
</blockquote>
<li><a href="http://timheuer.com/blog/archive/2010/09/16/silverlight-toolkit-for-windows-phone-7-released.aspx">Tim Heuer on Silverlight Toolkit Windows Phone 7</a></li>
<li><a href="http://windowsteamblog.com/windows_phone/b/wpdev/archive/2010/09/16/windows-phone-developer-tools-are-final.aspx">Long rants at Windows Phone Developer Blog</a> </li>
<li><a href="http://channel9.msdn.com/Learn/Courses/WP7TrainingKit">Windows Phone 7 Developer Training Kit @ Channel 9</a></li>
<li><a href="http://windowsteamblog.com/windows_phone/b/wpdev/archive/2010/09/17/windows-phone-training-kit-for-developers-rtm-refresh.aspx">Windows Phone Training Kit for Developers – RTM Refresh</a></li>
<li>WP7 Dev Tool Final: <a href="http://go.microsoft.com/fwlink/?LinkId=185584">Web Installer</a>; <a href="http://www.sudarpo.net/2010/12/official-windows-phone-7-developer-tools-rtm-offline-installer/">Offline Installer</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.sudarpo.net/2010/09/windows-phone-7-developer-tools-final-is-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Phone 7 Developer Tools Beta Offline Installer</title>
		<link>http://www.sudarpo.net/2010/07/windows-phone-7-developer-tools-beta-offline-installer/</link>
		<comments>http://www.sudarpo.net/2010/07/windows-phone-7-developer-tools-beta-offline-installer/#comments</comments>
		<pubDate>Fri, 16 Jul 2010 02:40:54 +0000</pubDate>
		<dc:creator>Sudarpo</dc:creator>
				<category><![CDATA[Windows Phone Developer Tool]]></category>
		<category><![CDATA[beta]]></category>
		<category><![CDATA[offline installer]]></category>
		<category><![CDATA[windows 7]]></category>
		<category><![CDATA[windows phone 7]]></category>
		<category><![CDATA[windows phone developer]]></category>
		<category><![CDATA[wp7dev]]></category>

		<guid isPermaLink="false">http://www.sudarpo.net/?p=162</guid>
		<description><![CDATA[Here is an updated offline installer for WP7 Developer Tools Beta. Previous CTP April Refresh release is now obsolete. Final WP7 Dev Tools is already released. Download links: Mirror 1 &#8211; Hotfile wp7dev_beta_offline.part1.rar wp7dev_beta_offline.part2.rar wp7dev_beta_offline.part3.rar wp7dev_beta_offline.part4.rar Mirror 2 &#8211; Deposit Files wp7dev_beta_offline.part1.rar wp7dev_beta_offline.part2.rar wp7dev_beta_offline.part3.rar wp7dev_beta_offline.part4.rar Mirror 3 &#8211; MediaFire wp7dev_beta_offline.part1.rar wp7dev_beta_offline.part2.rar wp7dev_beta_offline.part3.rar wp7dev_beta_offline.part4.rar Mirror 4 <a href='http://www.sudarpo.net/2010/07/windows-phone-7-developer-tools-beta-offline-installer/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Here is an updated offline installer for WP7 Developer Tools Beta. Previous <a href="http://www.sudarpo.net/2010/05/windows-phone-developer-tools-ctp-offline-installer/">CTP April Refresh</a> release is now obsolete. </p>
<p><a href="http://www.sudarpo.net/2010/09/windows-phone-7-developer-tools-final-is-released/">Final</a> WP7 Dev Tools is already released. </p>
<p><span id="more-162"></span></p>
<p><del><strong>Download links:</strong><br />
Mirror 1 &#8211; Hotfile<br />
<a href="http://hotfile.com/dl/54895156/48e1daa/wp7dev_beta_offline.part1.rar.html">wp7dev_beta_offline.part1.rar</a><br />
<a href="http://hotfile.com/dl/54896408/3645793/wp7dev_beta_offline.part2.rar.html">wp7dev_beta_offline.part2.rar</a><br />
<a href="http://hotfile.com/dl/54897567/d347d7b/wp7dev_beta_offline.part3.rar.html">wp7dev_beta_offline.part3.rar</a><br />
<a href="http://hotfile.com/dl/54898385/ef7098d/wp7dev_beta_offline.part4.rar.html">wp7dev_beta_offline.part4.rar</a></p>
<p>Mirror 2 &#8211; Deposit Files<br />
<a href="http://depositfiles.com/files/nklibe4ym">wp7dev_beta_offline.part1.rar</a><br />
<a href="http://depositfiles.com/files/jokr4blmx">wp7dev_beta_offline.part2.rar</a><br />
<a href="http://depositfiles.com/files/9mz9k0ixy">wp7dev_beta_offline.part3.rar</a><br />
<a href="http://depositfiles.com/files/22e3kjx7e">wp7dev_beta_offline.part4.rar</a></p>
<p>Mirror 3 &#8211; MediaFire<br />
<a href="http://www.mediafire.com/?zn3jmkkz2mjdiio">wp7dev_beta_offline.part1.rar</a><br />
<a href="http://www.mediafire.com/?h2tidt4jymzmzmo">wp7dev_beta_offline.part2.rar</a><br />
<a href="http://www.mediafire.com/?zmjomgjvmztmwnt">wp7dev_beta_offline.part3.rar</a><br />
<a href="http://www.mediafire.com/?eyhkujz3mdj2oy2">wp7dev_beta_offline.part4.rar</a></p>
<p>Mirror 4 &#8211; Megaupload<br />
<a href="http://www.megaupload.com/?d=DI86YKPD">wp7dev_beta_offline.part1.rar</a><br />
<a href="http://www.megaupload.com/?d=VQV0BMBJ">wp7dev_beta_offline.part2.rar</a><br />
<a href="http://www.megaupload.com/?d=MWC9L2OT">wp7dev_beta_offline.part3.rar</a><br />
<a href="http://www.megaupload.com/?d=N6831PHB">wp7dev_beta_offline.part4.rar</a></del></p>
<p><strong>Notes:</strong></p>
<ul>
<li>All links are interchangeable.</li>
<li>Tested only in Windows 7.</li>
<li>RAR recovery record is added for each file. Try <strong><em>Repair</em></strong> when the downloaded file is corrupted or has CRC error.</li>
<li>Troubleshooting 1: <a href="http://blogs.msdn.com/b/astebner/archive/2010/07/12/10037442.aspx">Possible issues uninstalling the Windows Phone Developer Tools CTP Refresh and installing the Beta.</a></li>
<li>Troubleshooting 2: <a href="http://blogs.msdn.com/b/prativen/archive/2010/07/13/windows-phone-developer-tools-beta-released.aspx">Problem installing beta and possible fixes.</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.sudarpo.net/2010/07/windows-phone-7-developer-tools-beta-offline-installer/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Windows Phone 7 Developer Tools Beta is LIVE</title>
		<link>http://www.sudarpo.net/2010/07/windows-phone-7-developer-tools-beta-is-live/</link>
		<comments>http://www.sudarpo.net/2010/07/windows-phone-7-developer-tools-beta-is-live/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 15:19:38 +0000</pubDate>
		<dc:creator>Sudarpo</dc:creator>
				<category><![CDATA[Windows Phone Developer Tool]]></category>
		<category><![CDATA[windows phone 7]]></category>
		<category><![CDATA[wp7dev]]></category>

		<guid isPermaLink="false">http://www.sudarpo.net/?p=155</guid>
		<description><![CDATA[Microsoft&#8217;s Windows Phone team finally released a beta version of its popular developer tools. You can grab the latest installer from Microsoft Download. There are lot of major changes to framework, library, control templates, etc. The coolest addition is the inclusion of Expression Blend 4 for Windows Phone Beta. Make sure you read What&#8217;s New <a href='http://www.sudarpo.net/2010/07/windows-phone-7-developer-tools-beta-is-live/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Microsoft&#8217;s Windows Phone team finally released a <a href="http://windowsteamblog.com/windows_phone/b/wpdev/archive/2010/07/12/windows-phone-developer-tools-beta-released.aspx">beta version</a> of its popular developer tools. You can grab the latest installer from <a href="http://go.microsoft.com/fwlink/?LinkID=185968">Microsoft Download</a>.</p>
<p>There are lot of major changes to framework, library, control templates, etc. The coolest addition is the inclusion of Expression Blend 4 for Windows Phone Beta. </p>
<p>Make sure you read <a href="http://msdn.microsoft.com/en-us/library/ff637516%28v=VS.92%29.aspx">What&#8217;s New in Windows Phone Developer Tools Beta</a> after or before downloading the Beta, as your current CTP project might break. There are <a href="http://msdn.microsoft.com/en-us/library/ff637516%28v=VS.92%29.aspx#tag_migrating">short tips for migrating current CTP project to Beta</a>.</p>
<blockquote><p>
The following guidance applies only to applications created using Windows Phone Developer Tools CTP Refresh (April 2010). If you created your application using the Windows Phone Developer Tools CTP (March 2010), do not use your previous project; instead, create a new one.</p>
<ol>
<li>Create a new project.</li>
<li>Copy your own code from app.xaml, but leave out any template code.</li>
<li>Do this for each page.</li>
<li>Bring in libraries as-is.</li>
<li>Fix build breaks.</li>
</ol>
</blockquote>
<p>For more details and thorough guide, read <a href="http://blogs.msdn.com/b/jaimer/archive/2010/06/28/migrating-apps-from-windows-phone-ctps-to-the-beta-build.aspx">Jaime Rodriguez&#8217;s blog post</a> on migration.</p>
<p><strong>References:</strong></p>
<ul>
<li><a href="http://blogs.msdn.com/b/astebner/archive/2010/07/12/10037442.aspx">Possible issues uninstalling the Windows Phone Developer Tools CTP Refresh and installing the Beta</a></li>
<li><a href="http://blogs.msdn.com/b/astebner/archive/2010/07/12/10037297.aspx">Windows Phone Developer Tools Beta and XNA Game Studio 4.0 Beta now available for download</a></li>
<li><a href="http://blogs.msdn.com/b/prativen/archive/2010/07/13/windows-phone-developer-tools-beta-released.aspx">Problem installing beta and possible fixes</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.sudarpo.net/2010/07/windows-phone-7-developer-tools-beta-is-live/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Even Google Made Mistakes on SSL Certificate</title>
		<link>http://www.sudarpo.net/2010/07/even-google-made-mistakes-on-ssl-certificate/</link>
		<comments>http://www.sudarpo.net/2010/07/even-google-made-mistakes-on-ssl-certificate/#comments</comments>
		<pubDate>Sat, 03 Jul 2010 17:22:41 +0000</pubDate>
		<dc:creator>Sudarpo</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google docs]]></category>
		<category><![CDATA[ssl]]></category>

		<guid isPermaLink="false">http://www.sudarpo.net/?p=147</guid>
		<description><![CDATA[URLs affected: https://docs.google.com https://www.google.com/docs It happened on 2010-07-04, 00:30 (GMT+8). And it&#8217;s been rectified quickly by Google. As of now, SSL certificate for Google Docs has been replaced with a generic SSL for domain: *.google.com]]></description>
			<content:encoded><![CDATA[<p>URLs affected:</p>
<ul>
<li><a href="https://docs.google.com">https://docs.google.com</a></li>
<li><a href="https://www.google.com/docs">https://www.google.com/docs</a></li>
</ul>
<p>It happened on 2010-07-04, 00:30 (GMT+8).<br />
And it&#8217;s been rectified quickly by Google. As of now, SSL certificate for Google Docs has been replaced with a generic SSL for domain: *.google.com</p>
<div id="attachment_148" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.sudarpo.net/w/media/2010/07/chrome-docs-certificate-error.jpg" rel="lightbox[147]"><img src="http://www.sudarpo.net/w/media/2010/07/chrome-docs-certificate-error-300x184.jpg" alt="Google Docs SSL Certificate Error - Chrome" title="chrome-docs-certificate-error" width="300" height="184" class="size-medium wp-image-148" /></a><p class="wp-caption-text">Google Docs SSL Certificate Error - Chrome</p></div>
<div id="attachment_149" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.sudarpo.net/w/media/2010/07/firefox-docs-certificate-error.jpg" rel="lightbox[147]"><img src="http://www.sudarpo.net/w/media/2010/07/firefox-docs-certificate-error-300x244.jpg" alt="Google Docs SSL Certificate Error - Firefox" title="Google Docs SSL Certificate Error - Firefox" width="300" height="244" class="size-medium wp-image-149" /></a><p class="wp-caption-text">Google Docs SSL Certificate Error - Firefox</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.sudarpo.net/2010/07/even-google-made-mistakes-on-ssl-certificate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Phone 7 Developer Tools CTP Offline Installer</title>
		<link>http://www.sudarpo.net/2010/05/windows-phone-developer-tools-ctp-offline-installer/</link>
		<comments>http://www.sudarpo.net/2010/05/windows-phone-developer-tools-ctp-offline-installer/#comments</comments>
		<pubDate>Mon, 03 May 2010 14:29:47 +0000</pubDate>
		<dc:creator>Sudarpo</dc:creator>
				<category><![CDATA[Windows Phone Developer Tool]]></category>
		<category><![CDATA[offline installer]]></category>
		<category><![CDATA[windows 7]]></category>
		<category><![CDATA[windows phone 7]]></category>
		<category><![CDATA[windows phone developer]]></category>
		<category><![CDATA[wp7dev]]></category>

		<guid isPermaLink="false">http://www.sudarpo.net/?p=116</guid>
		<description><![CDATA[I decided to make an installation ISO as this definitely could help for repairing corrupted installation, sharing with friends, or installation in office/college (screw firewall, proxy, etc). I believe Microsoft will only release Offline Installation for Windows Phone Developer Tools only for Final Release. I do not have chance to do test installation in many <a href='http://www.sudarpo.net/2010/05/windows-phone-developer-tools-ctp-offline-installer/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>I decided to make an installation ISO as this definitely could help for repairing corrupted installation, sharing with friends, or installation in office/college (screw firewall, proxy, etc). I believe Microsoft will only release Offline Installation for Windows Phone Developer Tools only for Final Release.</p>
<p>I do not have chance to do test installation in many system &#8211; slow installation, bla bla bla. It doesn&#8217;t allow me to install in Windows Vista without SP1 installed and I have no access to any 64-bit system. Hence I only tested on the following box:</p>
<ul>
<li>Operating System: Windows 7</li>
<li>Platform: x86</li>
<li>No prior installation of: Visual Studio 2010 RTM; Visual Studio 2010 Express; Windows Phone Developer Tools CTP March; ( I installed Visual Studio 2010 RTM after installing this, and both works fine )</li>
</ul>
<p>Web installer can be downloaded from <a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&#038;FamilyID=cabcd5ed-7dfc-4731-9d7e-3220603cad14">Microsoft Download &#8211; Windows Phone Developer Tools CTP (April Refresh)</a>. Scroll down for offline installation ISO image.<br />
Few details that we already know. It&#8217;s an April Refresh release &#8211; which fixes compatibility issue with Visual Studio 2010 RTM.</p>
<div id="attachment_124" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.sudarpo.net/w/media/2010/05/vs2010-ultimate-wpdt.jpg" rel="lightbox[116]"><img src="http://www.sudarpo.net/w/media/2010/05/vs2010-ultimate-wpdt-300x145.jpg" alt="Visual Studio 2010 - New Project Dialog for Windows Phone" title="Visual Studio 2010 - New Project Dialog for Windows Phone" width="300" height="145" class="size-medium wp-image-124" /></a><p class="wp-caption-text">Visual Studio 2010 - New Project Dialog for Windows Phone</p></div>
<blockquote><p>
<strong>Quick Details</strong><br />
Version:	1.0<br />
Date Published:	4/29/2010<br />
Language:	English</p>
<p><span id="more-116"></span><br />
<strong>Overview</strong><br />
The Windows Phone Developer Tools CTP includes the following</p>
<p>+ Visual Studio 2010 Express for Windows Phone CTP<br />
+ Windows Phone Emulator CTP<br />
+ Silverlight for Windows Phone CTP<br />
+ XNA Game Studio 4.0 CTP
</p></blockquote>
<div id="attachment_125" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.sudarpo.net/w/media/2010/05/installed-list-April-Refresh.jpg" rel="lightbox[116]"><img src="http://www.sudarpo.net/w/media/2010/05/installed-list-April-Refresh-300x110.jpg" alt="Installed List for WPDT CTP April Refresh" title="installed-list April Refresh" width="300" height="110" class="size-medium wp-image-125" /></a><p class="wp-caption-text">Installed List for WPDT CTP April Refresh</p></div>
<p><strong>Update:</strong><br />
Tested this installer in Windows XP. By following <a href="http://blogs.msdn.com/astebner/archive/2010/05/02/10005980.aspx">Aaron&#8217;s Tips</a>, open <strong>&#8220;baseline.dat&#8221;</strong> with Notepad, look for the section named [gencomp7788], change the value InstallOnWinXP from 1 to 0. WPDT CTP can be successfully installed in Windows XP, but <strong>unfortunately</strong> we will not be able to run Windows Phone 7 Simulator as XDE is not compatible with Windows XP.</p>
<p><strong>Update 2:</strong><br />
<a href="http://www.sudarpo.net/2010/07/windows-phone-7-developer-tools-beta-offline-installer/">Latest Beta</a> offline installer is up.</p>
<p><del><br />
<strong>Download &#8211; ISO Size: 428 MB (448,886,784 bytes)</strong><br />
<strong>Mirror 1 &#8211; Deposit Files</strong><br />
<a href="http://depositfiles.com/files/yzqj2dd6b">vmx.part1.rar</a><br />
<a href="http://depositfiles.com/files/yr4a5z44g">vmx.part2.rar</a><br />
<a href="http://depositfiles.com/files/7qdzgk2xf">vmx.part3.rar</a><br />
<a href="http://depositfiles.com/files/jwm046220">vmx.part4.rar</a><br />
<a href="http://depositfiles.com/files/uwlfog4a8">vmx.part5.rar</a></p>
<p><strong>Mirror 2 &#8211; Media Fire</strong><br />
<a href="http://www.mediafire.com/?nddgzumyuzg">vmx.part1.rar-reupload -> rename this to <strong>vmx.part1.rar</strong></a><br />
<a href="http://www.mediafire.com/?njmztqhy2vz">vmx.part2.rar</a><br />
<a href="http://www.mediafire.com/?wajyzggtdny">vmx.part3.rar</a><br />
<a href="http://www.mediafire.com/?zye20mjwiwj">vmx.part4.rar</a><br />
<a href="http://www.mediafire.com/?mjju0owymmy">vmx.part5.rar</a><br />
</del><del><a href="http://www.mediafire.com/file/mhqknmnoog4">vmx.part1.rar &#8211; CRC file error..if you have downloaded this, try RAR repair (read comment below)..</a></p>
<p><strong>Mirror 3 &#8211; MegaUpload</strong><br />
<a href="http://www.megaupload.com/?d=GGVQBGB1">vmx.part1.rar</a><br />
<a href="http://www.megaupload.com/?d=Z8ASA7UX">vmx.part2.rar</a><br />
<a href="http://www.megaupload.com/?d=OB64MCSC">vmx.part3.rar</a><br />
<a href="http://www.megaupload.com/?d=T22R4Q6N">vmx.part4.rar</a><br />
<a href="http://www.megaupload.com/?d=6KLYS42Z">vmx.part5.rar</a></p>
<p>
<strong>ISO checksum:</strong><br />
SHA1: 13faceaed5075b0ad48345e5d027248acd2eb370<br />
CRC: 4BEDC637<br />
MD5: 9600c3cd5eae83dcdb6831b26359b3a1<br />
</del></p>
<p>
<strong>Disclaimer:</strong></p>
<ul>
<li>These files are provided AS-IS. No modification was done to the installer.</li>
<li>This is not an official release from Microsoft.</li>
<li>I should not be liable for any damages to your system.</li>
</ul>
<p><strong>References:</strong></p>
<ul>
<li><a href="http://windowsteamblog.com/blogs/wpdev/">Windows Phone Developer Blog</a></li>
<li><a href="http://msdn.microsoft.com/en-us/library/ff402535%28VS.92%29.aspx">MSDN &#8211; Windows Phone Development</a></li>
<li><a href="http://www.slysoft.com/en/download.html">Mount ISO for free with Virtual CloneDrive</a></li>
<li><a href="http://blogs.msdn.com/astebner/archive/2010/05/02/10005980.aspx">How-to Install WPDT in Windows Server 2008</a></li>
<li>Latest <a href="http://www.sudarpo.net/2010/07/windows-phone-7-developer-tools-beta-offline-installer/">Windows Phone 7 Developer Tools Beta</a> offline installer (July 2010)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.sudarpo.net/2010/05/windows-phone-developer-tools-ctp-offline-installer/feed/</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
		<item>
		<title>.NET Framework Installer</title>
		<link>http://www.sudarpo.net/2010/05/net-framework-installer/</link>
		<comments>http://www.sudarpo.net/2010/05/net-framework-installer/#comments</comments>
		<pubDate>Sat, 01 May 2010 07:01:12 +0000</pubDate>
		<dc:creator>Sudarpo</dc:creator>
				<category><![CDATA[NET 4.0]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[.net 3.5]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[installer]]></category>
		<category><![CDATA[offline]]></category>
		<category><![CDATA[redistributable]]></category>
		<category><![CDATA[standalone]]></category>

		<guid isPermaLink="false">http://www.sudarpo.net/?p=93</guid>
		<description><![CDATA[Here are brief list of all NET Framework Installer up-to-date. I would like to keep this list simple, it might come in handy one day. .NET Framework 4 Standalone Installer Info Direct Download &#8211; x86 &#038; x64 (48.1 MB) .NET Framework 4 Client Profile .NET Framework 3.5 Service Pack 1 Info Direct Download (231 MB) <a href='http://www.sudarpo.net/2010/05/net-framework-installer/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Here are brief list of all NET Framework Installer up-to-date. I would like to keep this list simple, it might come in handy one day.</p>
<p><strong>.NET Framework 4 Standalone Installer</strong></p>
<ul>
<li><a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&#038;FamilyID=0a391abd-25c1-4fc0-919f-b21f31ab88b7">Info</a></li>
<li><a href="http://download.microsoft.com/download/9/5/A/95A9616B-7A37-4AF6-BC36-D6EA96C8DAAE/dotNetFx40_Full_x86_x64.exe">Direct Download &#8211; x86 &#038; x64 (48.1 MB)</a></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=e5ad0459-cbcc-4b4f-97b6-fb17111cf544&#038;displaylang=en">.NET Framework 4 Client Profile</a></li>
</ul>
<p><span id="more-93"></span></p>
<hr />
<strong>.NET Framework 3.5 Service Pack 1</strong></p>
<ul>
<li><a href="http://www.microsoft.com/downloads/details.aspx?familyid=AB99342F-5D1A-413D-8319-81DA479AB0D7&#038;displaylang=en">Info</a></li>
<li><a href="http://download.microsoft.com/download/2/0/e/20e90413-712f-438c-988e-fdaa79a8ac3d/dotnetfx35.exe">Direct Download (231 MB)</a></li>
</ul>
<p><strong>Notes: </strong></p>
<blockquote><p>
1.1. Supported Architectures<br />
•x86<br />
•x64<br />
•ia64 (Windows Server 2008)</p></blockquote>
<p>Please ensure that you read IMPORTANT section!</p>
<blockquote><p>
IMPORTANT: After installing the .NET Framework 3.5 SP1 package (either the bootstrapper or the full package) you should immediately install the update <a href="http://go.microsoft.com/fwlink/?LinkId=136730">KB959209</a> to address a set of known application compatibility issues.<br />
In addition, on Windows Vista x64 and Windows Server 2008 x64, install the update <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=c411b91e-4dab-4550-915c-e119204d0732&#038;displaylang=en">KB967190</a> to address a file association issue for XPS documents.</p></blockquote>
<hr />
<strong>.NET Framework 3.0</strong></p>
<ul>
<li><a href="http://www.microsoft.com/downloads/details.aspx?familyid=10CC340B-F857-4A14-83F5-25634C3BF043&#038;displaylang=en">Info</a></li>
<li><a href="http://go.microsoft.com/fwlink/?LinkId=70848">Direct Download &#8211; x86 (50.3 MB)</a><br /><a href="http://download.microsoft.com/download/3/F/0/3F0A922C-F239-4B9B-9CB0-DF53621C57D9/dotnetfx3.exe">Direct Link</a></li>
<li><a href="http://go.microsoft.com/fwlink/?LinkId=70849">Direct Download &#8211; x64 (90.1 MB)</a><br /><a href="http://download.microsoft.com/download/3/F/0/3F0A922C-F239-4B9B-9CB0-DF53621C57D9/dotnetfx3_x64.exe">Direct Link</a></li>
</ul>
<hr />
<strong>.NET Framework 2.0</strong></p>
<ul>
<li>
<a href="http://www.microsoft.com/downloads/details.aspx?familyid=5b2c0358-915b-4eb5-9b1d-10e506da9d0f&#038;displaylang=en">.NET Framework 2.0 Service Pack 2</a><br />
<a href="http://download.microsoft.com/download/c/6/e/c6e88215-0178-4c6c-b5f3-158ff77b1f38/NetFx20SP2_x64.exe">Direct Download &#8211; x64 Download (46.3 MB)</a><br />
<a href="http://download.microsoft.com/download/c/6/e/c6e88215-0178-4c6c-b5f3-158ff77b1f38/NetFx20SP2_x86.exe">Direct Download &#8211; x86 Download (23.8 MB)</a>
</li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=79BC3B77-E02C-4AD3-AACF-A7633F706BA5&#038;displaylang=en">.NET Framework 2.0 Service Pack 1</a></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?familyid=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&#038;displaylang=en">.NET Framework 2.0 &#8211; x86 (22.4 MB)</a><br />
<a href="http://www.microsoft.com/downloads/details.aspx?familyid=B44A0000-ACF8-4FA1-AFFB-40E78D788B00&#038;displaylang=en">.NET Framework 2.0 &#8211; x64 (45.2 MB)</a></li>
</ul>
<p><strong>Required Download:</strong></p>
<ul>
<li><a href="http://www.microsoft.com/downloads/details.aspx?familyid=889482fc-5f56-4a38-b838-de776fd4138c&#038;displaylang=en">Windows Installer 3.1 Redistributable (v2)</a> <a href="http://download.microsoft.com/download/1/4/7/147ded26-931c-4daf-9095-ec7baf996f46/WindowsInstaller-KB893803-v2-x86.exe">Direct Download (2.5 MB)</a></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?familyid=5A58B56F-60B6-4412-95B9-54D056D6F9F4&#038;displaylang=en">Windows Installer 4.5 Redistributable</a></li>
</ul>
<hr />
<strong>.NET Framework 1.1</strong></p>
<ul>
<li><a href="http://www.microsoft.com/downloads/details.aspx?familyid=262D25E3-F589-4842-8157-034D1E7CF3A3&#038;displaylang=en">Info</a></li>
<li><a href="http://download.microsoft.com/download/a/a/c/aac39226-8825-44ce-90e3-bf8203e74006/dotnetfx.exe">Direct Download (23.1 MB)</a></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&#038;FamilyID=a8f5654f-088e-40b2-bbdb-a83353618b38">NET Framework 1.1 SP1 Info</a><br />
<a href="http://download.microsoft.com/download/8/b/4/8b4addd8-e957-4dea-bdb8-c4e00af5b94b/NDP1.1sp1-KB867460-X86.exe">Direct Download &#8211; x86 (10.2 MB)</a><br />
<a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=AE7EDEF7-2CB7-4864-8623-A1038563DF23&#038;displaylang=en">NET Framework 1.1 Service Pack 1 for Windows Server 2003</a>
</li>
</ul>
<hr />
References:</p>
<ul>
<li><a href="http://www.microsoft.com/net/">Microsoft .NET Framework</a></li>
<li><a href="http://en.wikipedia.org/wiki/.NET_Framework">Wikipedia on .NET Framework</a></li>
<li><a href="http://en.wikipedia.org/wiki/List_of_.NET_Framework_versions ">List of .NET Framework versions</a></li>
<li><a href="http://msdn.microsoft.com/en-us/netframework/default.aspx">MSDN &#8211; .NET Framework Developer Center</a></li>
<li><a href="http://blogs.msdn.com/astebner/pages/9763379.aspx">Sample code to detect .NET Framework install state and service pack level</a></li>
<li><a href="http://blogs.msdn.com/b/astebner/archive/2007/03/14/mailbag-what-version-of-the-net-framework-is-included-in-what-version-of-the-os.aspx">Windows OS and Installed .NET Framework</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.sudarpo.net/2010/05/net-framework-installer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Official or Offical Site of Visual Studio 2010</title>
		<link>http://www.sudarpo.net/2010/04/official-or-offical-vs-2010/</link>
		<comments>http://www.sudarpo.net/2010/04/official-or-offical-vs-2010/#comments</comments>
		<pubDate>Mon, 12 Apr 2010 07:50:55 +0000</pubDate>
		<dc:creator>Sudarpo</dc:creator>
				<category><![CDATA[Rants]]></category>
		<category><![CDATA[april-2010-launch]]></category>
		<category><![CDATA[offical site]]></category>
		<category><![CDATA[official site]]></category>
		<category><![CDATA[Visual Studio 2010]]></category>

		<guid isPermaLink="false">http://www.sudarpo.net/?p=84</guid>
		<description><![CDATA[Today 12 April 2010, is another big day for Microsoft. It&#8217;s official launch date of Visual Studio 2010. Curiously I went to its official site. I was surprised to see the site title wrote &#8220;Microsoft Visual Studio 2010 &#8211; The Offical Site of Visual Studio 2010&#8243;. Come on, Microsoft! You&#8217;ve got to do better than <a href='http://www.sudarpo.net/2010/04/official-or-offical-vs-2010/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Today 12 April 2010, is another big day for Microsoft. It&#8217;s official launch date of Visual Studio 2010. Curiously I went to its <a href="http://www.microsoft.com/visualstudio/en-us/">official site</a>. I was surprised to see the site title wrote &#8220;Microsoft Visual Studio 2010 &#8211; The <strong>Offical</strong> Site of Visual Studio 2010&#8243;. Come on, Microsoft! You&#8217;ve got to do better than that. Where is your word-spelling software? Can&#8217;t Microsoft Word tell you that it&#8217;s wrong ?</p>
<p>Screenshot.<br />
<div id="attachment_85" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.sudarpo.net/w/media/2010/04/offical-title.jpg" rel="lightbox[84]"><img src="http://www.sudarpo.net/w/media/2010/04/offical-title-300x79.jpg" alt="" title="offical-title" width="300" height="79" class="size-medium wp-image-85" /></a><p class="wp-caption-text">Offical on Visual Studio site</p></div></p>
<p>Let&#8217;s take a look at the website source code.</p>
<div id="attachment_86" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.sudarpo.net/w/media/2010/04/offical-source-code.jpg" rel="lightbox[84]"><img src="http://www.sudarpo.net/w/media/2010/04/offical-source-code-300x83.jpg" alt="" title="offical-source-code" width="300" height="83" class="size-medium wp-image-86" /></a><p class="wp-caption-text">Source Code on Offical Site</p></div>
<p>Strangely, Wikipedia acknowledge <a href="http://en.wikipedia.org/wiki/Offical">Offical</a>.</p>
<p>References:</p>
<ul>
<li><a href="http://www.microsoft.com/visualstudio/en-us/">Visual Studio 2010</a></li>
<li><a href="http://en.wikipedia.org/wiki/Offical">Wikipedia on Offical -> Official</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.sudarpo.net/2010/04/official-or-offical-vs-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
