<?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>SODEVE &#187; Software</title>
	<atom:link href="http://sodeve.net/category/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://sodeve.net</link>
	<description>a Software Developer(SODEVE)&#039;s blog recording his journey in pursuit of happyness.</description>
	<lastBuildDate>Fri, 13 Apr 2012 03:24:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How To Change Your WordPress&#8217;s Prev/Next Link Style Using jQuery</title>
		<link>http://sodeve.net/2012/02/how-to-change-your-wordpresss-navigational-style-using-jquery/</link>
		<comments>http://sodeve.net/2012/02/how-to-change-your-wordpresss-navigational-style-using-jquery/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 11:01:27 +0000</pubDate>
		<dc:creator>Hardono</dc:creator>
				<category><![CDATA[Business & Management]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tricks]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://sodeve.net/?p=2434</guid>
		<description><![CDATA[Apparently, the word &#8216;satisfaction&#8217; is not in my dictionary when related to design of this blog. Just last week, after sailing in the sea of Google search result, I was stranded at Guillermo Rauch&#8217;s beautiful blog &#8211;Devthought reading his post about Node.JS. While scrolling ups and downs trying to digest the content, I noticed that [...]
Related posts:<ol>
<li><a href='http://sodeve.net/2009/09/how-to-use-jquery-in-your-wordpress-post/' rel='bookmark' title='How to use jQuery in Your WordPress Post'>How to use jQuery in Your WordPress Post</a></li>
<li><a href='http://sodeve.net/2009/09/how-to-prevent-wordpress-loads-jquery-twice/' rel='bookmark' title='How to Prevent WordPress Loads jQuery Twice'>How to Prevent WordPress Loads jQuery Twice</a></li>
<li><a href='http://sodeve.net/2009/09/using-jquery-to-enhance-google-syntax-highligher-wordpress-plugin/' rel='bookmark' title='Using jQuery to Enhance Google Syntax Highligher WordPress Plugin'>Using jQuery to Enhance Google Syntax Highligher WordPress Plugin</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Apparently, the word &#8216;satisfaction&#8217; is not in my dictionary when related to design of this blog. Just last week, after sailing in the sea of Google search result, I was stranded at Guillermo Rauch&#8217;s beautiful blog &#8211;<a href="http://www.devthought.com" target="_blank">Devthought</a> reading his post about Node.JS.</p>
<p>While scrolling ups and downs trying to digest the content, I noticed that there are left and right navigational buttons which are statically positioned. So even when I scrolled all the way up or down, the buttons will remain at the same position.</p>
<p>I totally bought this very good idea. I realized that this help the readers alot. They did not need to comb through the page to find the previous/next buttons.</p>
<p><img src="http://sodeve.net/wp-content/uploads/2012/02/devthought-nav.png" alt="" title="devthought-nav" width="620" height="326" class="aligncenter size-full wp-image-2439" /></p>
<p>Then I looked back at this very own blog&#8217;s navigational links. To my dismay, they are now looks totally unacceptable <img src='http://sodeve.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  </p>
<p><img src="http://sodeve.net/wp-content/uploads/2012/02/sodeve-nav.png" alt="" title="sodeve-nav" width="620" height="298" class="aligncenter size-full wp-image-2442" /></p>
<p>So, I want to make this blog navigational buttons statically positioned too. But then I remember, visitors to this blog are not all using 24&#8243; wide flat screen. To validate my suspicion, I logged in to Google Analytics and look at the visitors&#8217; browser information.</p>
<p><img src="http://sodeve.net/wp-content/uploads/2012/02/sodeve-browser-stat.png" alt="" title="sodeve-browser-stat" width="620" height="273" class="aligncenter size-full wp-image-2443" /></p>
<p>Aha! Many of this blog&#8217;s visitors are still using resolution with 1024 pixels of width. Considering that this blog requires at least 960 pixels, I need to ensure that this changes only affect those visitors that have enough free pixels on the left and right side for the links. For that very reason, I can&#8217;t do the modification on the WordPress&#8217; template. Hence, jQuery is the only way to go.</p>
<p>In summary, the jQuery script will do the following steps:</p>
<ol>
<li>get the width of browser&#8217;s window.</li>
<li>if have enough space for the links, then set the links into fixed position and then hide the links&#8217; original container.</li>
<li>if not, check whether the links&#8217; container is hidden. If hidden, make it visible and move the links inside</li>
<li>repeat step 1,2,3 when the window is resized</li>
</ol>
<p>To implement this, I need to firstly modify the navigational links in my template&#8217;s <span class="method">index.php</span> and <span class="method">single.php</span>.</p>
<h3>index.php</h3>
<pre name="code" class="html">
&lt;div class=&quot;navigation&quot;  id=&quot;divPostNav&quot;&gt;
	&lt;div id=&quot;divPrev&quot; class=&quot;left&quot;&gt;
		&lt;h3&gt;&lt;?php next_posts_link(__('&amp;laquo; Previous Entries', 'pyrmont_v2')); ?&gt;&lt;/h3&gt;
	&lt;/div&gt;
	&lt;div id=&quot;divNext&quot; class=&quot;right&quot;&gt;
		&lt;h3&gt;&lt;?php previous_posts_link(__('Next Entries &amp;raquo;', 'pyrmont_v2')); ?&gt;&lt;/h3&gt;
	&lt;/div&gt;
	&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
</pre>
<h3>single.php</h3>
<pre name="code" class="html">
&lt;div class=&quot;post&quot; id=&quot;divPostNav&quot;&gt;
	&lt;div class=&quot;navigation&quot;&gt;
	&lt;div id=&quot;divPrev&quot; style=&quot;width:50%&quot; class=&quot;left&quot;&gt;
		&lt;h3&gt;&lt;?php previous_post_link('%link','&amp;lt;&amp;lt; %title'); ?&gt;&lt;/h3&gt;
	&lt;/div&gt;
	&lt;div id=&quot;divNext&quot; style=&quot;width:50%; text-align:right;&quot; class=&quot;right&quot;&gt;
		&lt;h3&gt;&lt;?php next_post_link('%link','%title &amp;gt;&amp;gt;'); ?&gt;&lt;/h3&gt;
	&lt;/div&gt;
	&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
 &lt;/div&gt;
</pre>
<p>Next, I need to add the following script to <span class="method">footer.php</span></p>
<pre name="code" class="js">
if (jQuery)
{
	/* obtain jQuery instance */
	$sdv = jQuery.noConflict();

	/* ensure the links look &#038; feel consistent */
	var formatLink = function(strEl){
		var pEl = $sdv(strEl);
		if (pEl.length>0) {
			pEl.children().children().css('color','#ccc');
			pEl.children().children().hover(
				function(){$sdv(this).css('color','#E1771E');},
				function(){$sdv(this).css('color','#ccc');}
			);
		}
	}
	formatLink("#divPrev");
	formatLink("#divNext");

	var fnModifyNavigation = function(){
		/* obtain window's width */
		var w = $sdv(window).width();
		var hw = (w-970)/2;
		if (hw>200)
		{
			/* we have enough space for the fixed postion links */
			jQFPL($sdv("#divPrev"),'left',0, hw);
			jQFPL($sdv("#divNext"),'right', 0, hw);
			$sdv("#divPostNav").hide();
		}
		else
		{
			/* not enough space for the fixed postion links */
			var divNav = $sdv("#divPostNav");
			if (divNav.length > 0) {
				if (divNav.css('display') == 'none')
				{
					divNav.show();
					divNav.prepend(jQSPL("#divNext", "right"));
					divNav.prepend(jQSPL("#divPrev", "left"));
				}
			}
		}
	}	

	/* jQuery Fixed Position Link */
	var jQFPL = function(el, remClass, absPosPX, width)
	{
		var pEl = el.detach();
		if (pEl) {
			pEl.removeClass(remClass);
			eval("var objStyle = { 'position':'fixed', 'top':'300px', 'width': '"
				+ width + "px', '" + remClass + "':'" + absPosPX+ "px', 'text-align':'"
				+remClass+"'};");
			pEl.css(objStyle);
			pEl.appendTo("body");
		}
	}

	/* jQuery Static Position Link*/
	var jQSPL = function(strEl, strFloat){
		var el = $sdv(strEl).detach();
		el.css('position','static');
		el.css('width','50%');
		el.css('float',strFloat);
		return el;
	}

	/* run position modification routine
		after the document is loaded */
	$sdv(fnModifyNavigation);	

	/* handle the window's resize event
		and run position modification routine again */
	$sdv(window).resize(fnModifyNavigation);
}
</pre>
<p>That&#8217;s all needed to make the prev/next navigational links statically positioned on the screen.</p>
<p>I hope it helps, cheers!</p>
<h3>References</h3>
<blockquote>
<ol>
<li><a href="http://api.jquery.com/category/selectors/" target="_blank">jQuery Selectors</a></li>
<li><a href="http://api.jquery.com/category/css/" target="_blank">jQuery CSS</a></li>
<li><a href="http://api.jquery.com/category/manipulation/" target="_blank">jQuery DOM Manipulation</a></li>
<li><a href="http://api.jquery.com/category/events/" target="_blank">jQuery Events</a></li>
</li>
</ol>
</blockquote>
<h2>Share and Enjoy</h2>

<!-- Start WP Socializer - Social Buttons - Output -->
<div class="wp-socializer 32px">
<ul class="wp-socializer-jump columns-no">
 <li><a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fsodeve.net%2F2012%2F02%2Fhow-to-change-your-wordpresss-navigational-style-using-jquery%2F&amp;t=How+To+Change+Your+WordPress%26%238217%3Bs+Prev%2FNext+Link+Style+Using+jQuery" title="Share this on Facebook" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Facebook" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -330px; border:0;"/></a></li> 

 <li><a href="http://twitter.com/home?status=How+To+Change+Your+WordPress%26%238217%3Bs+Prev%2FNext+Link+Style+Using+jQuery%20-%20http%3A%2F%2Fsodeve.net%3Fp%3D2434%20@sodeve" title="Tweet this !" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Twitter" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -1386px; border:0;"/></a></li> 

 <li><a href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fsodeve.net%2F2012%2F02%2Fhow-to-change-your-wordpresss-navigational-style-using-jquery%2F&amp;title=How+To+Change+Your+WordPress%26%238217%3Bs+Prev%2FNext+Link+Style+Using+jQuery&amp;annotation=Apparently%2C+the+word+%27satisfaction%27+is+not+in+my+dictionary+when+related+to+design+of+this+blog.+Just+last+week%2C+after+sailing+in+the+sea+of+Google+search+result%2C+I+was+stranded+at+Guillermo+Rauch%27s+beautiful+blog+--Devthought+reading+his+post+about+" title="Bookmark this on Google" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Google" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -462px; border:0;"/></a></li> 

 <li><a href="http://delicious.com/post?url=http%3A%2F%2Fsodeve.net%2F2012%2F02%2Fhow-to-change-your-wordpresss-navigational-style-using-jquery%2F&amp;title=How+To+Change+Your+WordPress%26%238217%3Bs+Prev%2FNext+Link+Style+Using+jQuery&amp;notes=Apparently%2C+the+word+%27satisfaction%27+is+not+in+my+dictionary+when+related+to+design+of+this+blog.+Just+last+week%2C+after+sailing+in+the+sea+of+Google+search+result%2C+I+was+stranded+at+Guillermo+Rauch%27s+beautiful+blog+--Devthought+reading+his+post+about+" title="Post this on Delicious" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Delicious" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -132px; border:0;"/></a></li> 

 <li><a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fsodeve.net%2F2012%2F02%2Fhow-to-change-your-wordpresss-navigational-style-using-jquery%2F&amp;title=How+To+Change+Your+WordPress%26%238217%3Bs+Prev%2FNext+Link+Style+Using+jQuery&amp;bodytext=Apparently%2C+the+word+%27satisfaction%27+is+not+in+my+dictionary+when+related+to+design+of+this+blog.+Just+last+week%2C+after+sailing+in+the+sea+of+Google+search+result%2C+I+was+stranded+at+Guillermo+Rauch%27s+beautiful+blog+--Devthought+reading+his+post+about+" title="Submit this to Digg" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Digg" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -231px; border:0;"/></a></li> 

 <li><a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fsodeve.net%2F2012%2F02%2Fhow-to-change-your-wordpresss-navigational-style-using-jquery%2F&amp;title=How+To+Change+Your+WordPress%26%238217%3Bs+Prev%2FNext+Link+Style+Using+jQuery" title="Submit this to StumbleUpon" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="StumbleUpon" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -1287px; border:0;"/></a></li> 

 <li><a href="http://sodeve.net/2012/02/how-to-change-your-wordpresss-navigational-style-using-jquery/" onclick="addBookmark(event);" title="How To Change Your WordPress&#8217;s Prev/Next Link Style Using jQuery" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Add to favorites" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -0px; border:0;"/></a></li> 

 <li><a href="mailto:subject=How To Change Your WordPress&#8217;s Prev/Next Link Style Using jQuery&amp;body=Apparently, the word 'satisfaction' is not in my dictionary when related to design of this blog. Just last week, after sailing in the sea of Google search result, I was stranded at Guillermo Rauch's beautiful blog --Devthought reading his post about  - http://sodeve.net/2012/02/how-to-change-your-wordpresss-navigational-style-using-jquery/" title="Email this" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Email" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -297px; border:0;"/></a></li> 

 <li><a href="http://sodeve.net/feed/rss/" title="Subscribe to RSS" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="RSS" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -1221px; border:0;"/></a></li> 
</ul> 
<div class="wp-socializer-clearer"></div></div>
<!-- End WP Socializer - Social Buttons - Output -->
<p>Related posts:</p><ol>
<li><a href='http://sodeve.net/2009/09/how-to-use-jquery-in-your-wordpress-post/' rel='bookmark' title='How to use jQuery in Your WordPress Post'>How to use jQuery in Your WordPress Post</a></li>
<li><a href='http://sodeve.net/2009/09/how-to-prevent-wordpress-loads-jquery-twice/' rel='bookmark' title='How to Prevent WordPress Loads jQuery Twice'>How to Prevent WordPress Loads jQuery Twice</a></li>
<li><a href='http://sodeve.net/2009/09/using-jquery-to-enhance-google-syntax-highligher-wordpress-plugin/' rel='bookmark' title='Using jQuery to Enhance Google Syntax Highligher WordPress Plugin'>Using jQuery to Enhance Google Syntax Highligher WordPress Plugin</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://sodeve.net/2012/02/how-to-change-your-wordpresss-navigational-style-using-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Instant Hosts File Switcher For Windows &amp; Ubuntu</title>
		<link>http://sodeve.net/2012/02/instant-hosts-file-switcher-for-windows-ubuntu/</link>
		<comments>http://sodeve.net/2012/02/instant-hosts-file-switcher-for-windows-ubuntu/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 13:07:00 +0000</pubDate>
		<dc:creator>Hardono</dc:creator>
				<category><![CDATA[Operating System]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tricks]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[ubuntu linux]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://sodeve.net/?p=2426</guid>
		<description><![CDATA[Dear Readers, Today I want to share with you a very useful tool to instantly switch your Windows/Ubuntu hosts file. If you&#8217;re unfamiliar with the term &#8216;hosts file&#8217;, this WIKI should help. Anyway, by using this tool you can immediately switch to a new hosts file, by at most two clicks of mouse (actually, it [...]
Related posts:<ol>
<li><a href='http://sodeve.net/2007/12/foxit-reader-on-ubuntu-linux-through-wine/' rel='bookmark' title='Foxit Reader on Ubuntu Linux (through Wine)'>Foxit Reader on Ubuntu Linux (through Wine)</a></li>
<li><a href='http://sodeve.net/2007/03/create-drag-and-drog-file-path-locator/' rel='bookmark' title='Create Drag-and-Drog File Path Locator'>Create Drag-and-Drog File Path Locator</a></li>
<li><a href='http://sodeve.net/2007/04/reading-csv-file-with-net/' rel='bookmark' title='Reading CSV File with .NET'>Reading CSV File with .NET</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Dear Readers,</p>
<p>Today I want to share with you a very useful tool to instantly switch your Windows/Ubuntu hosts file. If you&#8217;re unfamiliar with the term &#8216;hosts file&#8217;, this <a href="http://hostprofiles.codeplex.com/wikipage?title=Hosts%20file" target="_blank">WIKI</a> should help. </p>
<p>Anyway, by using this tool you can immediately switch to a new hosts file, by at most two clicks of mouse (actually, it is one click and one double-clicks <img src='http://sodeve.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> ). No installation needed, but you will need a full-write access to your hosts file.</p>
<p>Other than that, depending on your Operating System, you might need:</p>
<ul>
<li>Windows:
<ul>
<li>.Net framework 2.0 and upper.</li>
</ul>
</li>
<li>Linux:
<ul>
<li>Mono 1.2 and upper</li>
<li>root access</li>
<li>nscd Service</li>
<li>ifconfig commmand</li>
</ul>
</li>
</ul>
<p>Here is how the main interface looks like:</p>
<p><a href="http://sodeve.net/wp-content/uploads/2012/02/host.profile.management.png"><img src="http://sodeve.net/wp-content/uploads/2012/02/host.profile.management-300x164.png" alt="" title="host.profile.management" width="300" height="164" class="aligncenter size-medium wp-image-2429" /></a></p>
<p>Really simple right? </p>
<p>Interested? You can visit and download it at: <a href="http://hostprofiles.codeplex.com/" target="_blank">Host Profiles @ Codeplex </a>. It&#8217;s FREE! And it&#8217;s open source too. </p>
<p>Have a great weekend everyone, Cheers!</p>
<h2>Share and Enjoy</h2>

<!-- Start WP Socializer - Social Buttons - Output -->
<div class="wp-socializer 32px">
<ul class="wp-socializer-jump columns-no">
 <li><a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fsodeve.net%2F2012%2F02%2Finstant-hosts-file-switcher-for-windows-ubuntu%2F&amp;t=Instant+Hosts+File+Switcher+For+Windows+%26%23038%3B+Ubuntu" title="Share this on Facebook" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Facebook" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -330px; border:0;"/></a></li> 

 <li><a href="http://twitter.com/home?status=Instant+Hosts+File+Switcher+For+Windows+%26%23038%3B+Ubuntu%20-%20http%3A%2F%2Fsodeve.net%3Fp%3D2426%20@sodeve" title="Tweet this !" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Twitter" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -1386px; border:0;"/></a></li> 

 <li><a href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fsodeve.net%2F2012%2F02%2Finstant-hosts-file-switcher-for-windows-ubuntu%2F&amp;title=Instant+Hosts+File+Switcher+For+Windows+%26%23038%3B+Ubuntu&amp;annotation=Dear+Readers%2C%0D%0A%0D%0AToday+I+want+to+share+with+you+a+very+useful+tool+to+instantly+switch+your+Windows%2FUbuntu+hosts+file.+If+you%27re+unfamiliar+with+the+term+%27hosts+file%27%2C+this+WIKI+should+help.+%0D%0A%0D%0AAnyway%2C+by+using+this+tool+you+can+immediately+switch+t" title="Bookmark this on Google" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Google" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -462px; border:0;"/></a></li> 

 <li><a href="http://delicious.com/post?url=http%3A%2F%2Fsodeve.net%2F2012%2F02%2Finstant-hosts-file-switcher-for-windows-ubuntu%2F&amp;title=Instant+Hosts+File+Switcher+For+Windows+%26%23038%3B+Ubuntu&amp;notes=Dear+Readers%2C%0D%0A%0D%0AToday+I+want+to+share+with+you+a+very+useful+tool+to+instantly+switch+your+Windows%2FUbuntu+hosts+file.+If+you%27re+unfamiliar+with+the+term+%27hosts+file%27%2C+this+WIKI+should+help.+%0D%0A%0D%0AAnyway%2C+by+using+this+tool+you+can+immediately+switch+t" title="Post this on Delicious" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Delicious" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -132px; border:0;"/></a></li> 

 <li><a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fsodeve.net%2F2012%2F02%2Finstant-hosts-file-switcher-for-windows-ubuntu%2F&amp;title=Instant+Hosts+File+Switcher+For+Windows+%26%23038%3B+Ubuntu&amp;bodytext=Dear+Readers%2C%0D%0A%0D%0AToday+I+want+to+share+with+you+a+very+useful+tool+to+instantly+switch+your+Windows%2FUbuntu+hosts+file.+If+you%27re+unfamiliar+with+the+term+%27hosts+file%27%2C+this+WIKI+should+help.+%0D%0A%0D%0AAnyway%2C+by+using+this+tool+you+can+immediately+switch+t" title="Submit this to Digg" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Digg" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -231px; border:0;"/></a></li> 

 <li><a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fsodeve.net%2F2012%2F02%2Finstant-hosts-file-switcher-for-windows-ubuntu%2F&amp;title=Instant+Hosts+File+Switcher+For+Windows+%26%23038%3B+Ubuntu" title="Submit this to StumbleUpon" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="StumbleUpon" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -1287px; border:0;"/></a></li> 

 <li><a href="http://sodeve.net/2012/02/instant-hosts-file-switcher-for-windows-ubuntu/" onclick="addBookmark(event);" title="Instant Hosts File Switcher For Windows &#038; Ubuntu" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Add to favorites" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -0px; border:0;"/></a></li> 

 <li><a href="mailto:subject=Instant Hosts File Switcher For Windows &#038; Ubuntu&amp;body=Dear Readers,

Today I want to share with you a very useful tool to instantly switch your Windows/Ubuntu hosts file. If you're unfamiliar with the term 'hosts file', this WIKI should help. 

Anyway, by using this tool you can immediately switch t - http://sodeve.net/2012/02/instant-hosts-file-switcher-for-windows-ubuntu/" title="Email this" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Email" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -297px; border:0;"/></a></li> 

 <li><a href="http://sodeve.net/feed/rss/" title="Subscribe to RSS" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="RSS" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -1221px; border:0;"/></a></li> 
</ul> 
<div class="wp-socializer-clearer"></div></div>
<!-- End WP Socializer - Social Buttons - Output -->
<p>Related posts:</p><ol>
<li><a href='http://sodeve.net/2007/12/foxit-reader-on-ubuntu-linux-through-wine/' rel='bookmark' title='Foxit Reader on Ubuntu Linux (through Wine)'>Foxit Reader on Ubuntu Linux (through Wine)</a></li>
<li><a href='http://sodeve.net/2007/03/create-drag-and-drog-file-path-locator/' rel='bookmark' title='Create Drag-and-Drog File Path Locator'>Create Drag-and-Drog File Path Locator</a></li>
<li><a href='http://sodeve.net/2007/04/reading-csv-file-with-net/' rel='bookmark' title='Reading CSV File with .NET'>Reading CSV File with .NET</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://sodeve.net/2012/02/instant-hosts-file-switcher-for-windows-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Download Data Terbaru Sertifikasi Guru 2012</title>
		<link>http://sodeve.net/2011/11/download-data-terbaru-sertifikasi-guru-2012/</link>
		<comments>http://sodeve.net/2011/11/download-data-terbaru-sertifikasi-guru-2012/#comments</comments>
		<pubDate>Sun, 13 Nov 2011 17:14:20 +0000</pubDate>
		<dc:creator>Hardono</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[indonesia]]></category>

		<guid isPermaLink="false">http://sodeve.net/?p=1656</guid>
		<description><![CDATA[Setelah melakukan pengecekan data, rupanya PusBangProDik telah mengupdate data mereka. Sebetulnya saya ingin download semua data yang baru dan mengupdate semua blog post yang sudah ada, tapi kok kayaknya bakal makan waktu yang banyak ya . Maka saya memutuskan untuk membuat program yang bisa langsung dipakai di website ini, itung-itung sambil belajar Flex Programming. Untuk [...]
Related posts:<ol>
<li><a href='http://sodeve.net/2011/11/download-daftar-bakal-calon-peserta-sertifikasi-guru-2012-dki-jakarta/' rel='bookmark' title='Download Daftar Bakal Calon Peserta Sertifikasi Guru 2012 DKI Jakarta'>Download Daftar Bakal Calon Peserta Sertifikasi Guru 2012 DKI Jakarta</a></li>
<li><a href='http://sodeve.net/2011/11/download-daftar-bakal-calon-peserta-sertifikasi-guru-2012-propinsi-bali/' rel='bookmark' title='Download Daftar Bakal Calon Peserta Sertifikasi Guru 2012 Propinsi Bali'>Download Daftar Bakal Calon Peserta Sertifikasi Guru 2012 Propinsi Bali</a></li>
<li><a href='http://sodeve.net/2011/11/download-daftar-bakal-calon-peserta-sertifikasi-guru-2012-propinsi-gorontalo/' rel='bookmark' title='Download Daftar Bakal Calon Peserta Sertifikasi Guru 2012 Propinsi GORONTALO'>Download Daftar Bakal Calon Peserta Sertifikasi Guru 2012 Propinsi GORONTALO</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://sodeve.net/2011/11/download-data-terbaru-sertifikasi-guru-2012"><img src="http://sodeve.net/wp-content/uploads/2011/11/kemendiknas.png" alt="" title="kemendiknas" width="120" height="122" class="alignleft size-full wp-image-1454" /></a>Setelah melakukan pengecekan data, rupanya <a href="http://www.sergur.pusbangprodik.org/" title="Pusat Pengembangan Profesi Pendidik" target="_blank">PusBangProDik</a> telah mengupdate data mereka.</p>
<p>Sebetulnya saya ingin download semua data yang baru dan mengupdate semua blog post yang sudah ada, tapi kok kayaknya bakal makan waktu yang banyak ya <img src='http://sodeve.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> . Maka saya memutuskan untuk membuat program yang bisa langsung dipakai di website ini, itung-itung sambil belajar Flex Programming.</p>
<p>Untuk bisa menjalankan program ini, Flash Player (minimal ver 10.2) diperlukan. Langkah untuk mengunduh data cukup singkat:</p>
<ol>
<li>Pilih Propinsi</li>
<li>Pilih Kabupaten</li>
<li>Tekan Download button</li>
<li>Tunggu sampai download selesai, kemudian tekan Save As button</li>
<li>Pop-up window akan keluar, sekarang pilih lokasi untuk menyimpan file, dan tekan Save button</li>
</ol>
<h3>Informasi Kelulusan UKA: <a href="http://sodeve.net/2012/04/download-daftar-kelulusan-peserta-uji-kompetensi-awal-uka-sertifikasi-guru-2012-versi-komplit/" title="Download Daftar Kelulusan Peserta Uji Kompetensi Awal (UKA) Sertifikasi Guru 2012 – Versi Komplit">Download Daftar Kelulusan Peserta Uji Kompetensi Awal (UKA) Sertifikasi Guru 2012 – Versi Komplit</a></h3>
<div class="sdvExp" id="sert-depag">
<p>&nbsp;</p>
<h3 style="color:#e08e1b">Download Daftar Sementara Calon Peserta Sertifikasi Guru Departement Agama (DEPAG) 2012 [klik disini]</h3>
</div>
<div class="child-sert-depag">
<ul class="dlm_download_list"><li><a class="downloadlink" href="http://sodeve.net/downloadz/Daftar+Sementara+Calon+Peserta+Sertifikasi+Guru+DEPAG+2012+Prop.+Aceh" title=" downloaded 384 times" >Daftar Sementara Calon Peserta Sertifikasi Guru DEPAG 2012 Prop. Aceh (384)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Daftar+Sementara+Calon+Peserta+Sertifikasi+Guru+DEPAG+2012+Prop.+Bali" title=" downloaded 155 times" >Daftar Sementara Calon Peserta Sertifikasi Guru DEPAG 2012 Prop. Bali (155)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Daftar+Sementara+Calon+Peserta+Sertifikasi+Guru+DEPAG+2012+Prop.+Bangka+Belitung" title=" downloaded 74 times" >Daftar Sementara Calon Peserta Sertifikasi Guru DEPAG 2012 Prop. Bangka Belitung (74)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Daftar+Sementara+Calon+Peserta+Sertifikasi+Guru+DEPAG+2012+Prop.+Banten" title=" downloaded 702 times" >Daftar Sementara Calon Peserta Sertifikasi Guru DEPAG 2012 Prop. Banten (702)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Daftar+Sementara+Calon+Peserta+Sertifikasi+Guru+DEPAG+2012+Prop.+Bengkulu" title=" downloaded 273 times" >Daftar Sementara Calon Peserta Sertifikasi Guru DEPAG 2012 Prop. Bengkulu (273)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Daftar+Sementara+Calon+Peserta+Sertifikasi+Guru+DEPAG+2012+Prop.+DKI+Jakarta" title=" downloaded 363 times" >Daftar Sementara Calon Peserta Sertifikasi Guru DEPAG 2012 Prop. DKI Jakarta (363)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Daftar+Sementara+Calon+Peserta+Sertifikasi+Guru+DEPAG+2012+Prop.+Gorontalo" title=" downloaded 63 times" >Daftar Sementara Calon Peserta Sertifikasi Guru DEPAG 2012 Prop. Gorontalo (63)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Daftar+Sementara+Calon+Peserta+Sertifikasi+Guru+DEPAG+2012+Prop.+Jambi" title=" downloaded 146 times" >Daftar Sementara Calon Peserta Sertifikasi Guru DEPAG 2012 Prop. Jambi (146)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Daftar+Sementara+Calon+Peserta+Sertifikasi+Guru+DEPAG+2012+Prop.+Jawa+Barat" title=" downloaded 2756 times" >Daftar Sementara Calon Peserta Sertifikasi Guru DEPAG 2012 Prop. Jawa Barat (2756)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Daftar+Sementara+Calon+Peserta+Sertifikasi+Guru+DEPAG+2012+Prop.+Jawa+Tengah" title=" downloaded 3003 times" >Daftar Sementara Calon Peserta Sertifikasi Guru DEPAG 2012 Prop. Jawa Tengah (3003)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Daftar+Sementara+Calon+Peserta+Sertifikasi+Guru+DEPAG+2012+Prop.+Jawa+Timur" title=" downloaded 7267 times" >Daftar Sementara Calon Peserta Sertifikasi Guru DEPAG 2012 Prop. Jawa Timur (7267)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Daftar+Sementara+Calon+Peserta+Sertifikasi+Guru+DEPAG+2012+Prop.+Kalimantan+Barat" title=" downloaded 175 times" >Daftar Sementara Calon Peserta Sertifikasi Guru DEPAG 2012 Prop. Kalimantan Barat (175)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Daftar+Sementara+Calon+Peserta+Sertifikasi+Guru+DEPAG+2012+Prop.+Kalimantan+Selatan" title=" downloaded 167 times" >Daftar Sementara Calon Peserta Sertifikasi Guru DEPAG 2012 Prop. Kalimantan Selatan (167)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Daftar+Sementara+Calon+Peserta+Sertifikasi+Guru+DEPAG+2012+Prop.+Kalimantan+Tengah" title=" downloaded 122 times" >Daftar Sementara Calon Peserta Sertifikasi Guru DEPAG 2012 Prop. Kalimantan Tengah (122)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Daftar+Sementara+Calon+Peserta+Sertifikasi+Guru+DEPAG+2012+Prop.+Kalimantan+Timur" title=" downloaded 78 times" >Daftar Sementara Calon Peserta Sertifikasi Guru DEPAG 2012 Prop. Kalimantan Timur (78)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Daftar+Sementara+Calon+Peserta+Sertifikasi+Guru+DEPAG+2012+Prop.+Kepulauan+Riau" title=" downloaded 63 times" >Daftar Sementara Calon Peserta Sertifikasi Guru DEPAG 2012 Prop. Kepulauan Riau (63)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Daftar+Sementara+Calon+Peserta+Sertifikasi+Guru+DEPAG+2012+Prop.+Lampung" title=" downloaded 1934 times" >Daftar Sementara Calon Peserta Sertifikasi Guru DEPAG 2012 Prop. Lampung (1934)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Daftar+Sementara+Calon+Peserta+Sertifikasi+Guru+DEPAG+2012+Prop.+Maluku+Utara" title=" downloaded 42 times" >Daftar Sementara Calon Peserta Sertifikasi Guru DEPAG 2012 Prop. Maluku Utara (42)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Daftar+Sementara+Calon+Peserta+Sertifikasi+Guru+DEPAG+2012+Prop.+Maluku" title=" downloaded 44 times" >Daftar Sementara Calon Peserta Sertifikasi Guru DEPAG 2012 Prop. Maluku (44)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Daftar+Sementara+Calon+Peserta+Sertifikasi+Guru+DEPAG+2012+Prop.+Nusa+Tenggara+Barat" title=" downloaded 278 times" >Daftar Sementara Calon Peserta Sertifikasi Guru DEPAG 2012 Prop. Nusa Tenggara Barat (278)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Daftar+Sementara+Calon+Peserta+Sertifikasi+Guru+DEPAG+2012+Prop.+Nusa+Tenggara+Timur" title=" downloaded 58 times" >Daftar Sementara Calon Peserta Sertifikasi Guru DEPAG 2012 Prop. Nusa Tenggara Timur (58)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Daftar+Sementara+Calon+Peserta+Sertifikasi+Guru+DEPAG+2012+Prop.+Papua+Barat" title=" downloaded 32 times" >Daftar Sementara Calon Peserta Sertifikasi Guru DEPAG 2012 Prop. Papua Barat (32)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Daftar+Sementara+Calon+Peserta+Sertifikasi+Guru+DEPAG+2012+Prop.+Papua" title=" downloaded 60 times" >Daftar Sementara Calon Peserta Sertifikasi Guru DEPAG 2012 Prop. Papua (60)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Daftar+Sementara+Calon+Peserta+Sertifikasi+Guru+DEPAG+2012+Prop.+Riau" title=" downloaded 188 times" >Daftar Sementara Calon Peserta Sertifikasi Guru DEPAG 2012 Prop. Riau (188)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Daftar+Sementara+Calon+Peserta+Sertifikasi+Guru+DEPAG+2012+Prop.+Sulawesi+Barat" title=" downloaded 254 times" >Daftar Sementara Calon Peserta Sertifikasi Guru DEPAG 2012 Prop. Sulawesi Barat (254)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Daftar+Sementara+Calon+Peserta+Sertifikasi+Guru+DEPAG+2012+Prop.+Sulawesi+Selatan" title=" downloaded 1858 times" >Daftar Sementara Calon Peserta Sertifikasi Guru DEPAG 2012 Prop. Sulawesi Selatan (1858)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Daftar+Sementara+Calon+Peserta+Sertifikasi+Guru+DEPAG+2012+Prop.+Sulawesi+Tengah" title=" downloaded 148 times" >Daftar Sementara Calon Peserta Sertifikasi Guru DEPAG 2012 Prop. Sulawesi Tengah (148)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Daftar+Sementara+Calon+Peserta+Sertifikasi+Guru+DEPAG+2012+Prop.+Sulawesi+Tenggara" title=" downloaded 97 times" >Daftar Sementara Calon Peserta Sertifikasi Guru DEPAG 2012 Prop. Sulawesi Tenggara (97)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Daftar+Sementara+Calon+Peserta+Sertifikasi+Guru+DEPAG+2012+Prop.+Sulawesi+Utara" title=" downloaded 154 times" >Daftar Sementara Calon Peserta Sertifikasi Guru DEPAG 2012 Prop. Sulawesi Utara (154)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Daftar+Sementara+Calon+Peserta+Sertifikasi+Guru+DEPAG+2012+Prop.+Sumatera+Barat" title=" downloaded 311 times" >Daftar Sementara Calon Peserta Sertifikasi Guru DEPAG 2012 Prop. Sumatera Barat (311)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Daftar+Sementara+Calon+Peserta+Sertifikasi+Guru+DEPAG+2012+Prop.+Sumatera+Selatan" title=" downloaded 236 times" >Daftar Sementara Calon Peserta Sertifikasi Guru DEPAG 2012 Prop. Sumatera Selatan (236)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Daftar+Sementara+Calon+Peserta+Sertifikasi+Guru+DEPAG+2012+Prop.+Sumatera+Utara" title=" downloaded 843 times" >Daftar Sementara Calon Peserta Sertifikasi Guru DEPAG 2012 Prop. Sumatera Utara (843)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Daftar+Sementara+Calon+Peserta+Sertifikasi+Guru+DEPAG+2012+Prop.+DI.+Yogyakarta" title=" downloaded 95 times" >Daftar Sementara Calon Peserta Sertifikasi Guru DEPAG 2012 Prop. DI. Yogyakarta (95)</a></li></ul>
</div>
<p><script type="text/javascript" src="/js/flash.loader.0.js"></script>
<div id="flashSertifikasiDownloader">
<p>To view this page ensure that Adobe Flash Player version 10.2.0 or greater is installed. </p>
<p>            <script type="text/javascript" src="/js/flash.loader.js"></script></div>
<p>        <noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="493" height="332" id="Downloader"><param name="movie" value="/swf/Downloader.20111227.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#3a3737" /><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><!--[if !IE]>&#8211;><object type="application/x-shockwave-flash" data="/swf/Downloader.20111227.swf" width="493" height="332"><param name="quality" value="high" /><param name="bgcolor" value="#3a3737" /><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><!--<![endif]--><!--[if gte IE 6]>&#8211;>
<p>Either scripts and active content are not permitted to run or Adobe Flash Player version 10.2.0 or greater is not installed. </p>
<p><!--<![endif]--><a href="http://www.adobe.com/go/getflashplayer">                 <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash Player" /></a><!--[if !IE]>&#8211;></object><!--<![endif]--></object></noscript>   </p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Semoga bisa membantu bapak/ibu guru sekalian <img src='http://sodeve.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<h3>UPDATE</h3>
<p><del>My apology <img src='http://sodeve.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  Apparently Adobe Flash cannot download HTML file from other domain. That&#8217;s why the Flash form above doesn&#8217;t work. Let me find another way to download the latest Sertifikasi 2012 data.</del></p>
<p>I did a work around, by creating a cached proxy, here at <a href="http://sodeve.net" title="SODEVE">sodeve.net</a>. The proxy basically is a simple PHP&#8217;s curl method call. The cache will be refreshed daily.</p>
<h3>UPDATE 23 Nov 2011</h3>
<p>I just realized that my proxy didn&#8217;t set the expired header for the content retrieved. Thus, you may <strong>NOT</strong> get the latest data. So if you have ever dowloaded data from here, <strong>you NEED to clear your browser&#8217;s cache</strong>.</p>
<h3>UPDATE 27 Dec 2011</h3>
<ol>
<li>Memperbaiki bug dimana halaman terakhir tidak diikutkan.</li>
<li>Memperlihatkan jumlah Kuota</li>
</ol>
<h3>UPDATE 5 April 2012</h3>
<ol>
<li>Mengkoreksi Download Files utk Sertifikasi Guru Departement Agama (Depag) 2012</li>
</ol>
<p><strong>PENTING:</strong> Untuk memastikan anda mendapatkan data terbaru, anda perlu membersihkan <em>cache</em> browser anda. </p>
<h2>Share and Enjoy</h2>

<!-- Start WP Socializer - Social Buttons - Output -->
<div class="wp-socializer 32px">
<ul class="wp-socializer-jump columns-no">
 <li><a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fsodeve.net%2F2011%2F11%2Fdownload-data-terbaru-sertifikasi-guru-2012%2F&amp;t=Download+Data+Terbaru+Sertifikasi+Guru+2012" title="Share this on Facebook" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Facebook" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -330px; border:0;"/></a></li> 

 <li><a href="http://twitter.com/home?status=Download+Data+Terbaru+Sertifikasi+Guru+2012%20-%20http%3A%2F%2Fsodeve.net%3Fp%3D1656%20@sodeve" title="Tweet this !" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Twitter" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -1386px; border:0;"/></a></li> 

 <li><a href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fsodeve.net%2F2011%2F11%2Fdownload-data-terbaru-sertifikasi-guru-2012%2F&amp;title=Download+Data+Terbaru+Sertifikasi+Guru+2012&amp;annotation=Setelah+melakukan+pengecekan+data%2C+rupanya+PusBangProDik+telah+mengupdate+data+mereka.%0D%0A+%0D%0ASebetulnya+saya+ingin+download+semua+data+yang+baru+dan+mengupdate+semua+blog+post+yang+sudah+ada%2C+tapi+kok+kayaknya+bakal+makan+waktu+yang+banyak+ya+%3AD.+Maka+" title="Bookmark this on Google" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Google" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -462px; border:0;"/></a></li> 

 <li><a href="http://delicious.com/post?url=http%3A%2F%2Fsodeve.net%2F2011%2F11%2Fdownload-data-terbaru-sertifikasi-guru-2012%2F&amp;title=Download+Data+Terbaru+Sertifikasi+Guru+2012&amp;notes=Setelah+melakukan+pengecekan+data%2C+rupanya+PusBangProDik+telah+mengupdate+data+mereka.%0D%0A+%0D%0ASebetulnya+saya+ingin+download+semua+data+yang+baru+dan+mengupdate+semua+blog+post+yang+sudah+ada%2C+tapi+kok+kayaknya+bakal+makan+waktu+yang+banyak+ya+%3AD.+Maka+" title="Post this on Delicious" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Delicious" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -132px; border:0;"/></a></li> 

 <li><a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fsodeve.net%2F2011%2F11%2Fdownload-data-terbaru-sertifikasi-guru-2012%2F&amp;title=Download+Data+Terbaru+Sertifikasi+Guru+2012&amp;bodytext=Setelah+melakukan+pengecekan+data%2C+rupanya+PusBangProDik+telah+mengupdate+data+mereka.%0D%0A+%0D%0ASebetulnya+saya+ingin+download+semua+data+yang+baru+dan+mengupdate+semua+blog+post+yang+sudah+ada%2C+tapi+kok+kayaknya+bakal+makan+waktu+yang+banyak+ya+%3AD.+Maka+" title="Submit this to Digg" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Digg" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -231px; border:0;"/></a></li> 

 <li><a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fsodeve.net%2F2011%2F11%2Fdownload-data-terbaru-sertifikasi-guru-2012%2F&amp;title=Download+Data+Terbaru+Sertifikasi+Guru+2012" title="Submit this to StumbleUpon" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="StumbleUpon" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -1287px; border:0;"/></a></li> 

 <li><a href="http://sodeve.net/2011/11/download-data-terbaru-sertifikasi-guru-2012/" onclick="addBookmark(event);" title="Download Data Terbaru Sertifikasi Guru 2012" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Add to favorites" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -0px; border:0;"/></a></li> 

 <li><a href="mailto:subject=Download Data Terbaru Sertifikasi Guru 2012&amp;body=Setelah melakukan pengecekan data, rupanya PusBangProDik telah mengupdate data mereka.
 
Sebetulnya saya ingin download semua data yang baru dan mengupdate semua blog post yang sudah ada, tapi kok kayaknya bakal makan waktu yang banyak ya :D. Maka  - http://sodeve.net/2011/11/download-data-terbaru-sertifikasi-guru-2012/" title="Email this" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Email" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -297px; border:0;"/></a></li> 

 <li><a href="http://sodeve.net/feed/rss/" title="Subscribe to RSS" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="RSS" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -1221px; border:0;"/></a></li> 
</ul> 
<div class="wp-socializer-clearer"></div></div>
<!-- End WP Socializer - Social Buttons - Output -->
<p>Related posts:</p><ol>
<li><a href='http://sodeve.net/2011/11/download-daftar-bakal-calon-peserta-sertifikasi-guru-2012-dki-jakarta/' rel='bookmark' title='Download Daftar Bakal Calon Peserta Sertifikasi Guru 2012 DKI Jakarta'>Download Daftar Bakal Calon Peserta Sertifikasi Guru 2012 DKI Jakarta</a></li>
<li><a href='http://sodeve.net/2011/11/download-daftar-bakal-calon-peserta-sertifikasi-guru-2012-propinsi-bali/' rel='bookmark' title='Download Daftar Bakal Calon Peserta Sertifikasi Guru 2012 Propinsi Bali'>Download Daftar Bakal Calon Peserta Sertifikasi Guru 2012 Propinsi Bali</a></li>
<li><a href='http://sodeve.net/2011/11/download-daftar-bakal-calon-peserta-sertifikasi-guru-2012-propinsi-gorontalo/' rel='bookmark' title='Download Daftar Bakal Calon Peserta Sertifikasi Guru 2012 Propinsi GORONTALO'>Download Daftar Bakal Calon Peserta Sertifikasi Guru 2012 Propinsi GORONTALO</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://sodeve.net/2011/11/download-data-terbaru-sertifikasi-guru-2012/feed/</wfw:commentRss>
		<slash:comments>63</slash:comments>
		</item>
		<item>
		<title>Installing VirtualBox In Windows</title>
		<link>http://sodeve.net/2011/10/installing-virtualbox-in-windows/</link>
		<comments>http://sodeve.net/2011/10/installing-virtualbox-in-windows/#comments</comments>
		<pubDate>Wed, 12 Oct 2011 11:00:38 +0000</pubDate>
		<dc:creator>Hardono</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[virtualbox]]></category>
		<category><![CDATA[virtualization]]></category>

		<guid isPermaLink="false">http://sodeve.net/?p=1373</guid>
		<description><![CDATA[VirtualBox is a powerful x86 and AMD64/Intel64 virtualization product for enterprise as well as home use. Not only is VirtualBox an extremely feature rich, high performance product for enterprise customers, it is also the only professional solution that is freely available as Open Source Software under the terms of the GNU General Public License (GPL) [...]
Related posts:<ol>
<li><a href='http://sodeve.net/2011/01/windows-oracle-clients-download/' rel='bookmark' title='Windows Oracle Clients Download'>Windows Oracle Clients Download</a></li>
<li><a href='http://sodeve.net/2009/06/indonesia-won-global-enterprise-challenge-gec-2009/' rel='bookmark' title='Indonesia Won Global Enterprise Challenge (GEC) 2009'>Indonesia Won Global Enterprise Challenge (GEC) 2009</a></li>
<li><a href='http://sodeve.net/2011/09/windows-8-x64-developer-preview-w-developer-tools-is-not-working-with-vmware-player/' rel='bookmark' title='Windows 8 x64 Developer Preview w/ developer tools is not working with VMWare Player'>Windows 8 x64 Developer Preview w/ developer tools is not working with VMWare Player</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<blockquote><p>
<a href="https://www.virtualbox.org/" title="VirtualBox" target="_blank">VirtualBox</a> is a powerful x86 and AMD64/Intel64 virtualization product for enterprise as well as home use. Not only is VirtualBox an extremely feature rich, high performance product for enterprise customers, it is also the only professional solution that is freely available as Open Source Software under the terms of the GNU General Public License (GPL) version 2.
</p></blockquote>
<p>Between VMWare Workstation and VirtualBox, I prefer the later. Mainly because it&#8217;s free <img src='http://sodeve.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> . It&#8217;s also sufficient to my need, which is pretty basic. I want to have a mini environment with a number of different database servers to test my application at home. </p>
<p>Anyway, the installation is really straight forward. Just by clicking Next buttons and Yes buttons, I think you should get your VirtualBox up and running.</p>
<p>Here are the screen captures for your viewing pleasure.</p>

<div class="ngg-galleryoverview" id="ngg-gallery-4-1373">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-26" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://sodeve.net/wp-content/gallery/virtualbox/virtualbox-0.png" title=" " class="shutterset_set_4" >
								<img title="virtualbox-0" alt="virtualbox-0" src="http://sodeve.net/wp-content/gallery/virtualbox/thumbs/thumbs_virtualbox-0.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-27" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://sodeve.net/wp-content/gallery/virtualbox/virtualbox-1.png" title=" " class="shutterset_set_4" >
								<img title="virtualbox-1" alt="virtualbox-1" src="http://sodeve.net/wp-content/gallery/virtualbox/thumbs/thumbs_virtualbox-1.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-28" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://sodeve.net/wp-content/gallery/virtualbox/virtualbox-2.png" title=" " class="shutterset_set_4" >
								<img title="virtualbox-2" alt="virtualbox-2" src="http://sodeve.net/wp-content/gallery/virtualbox/thumbs/thumbs_virtualbox-2.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-29" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://sodeve.net/wp-content/gallery/virtualbox/virtualbox-3.png" title=" " class="shutterset_set_4" >
								<img title="virtualbox-3" alt="virtualbox-3" src="http://sodeve.net/wp-content/gallery/virtualbox/thumbs/thumbs_virtualbox-3.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-30" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://sodeve.net/wp-content/gallery/virtualbox/virtualbox-4.png" title=" " class="shutterset_set_4" >
								<img title="virtualbox-4" alt="virtualbox-4" src="http://sodeve.net/wp-content/gallery/virtualbox/thumbs/thumbs_virtualbox-4.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-31" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://sodeve.net/wp-content/gallery/virtualbox/virtualbox-5.png" title=" " class="shutterset_set_4" >
								<img title="virtualbox-5" alt="virtualbox-5" src="http://sodeve.net/wp-content/gallery/virtualbox/thumbs/thumbs_virtualbox-5.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-32" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://sodeve.net/wp-content/gallery/virtualbox/virtualbox-6.png" title=" " class="shutterset_set_4" >
								<img title="virtualbox-6" alt="virtualbox-6" src="http://sodeve.net/wp-content/gallery/virtualbox/thumbs/thumbs_virtualbox-6.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-33" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://sodeve.net/wp-content/gallery/virtualbox/virtualbox-7.png" title=" " class="shutterset_set_4" >
								<img title="virtualbox-7" alt="virtualbox-7" src="http://sodeve.net/wp-content/gallery/virtualbox/thumbs/thumbs_virtualbox-7.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-34" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://sodeve.net/wp-content/gallery/virtualbox/virtualbox-8.png" title=" " class="shutterset_set_4" >
								<img title="virtualbox-8" alt="virtualbox-8" src="http://sodeve.net/wp-content/gallery/virtualbox/thumbs/thumbs_virtualbox-8.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-35" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://sodeve.net/wp-content/gallery/virtualbox/virtualbox-9.png" title=" " class="shutterset_set_4" >
								<img title="virtualbox-9" alt="virtualbox-9" src="http://sodeve.net/wp-content/gallery/virtualbox/thumbs/thumbs_virtualbox-9.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


<h2>Share and Enjoy</h2>

<!-- Start WP Socializer - Social Buttons - Output -->
<div class="wp-socializer 32px">
<ul class="wp-socializer-jump columns-no">
 <li><a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fsodeve.net%2F2011%2F10%2Finstalling-virtualbox-in-windows%2F&amp;t=Installing+VirtualBox+In+Windows" title="Share this on Facebook" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Facebook" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -330px; border:0;"/></a></li> 

 <li><a href="http://twitter.com/home?status=Installing+VirtualBox+In+Windows%20-%20http%3A%2F%2Fsodeve.net%3Fp%3D1373%20@sodeve" title="Tweet this !" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Twitter" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -1386px; border:0;"/></a></li> 

 <li><a href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fsodeve.net%2F2011%2F10%2Finstalling-virtualbox-in-windows%2F&amp;title=Installing+VirtualBox+In+Windows&amp;annotation=%0D%0AVirtualBox+is+a+powerful+x86+and+AMD64%2FIntel64+virtualization+product+for+enterprise+as+well+as+home+use.+Not+only+is+VirtualBox+an+extremely+feature+rich%2C+high+performance+product+for+enterprise+customers%2C+it+is+also+the+only+professional+solution" title="Bookmark this on Google" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Google" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -462px; border:0;"/></a></li> 

 <li><a href="http://delicious.com/post?url=http%3A%2F%2Fsodeve.net%2F2011%2F10%2Finstalling-virtualbox-in-windows%2F&amp;title=Installing+VirtualBox+In+Windows&amp;notes=%0D%0AVirtualBox+is+a+powerful+x86+and+AMD64%2FIntel64+virtualization+product+for+enterprise+as+well+as+home+use.+Not+only+is+VirtualBox+an+extremely+feature+rich%2C+high+performance+product+for+enterprise+customers%2C+it+is+also+the+only+professional+solution" title="Post this on Delicious" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Delicious" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -132px; border:0;"/></a></li> 

 <li><a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fsodeve.net%2F2011%2F10%2Finstalling-virtualbox-in-windows%2F&amp;title=Installing+VirtualBox+In+Windows&amp;bodytext=%0D%0AVirtualBox+is+a+powerful+x86+and+AMD64%2FIntel64+virtualization+product+for+enterprise+as+well+as+home+use.+Not+only+is+VirtualBox+an+extremely+feature+rich%2C+high+performance+product+for+enterprise+customers%2C+it+is+also+the+only+professional+solution" title="Submit this to Digg" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Digg" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -231px; border:0;"/></a></li> 

 <li><a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fsodeve.net%2F2011%2F10%2Finstalling-virtualbox-in-windows%2F&amp;title=Installing+VirtualBox+In+Windows" title="Submit this to StumbleUpon" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="StumbleUpon" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -1287px; border:0;"/></a></li> 

 <li><a href="http://sodeve.net/2011/10/installing-virtualbox-in-windows/" onclick="addBookmark(event);" title="Installing VirtualBox In Windows" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Add to favorites" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -0px; border:0;"/></a></li> 

 <li><a href="mailto:subject=Installing VirtualBox In Windows&amp;body=
VirtualBox is a powerful x86 and AMD64/Intel64 virtualization product for enterprise as well as home use. Not only is VirtualBox an extremely feature rich, high performance product for enterprise customers, it is also the only professional solution - http://sodeve.net/2011/10/installing-virtualbox-in-windows/" title="Email this" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Email" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -297px; border:0;"/></a></li> 

 <li><a href="http://sodeve.net/feed/rss/" title="Subscribe to RSS" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="RSS" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -1221px; border:0;"/></a></li> 
</ul> 
<div class="wp-socializer-clearer"></div></div>
<!-- End WP Socializer - Social Buttons - Output -->
<p>Related posts:</p><ol>
<li><a href='http://sodeve.net/2011/01/windows-oracle-clients-download/' rel='bookmark' title='Windows Oracle Clients Download'>Windows Oracle Clients Download</a></li>
<li><a href='http://sodeve.net/2009/06/indonesia-won-global-enterprise-challenge-gec-2009/' rel='bookmark' title='Indonesia Won Global Enterprise Challenge (GEC) 2009'>Indonesia Won Global Enterprise Challenge (GEC) 2009</a></li>
<li><a href='http://sodeve.net/2011/09/windows-8-x64-developer-preview-w-developer-tools-is-not-working-with-vmware-player/' rel='bookmark' title='Windows 8 x64 Developer Preview w/ developer tools is not working with VMWare Player'>Windows 8 x64 Developer Preview w/ developer tools is not working with VMWare Player</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://sodeve.net/2011/10/installing-virtualbox-in-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Make Favourite Icon For Your Blog/Website</title>
		<link>http://sodeve.net/2011/10/how-to-make-favourite-icon-for-your-blogwebsite/</link>
		<comments>http://sodeve.net/2011/10/how-to-make-favourite-icon-for-your-blogwebsite/#comments</comments>
		<pubDate>Tue, 04 Oct 2011 11:39:53 +0000</pubDate>
		<dc:creator>Hardono</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tricks]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[microsoft]]></category>

		<guid isPermaLink="false">http://sodeve.net/?p=1239</guid>
		<description><![CDATA[If you notice, this blog is now have new Favourite Icon. OK I admit, I ripped off the from Google&#8217;s logo color-set. But as my friend pointed out, I could have ripped off the color-set from Windows too Anyway, let&#8217;s get started with project. Here are the tools needed: Paint.NET, ColorPic (color picker), and Junior [...]
Related posts:<ol>
<li><a href='http://sodeve.net/2007/06/so-you-like-ms-paint-here-is-the-free-and-much-much-better-replacement/' rel='bookmark' title='So You Like MS Paint? Here is the Free and Much much better Replacement'>So You Like MS Paint? Here is the Free and Much much better Replacement</a></li>
<li><a href='http://sodeve.net/2007/04/an-even-better-quote-of-the-day-for-your-website/' rel='bookmark' title='An Even Better Quote of The Day for Your Website'>An Even Better Quote of The Day for Your Website</a></li>
<li><a href='http://sodeve.net/2007/03/heres-how-to-add-quote-of-the-day-into-your-website-instantly/' rel='bookmark' title='Here&#8217;s How to Add Quote of The Day into Your Website Instantly'>Here&#8217;s How to Add Quote of The Day into Your Website Instantly</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://sodeve.net/2011/10/how-to-make-favourite-icon-for-your-blogwebsite/favicon-3/" rel="attachment wp-att-1240"><img src="http://sodeve.net/wp-content/uploads/2011/10/favicon.3.png" alt="" title="Sodeve" width="128" height="128" class="alignleft size-full wp-image-1240" /></a>If you notice, this blog is now have new Favourite Icon. OK I admit, I ripped off the from Google&#8217;s logo color-set. But as my friend pointed out, I could have ripped off the color-set from Windows too <img src='http://sodeve.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Anyway, let&#8217;s get started with project. Here are the tools needed: <a href="http://www.getpaint.net/" title="Get Paint.NET" target="_blank">Paint.NET</a>, <a href="http://www.iconico.com/colorpic/" title="ColorPic" target="_blank">ColorPic</a> (color picker), and <a href="http://www.sibcode.com/junior-icon-editor/" title="Junior Icon Editor" target="_blank">Junior Icon Editor</a>.</p>
<p>Since it is very easy, I won&#8217;t go through the details. I&#8217;ll just give you these steps. I hope you can figure it out on your own. <img src='http://sodeve.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<ol>
<li>Create a new Image in Paint.NET. The canvas must be in square shape. I usually use 200&#215;200 size.</li>
<li>Use ColorPic to find out the color codes used on existing image.</li>
<li>Once image complete, start Junior Icon Editor. Create all the possible size combination (16&#215;16, 24&#215;24, 32&#215;32, 48&#215;48, 64&#215;64)</li>
<li>On Paint.NET, resize the Image to 64&#215;64, select All (Ctrl + A), Copy (Ctrl + C) the image</li>
<li>On Junior Icon Editor, select the 64&#215;64 part, Paste (Ctrl + V) the image</li>
<li>Repeat above two steps for remaining sizes</li>
<li>On Junior Icon Editor, save the image as <strong>favicon.ico</strong></li>
<li>Upload the favicon.ico to the root folder of your website / blog</li>
<li>&#8230;..</li>
<li>Profit?!??! <img src='http://sodeve.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </li>
</ol>
<p>Once you&#8217;ve done above steps, you can test it whether it works. Below is the picture of SODEVE&#8217;s favicon.ico in various browsers:</p>

<div class="ngg-galleryoverview" id="ngg-gallery-2-1239">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-1" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://sodeve.net/wp-content/gallery/favicon-ico/favicon-chrome.png" title="favicon.ico shown in Google Chrome" class="shutterset_set_2" >
								<img title="favicon.ico shown in Google Chrome" alt="favicon.ico shown in Google Chrome" src="http://sodeve.net/wp-content/gallery/favicon-ico/thumbs/thumbs_favicon-chrome.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-2" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://sodeve.net/wp-content/gallery/favicon-ico/favicon-firefox.png" title="favicon.ico shown in Firefox" class="shutterset_set_2" >
								<img title="favicon.ico shown in Firefox" alt="favicon.ico shown in Firefox" src="http://sodeve.net/wp-content/gallery/favicon-ico/thumbs/thumbs_favicon-firefox.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-3" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://sodeve.net/wp-content/gallery/favicon-ico/favicon-ie9_.png" title="favicon.ico shown in IE 9" class="shutterset_set_2" >
								<img title="favicon.ico shown in IE 9" alt="favicon.ico shown in IE 9" src="http://sodeve.net/wp-content/gallery/favicon-ico/thumbs/thumbs_favicon-ie9_.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-4" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://sodeve.net/wp-content/gallery/favicon-ico/favicon-opera_.png" title="favicon.ico shown in Opera" class="shutterset_set_2" >
								<img title="favicon.ico shown in Opera" alt="favicon.ico shown in Opera" src="http://sodeve.net/wp-content/gallery/favicon-ico/thumbs/thumbs_favicon-opera_.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-5" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://sodeve.net/wp-content/gallery/favicon-ico/favicon-safari.png" title="favicon.ico shown in Safari" class="shutterset_set_2" >
								<img title="favicon.ico shown in Safari" alt="favicon.ico shown in Safari" src="http://sodeve.net/wp-content/gallery/favicon-ico/thumbs/thumbs_favicon-safari.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


<p>I hope it helps <img src='http://sodeve.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  Cheers!</p>
<h2>Share and Enjoy</h2>

<!-- Start WP Socializer - Social Buttons - Output -->
<div class="wp-socializer 32px">
<ul class="wp-socializer-jump columns-no">
 <li><a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fsodeve.net%2F2011%2F10%2Fhow-to-make-favourite-icon-for-your-blogwebsite%2F&amp;t=How+To+Make+Favourite+Icon+For+Your+Blog%2FWebsite" title="Share this on Facebook" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Facebook" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -330px; border:0;"/></a></li> 

 <li><a href="http://twitter.com/home?status=How+To+Make+Favourite+Icon+For+Your+Blog%2FWebsite%20-%20http%3A%2F%2Fsodeve.net%3Fp%3D1239%20@sodeve" title="Tweet this !" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Twitter" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -1386px; border:0;"/></a></li> 

 <li><a href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fsodeve.net%2F2011%2F10%2Fhow-to-make-favourite-icon-for-your-blogwebsite%2F&amp;title=How+To+Make+Favourite+Icon+For+Your+Blog%2FWebsite&amp;annotation=If+you+notice%2C+this+blog+is+now+have+new+Favourite+Icon.+OK+I+admit%2C+I+ripped+off+the+from+Google%27s+logo+color-set.+But+as+my+friend+pointed+out%2C+I+could+have+ripped+off+the+color-set+from+Windows+too+%3A%29%0D%0A+%0D%0AAnyway%2C+let%27s+get+started+with+project.+He" title="Bookmark this on Google" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Google" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -462px; border:0;"/></a></li> 

 <li><a href="http://delicious.com/post?url=http%3A%2F%2Fsodeve.net%2F2011%2F10%2Fhow-to-make-favourite-icon-for-your-blogwebsite%2F&amp;title=How+To+Make+Favourite+Icon+For+Your+Blog%2FWebsite&amp;notes=If+you+notice%2C+this+blog+is+now+have+new+Favourite+Icon.+OK+I+admit%2C+I+ripped+off+the+from+Google%27s+logo+color-set.+But+as+my+friend+pointed+out%2C+I+could+have+ripped+off+the+color-set+from+Windows+too+%3A%29%0D%0A+%0D%0AAnyway%2C+let%27s+get+started+with+project.+He" title="Post this on Delicious" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Delicious" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -132px; border:0;"/></a></li> 

 <li><a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fsodeve.net%2F2011%2F10%2Fhow-to-make-favourite-icon-for-your-blogwebsite%2F&amp;title=How+To+Make+Favourite+Icon+For+Your+Blog%2FWebsite&amp;bodytext=If+you+notice%2C+this+blog+is+now+have+new+Favourite+Icon.+OK+I+admit%2C+I+ripped+off+the+from+Google%27s+logo+color-set.+But+as+my+friend+pointed+out%2C+I+could+have+ripped+off+the+color-set+from+Windows+too+%3A%29%0D%0A+%0D%0AAnyway%2C+let%27s+get+started+with+project.+He" title="Submit this to Digg" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Digg" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -231px; border:0;"/></a></li> 

 <li><a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fsodeve.net%2F2011%2F10%2Fhow-to-make-favourite-icon-for-your-blogwebsite%2F&amp;title=How+To+Make+Favourite+Icon+For+Your+Blog%2FWebsite" title="Submit this to StumbleUpon" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="StumbleUpon" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -1287px; border:0;"/></a></li> 

 <li><a href="http://sodeve.net/2011/10/how-to-make-favourite-icon-for-your-blogwebsite/" onclick="addBookmark(event);" title="How To Make Favourite Icon For Your Blog/Website" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Add to favorites" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -0px; border:0;"/></a></li> 

 <li><a href="mailto:subject=How To Make Favourite Icon For Your Blog/Website&amp;body=If you notice, this blog is now have new Favourite Icon. OK I admit, I ripped off the from Google's logo color-set. But as my friend pointed out, I could have ripped off the color-set from Windows too :)
 
Anyway, let's get started with project. He - http://sodeve.net/2011/10/how-to-make-favourite-icon-for-your-blogwebsite/" title="Email this" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Email" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -297px; border:0;"/></a></li> 

 <li><a href="http://sodeve.net/feed/rss/" title="Subscribe to RSS" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="RSS" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -1221px; border:0;"/></a></li> 
</ul> 
<div class="wp-socializer-clearer"></div></div>
<!-- End WP Socializer - Social Buttons - Output -->
<p>Related posts:</p><ol>
<li><a href='http://sodeve.net/2007/06/so-you-like-ms-paint-here-is-the-free-and-much-much-better-replacement/' rel='bookmark' title='So You Like MS Paint? Here is the Free and Much much better Replacement'>So You Like MS Paint? Here is the Free and Much much better Replacement</a></li>
<li><a href='http://sodeve.net/2007/04/an-even-better-quote-of-the-day-for-your-website/' rel='bookmark' title='An Even Better Quote of The Day for Your Website'>An Even Better Quote of The Day for Your Website</a></li>
<li><a href='http://sodeve.net/2007/03/heres-how-to-add-quote-of-the-day-into-your-website-instantly/' rel='bookmark' title='Here&#8217;s How to Add Quote of The Day into Your Website Instantly'>Here&#8217;s How to Add Quote of The Day into Your Website Instantly</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://sodeve.net/2011/10/how-to-make-favourite-icon-for-your-blogwebsite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Building NGINX Reverse Proxy on Windows using VMWare Player</title>
		<link>http://sodeve.net/2011/06/building-nginx-reverse-proxy-on-windows-using-vmware-player/</link>
		<comments>http://sodeve.net/2011/06/building-nginx-reverse-proxy-on-windows-using-vmware-player/#comments</comments>
		<pubDate>Sun, 12 Jun 2011 10:58:40 +0000</pubDate>
		<dc:creator>Hardono</dc:creator>
				<category><![CDATA[Operating System]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[ubuntu linux]]></category>
		<category><![CDATA[virtualization]]></category>

		<guid isPermaLink="false">http://sodeve.net/?p=1008</guid>
		<description><![CDATA[In my recent project, I was required to open up a portion of an Intranet web application to external customer. I was researching for options. Yes, IIS7 has an Application Request Routing extension. But since my public facing server is Windows 2003 Server, IIS7 was out. Then I read Karl Seguin&#8217;s post on using NGINX [...]
Related posts:<ol>
<li><a href='http://sodeve.net/2011/03/internet-explorer-9-ie9-for-windows-xp-released-today/' rel='bookmark' title='Internet Explorer 9 (IE9) for Windows XP released today!!!'>Internet Explorer 9 (IE9) for Windows XP released today!!!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://sodeve.net/2011/06/building-nginx-reverse-proxy-on-windows-using-vmware-player/nginx-logo/" rel="attachment wp-att-1009"><img src="http://sodeve.net/wp-content/uploads/2011/06/nginx-logo.png" alt="" title="nginx-logo" width="350" height="90" class="alignleft size-full wp-image-1009" /></a>In my recent project, I was required to open up a portion of an Intranet web application to external customer. I was researching for options.</p>
<p>Yes, IIS7 has an Application Request Routing extension. But since my public facing server is Windows 2003 Server, IIS7 was out.</p>
<p>Then I read Karl Seguin&#8217;s post on using <a href="http://nginx.org">NGINX</a> to improve <a href="http://codebetter.com/karlseguin/2010/01/13/asp-net-performance-part-5-nginx/">ASP.NET Performance</a>. So I said to myself, let&#8217;s get dirty on this <img src='http://sodeve.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://sodeve.net/2011/06/building-nginx-reverse-proxy-on-windows-using-vmware-player/vmware-2/" rel="attachment wp-att-1026"><img src="http://sodeve.net/wp-content/uploads/2011/06/vmware.png" alt="" title="vmware" width="238" height="89" class="alignleft size-full wp-image-1026" /></a>My first step was to download <a href="https://www.vmware.com/tryvmware/?p=player&#038;lp=1">VMWare Player</a>. Why VMWare Player? Mainly because it&#8217;s free. You just need to register, activate VMWare account, then grab the installer.</p>
<p>Next step is to download Ubuntu Server VMWare image. Visit <a href="http://www.thoughtpolice.co.uk/vmware/">http://www.thoughtpolice.co.uk/vmware/</a> and grab a copy.</p>
<p>By now I believe you already run the Ubuntu server in VMWare Player.<br />
<img src="http://sodeve.net/wp-content/uploads/2011/06/ubuntu.login_.png" alt="" title="ubuntu.login" width="343" height="163" class="aligncenter size-full wp-image-1029" /></p>
<ol>
<li> Login as &#8216;notroot&#8217;. Password: &#8216;thoughtpolice&#8217;</li>
<li>Download Nginx source code. Command: <strong>wget http://nginx.org/download/nginx-1.0.4.tar.gz</strong></li>
<li>Follow the following commands to extract the archive:
<ol>
<li><strong>gunzip nginx-1.0.4.tar.gz</strong></li>
<li><strong>tar -xf nginx-1.0.4.tar</strong></li>
</ol>
</li>
<li>Follow the following commands to install the required runtime libraries:
<ol>
<li><strong>sudo -s</strong></li>
<li><strong>apt-get update</strong></li>
<li><strong>apt-get install gcc</strong></li>
<li><strong>apt-get install libpcre3 libpcre3-dev</strong></li>
<li><strong>apt-get install zlib1g-dev</strong></li>
<li><strong>exit</strong></li>
</ol>
</li>
<li>Follow the following commands to build nginx:
<ol>
<li><strong>cd nginx-1.0.4</strong></li>
<li><strong>./configure</strong></li>
<li><strong>sudo make install</strong></li>
</ol>
</li>
</ol>
<p>By now you should have NGINX installed to <strong>/usr/local/nginx</strong>. You could now edit the configuration in <strong>/usr/local/nginx/conf/nginx.conf</strong>. If you&#8217;re not sure how, <a href="http://wiki.nginx.org/Configuration">NGINX&#8217;s documentation</a> have section with many examples on how to configure NGINX. Editing the .conf is done using vi, so iIf you&#8217;re unfamiliar with vi, you could read a simple intro <a href="http://www.eng.hawaii.edu/Tutor/vi.html">here</a>.</p>
<p>Have fun!</p>
<h2>Share and Enjoy</h2>

<!-- Start WP Socializer - Social Buttons - Output -->
<div class="wp-socializer 32px">
<ul class="wp-socializer-jump columns-no">
 <li><a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fsodeve.net%2F2011%2F06%2Fbuilding-nginx-reverse-proxy-on-windows-using-vmware-player%2F&amp;t=Building+NGINX+Reverse+Proxy+on+Windows+using+VMWare+Player" title="Share this on Facebook" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Facebook" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -330px; border:0;"/></a></li> 

 <li><a href="http://twitter.com/home?status=Building+NGINX+Reverse+Proxy+on+Windows+using+VMWare+Player%20-%20http%3A%2F%2Fsodeve.net%3Fp%3D1008%20@sodeve" title="Tweet this !" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Twitter" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -1386px; border:0;"/></a></li> 

 <li><a href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fsodeve.net%2F2011%2F06%2Fbuilding-nginx-reverse-proxy-on-windows-using-vmware-player%2F&amp;title=Building+NGINX+Reverse+Proxy+on+Windows+using+VMWare+Player&amp;annotation=In+my+recent+project%2C+I+was+required+to+open+up+a+portion+of+an+Intranet+web+application+to+external+customer.+I+was+researching+for+options.%0D%0A%0D%0AYes%2C+IIS7+has+an+Application+Request+Routing+extension.+But+since+my+public+facing+server+is+Windows+2003" title="Bookmark this on Google" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Google" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -462px; border:0;"/></a></li> 

 <li><a href="http://delicious.com/post?url=http%3A%2F%2Fsodeve.net%2F2011%2F06%2Fbuilding-nginx-reverse-proxy-on-windows-using-vmware-player%2F&amp;title=Building+NGINX+Reverse+Proxy+on+Windows+using+VMWare+Player&amp;notes=In+my+recent+project%2C+I+was+required+to+open+up+a+portion+of+an+Intranet+web+application+to+external+customer.+I+was+researching+for+options.%0D%0A%0D%0AYes%2C+IIS7+has+an+Application+Request+Routing+extension.+But+since+my+public+facing+server+is+Windows+2003" title="Post this on Delicious" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Delicious" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -132px; border:0;"/></a></li> 

 <li><a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fsodeve.net%2F2011%2F06%2Fbuilding-nginx-reverse-proxy-on-windows-using-vmware-player%2F&amp;title=Building+NGINX+Reverse+Proxy+on+Windows+using+VMWare+Player&amp;bodytext=In+my+recent+project%2C+I+was+required+to+open+up+a+portion+of+an+Intranet+web+application+to+external+customer.+I+was+researching+for+options.%0D%0A%0D%0AYes%2C+IIS7+has+an+Application+Request+Routing+extension.+But+since+my+public+facing+server+is+Windows+2003" title="Submit this to Digg" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Digg" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -231px; border:0;"/></a></li> 

 <li><a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fsodeve.net%2F2011%2F06%2Fbuilding-nginx-reverse-proxy-on-windows-using-vmware-player%2F&amp;title=Building+NGINX+Reverse+Proxy+on+Windows+using+VMWare+Player" title="Submit this to StumbleUpon" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="StumbleUpon" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -1287px; border:0;"/></a></li> 

 <li><a href="http://sodeve.net/2011/06/building-nginx-reverse-proxy-on-windows-using-vmware-player/" onclick="addBookmark(event);" title="Building NGINX Reverse Proxy on Windows using VMWare Player" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Add to favorites" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -0px; border:0;"/></a></li> 

 <li><a href="mailto:subject=Building NGINX Reverse Proxy on Windows using VMWare Player&amp;body=In my recent project, I was required to open up a portion of an Intranet web application to external customer. I was researching for options.

Yes, IIS7 has an Application Request Routing extension. But since my public facing server is Windows 2003 - http://sodeve.net/2011/06/building-nginx-reverse-proxy-on-windows-using-vmware-player/" title="Email this" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Email" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -297px; border:0;"/></a></li> 

 <li><a href="http://sodeve.net/feed/rss/" title="Subscribe to RSS" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="RSS" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -1221px; border:0;"/></a></li> 
</ul> 
<div class="wp-socializer-clearer"></div></div>
<!-- End WP Socializer - Social Buttons - Output -->
<p>Related posts:</p><ol>
<li><a href='http://sodeve.net/2011/03/internet-explorer-9-ie9-for-windows-xp-released-today/' rel='bookmark' title='Internet Explorer 9 (IE9) for Windows XP released today!!!'>Internet Explorer 9 (IE9) for Windows XP released today!!!</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://sodeve.net/2011/06/building-nginx-reverse-proxy-on-windows-using-vmware-player/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQLPal: Amazingly Simple and Fast Oracle Query Tools</title>
		<link>http://sodeve.net/2011/06/sqlpal-amazingly-simple-and-fast-oracle-query-tools/</link>
		<comments>http://sodeve.net/2011/06/sqlpal-amazingly-simple-and-fast-oracle-query-tools/#comments</comments>
		<pubDate>Tue, 07 Jun 2011 05:05:12 +0000</pubDate>
		<dc:creator>Hardono</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://sodeve.net/?p=990</guid>
		<description><![CDATA[In the past I have talked about using Tora to connect to Oracle. I also listed down downloads of Oracle Client for Windows. Today I am going to introduce you to SQLPal. &#160; Installation No installation needed! Just download the zip file and extract it at your convenience. You also need to have the latest JRE [...]
Related posts:<ol>
<li><a href='http://sodeve.net/2009/04/oracle-iis-aspnet-problem-oracle-client-and-networking-components-were-not-found/' rel='bookmark' title='Oracle + IIS + ASP.NET Problem: Oracle client and networking components were not found'>Oracle + IIS + ASP.NET Problem: Oracle client and networking components were not found</a></li>
<li><a href='http://sodeve.net/2011/01/windows-oracle-clients-download/' rel='bookmark' title='Windows Oracle Clients Download'>Windows Oracle Clients Download</a></li>
<li><a href='http://sodeve.net/2009/04/oracle-iis-asp-net-problem-resolved/' rel='bookmark' title='Oracle + IIS + ASP.NET Problem: RESOLVED'>Oracle + IIS + ASP.NET Problem: RESOLVED</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>In the past I have talked about using <a title="How to Connect TOra to Oracle Database" href="http://sodeve.net/2009/08/how-to-connect-tora-to-oracle-database/">Tora</a> to connect to Oracle. I also listed down downloads of <a title="Windows Oracle Clients Download" href="http://sodeve.net/2011/01/windows-oracle-clients-download/">Oracle Client</a> for Windows.</p>
<p>Today I am going to introduce you to <a title="SQLPal" href="http://www.pebblereports.com/sqlpal/">SQLPal</a>.<br />
&nbsp;</p>
<h3>Installation</h3>
<p>No installation needed! Just download the <a href="http://www.pebblereports.com/sqlpal/sqlpal.zip">zip file</a> and extract it at your convenience. You also need to have the latest <a href="http://www.oracle.com/technetwork/java/javase/downloads/index.html">JRE</a> installed.</p>
<p><em><strong>Important:</strong></em> If you get an error when connecting to Oracle you need to update the JDBC driver included with SQLpal. Find classes12.jar in your Oracle installation and copy the file over to your SQLpal directory, replacing the existing file.</p>
<p>&nbsp;</p>
<h3>Setting Up Oracle Connection</h3>
<p><img src="http://sodeve.net/wp-content/uploads/2011/06/sqlpal.png" alt="" title="sqlpal" width="301" height="162" class="alignleft size-full wp-image-993" />Click the &#8216;power-plug&#8217; icon to initiate connection. It will ask you to provide:</p>
<ol>
<li>User ID</li>
<li>Password</li>
<li>Oracle&#8217;s server host name</li>
<li>Oracle&#8217;s server port number</li>
<li>Oracle&#8217;s server System ID (SID)</li>
</ol>
<p><img src="http://sodeve.net/wp-content/uploads/2011/06/sqlpal.2.png" alt="" title="sqlpal.2" width="438" height="347" class="aligncenter size-full wp-image-999" /></p>
<p>If you don&#8217;t know what is your Oracle server&#8217;s SID, connect to Oracle using your existing tools, and run the following query:</p>
<pre name="code" class="sql">

select instance from v$thread
</pre>
<p>SQLPal is very simple yet sufficient. It has only four tabs:</p>
<ol>
<li><strong>SQL Prompt</strong>. This tab is pretty much like SQL*Plus with steroid. You can:
<ol>
<li>run queries</li>
<li>use Up / Down key to retrieve previous queries </li>
<li>bookmark your queries (Bookmarks -> Bookmark last command &#8230;)</li>
<li>export query result to Excel (by pressing the Excel icon)</li>
</ol>
</li>
<li><strong>Scratchpad</strong>. This tab is just like any other query editor. You can:
<ol>
<li>load/save SQL file</li>
<li>save query result as HTML</li>
<li>export query result to Excel (by pressing the Excel icon)</li>
</ol>
</li>
<li><strong>Schema Browser</strong>. This tab will help you to see the details of every Oracle objects (Procedures, Packages, Functions, Tables, Views, Sequences, Synonims). Some objects are read-only (Tables, Views, Sequences, Synonims). But the rest are editable.</li>
<li><strong>Research</strong>. This tab is basically a browser pointing to resources that might help you when you hit a stumbling block.</li>
</ol>
<p>Try this tiny and efficient tools. I&#8217;m sure you going to like it very much!</p>
<p><strong>Credit:</strong>
<ol>
<li><a href="http://timewasteblog.com/2010/08/22/how-to-find-current-sid-of-oracle-from-sqlplus/">timewasteblog.com</a></li>
</ol>
<h2>Share and Enjoy</h2>

<!-- Start WP Socializer - Social Buttons - Output -->
<div class="wp-socializer 32px">
<ul class="wp-socializer-jump columns-no">
 <li><a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fsodeve.net%2F2011%2F06%2Fsqlpal-amazingly-simple-and-fast-oracle-query-tools%2F&amp;t=SQLPal%3A+Amazingly+Simple+and+Fast+Oracle+Query+Tools" title="Share this on Facebook" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Facebook" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -330px; border:0;"/></a></li> 

 <li><a href="http://twitter.com/home?status=SQLPal%3A+Amazingly+Simple+and+Fast+Oracle+Query+Tools%20-%20http%3A%2F%2Fsodeve.net%3Fp%3D990%20@sodeve" title="Tweet this !" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Twitter" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -1386px; border:0;"/></a></li> 

 <li><a href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fsodeve.net%2F2011%2F06%2Fsqlpal-amazingly-simple-and-fast-oracle-query-tools%2F&amp;title=SQLPal%3A+Amazingly+Simple+and+Fast+Oracle+Query+Tools&amp;annotation=In+the+past+I+have+talked+about+using+Tora+to+connect+to+Oracle.+I+also+listed+down+downloads+of%C2%A0Oracle+Client+for+Windows.%0D%0A%0D%0AToday+I+am+going+to+introduce+you+to+SQLPal.%0D%0A%26nbsp%3B%0D%0AInstallation%0D%0ANo+installation+needed%21+Just+download+the+zip+file+and" title="Bookmark this on Google" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Google" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -462px; border:0;"/></a></li> 

 <li><a href="http://delicious.com/post?url=http%3A%2F%2Fsodeve.net%2F2011%2F06%2Fsqlpal-amazingly-simple-and-fast-oracle-query-tools%2F&amp;title=SQLPal%3A+Amazingly+Simple+and+Fast+Oracle+Query+Tools&amp;notes=In+the+past+I+have+talked+about+using+Tora+to+connect+to+Oracle.+I+also+listed+down+downloads+of%C2%A0Oracle+Client+for+Windows.%0D%0A%0D%0AToday+I+am+going+to+introduce+you+to+SQLPal.%0D%0A%26nbsp%3B%0D%0AInstallation%0D%0ANo+installation+needed%21+Just+download+the+zip+file+and" title="Post this on Delicious" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Delicious" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -132px; border:0;"/></a></li> 

 <li><a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fsodeve.net%2F2011%2F06%2Fsqlpal-amazingly-simple-and-fast-oracle-query-tools%2F&amp;title=SQLPal%3A+Amazingly+Simple+and+Fast+Oracle+Query+Tools&amp;bodytext=In+the+past+I+have+talked+about+using+Tora+to+connect+to+Oracle.+I+also+listed+down+downloads+of%C2%A0Oracle+Client+for+Windows.%0D%0A%0D%0AToday+I+am+going+to+introduce+you+to+SQLPal.%0D%0A%26nbsp%3B%0D%0AInstallation%0D%0ANo+installation+needed%21+Just+download+the+zip+file+and" title="Submit this to Digg" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Digg" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -231px; border:0;"/></a></li> 

 <li><a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fsodeve.net%2F2011%2F06%2Fsqlpal-amazingly-simple-and-fast-oracle-query-tools%2F&amp;title=SQLPal%3A+Amazingly+Simple+and+Fast+Oracle+Query+Tools" title="Submit this to StumbleUpon" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="StumbleUpon" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -1287px; border:0;"/></a></li> 

 <li><a href="http://sodeve.net/2011/06/sqlpal-amazingly-simple-and-fast-oracle-query-tools/" onclick="addBookmark(event);" title="SQLPal: Amazingly Simple and Fast Oracle Query Tools" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Add to favorites" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -0px; border:0;"/></a></li> 

 <li><a href="mailto:subject=SQLPal: Amazingly Simple and Fast Oracle Query Tools&amp;body=In the past I have talked about using Tora to connect to Oracle. I also listed down downloads of Oracle Client for Windows.

Today I am going to introduce you to SQLPal.
&nbsp;
Installation
No installation needed! Just download the zip file and - http://sodeve.net/2011/06/sqlpal-amazingly-simple-and-fast-oracle-query-tools/" title="Email this" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Email" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -297px; border:0;"/></a></li> 

 <li><a href="http://sodeve.net/feed/rss/" title="Subscribe to RSS" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="RSS" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -1221px; border:0;"/></a></li> 
</ul> 
<div class="wp-socializer-clearer"></div></div>
<!-- End WP Socializer - Social Buttons - Output -->
<p>Related posts:</p><ol>
<li><a href='http://sodeve.net/2009/04/oracle-iis-aspnet-problem-oracle-client-and-networking-components-were-not-found/' rel='bookmark' title='Oracle + IIS + ASP.NET Problem: Oracle client and networking components were not found'>Oracle + IIS + ASP.NET Problem: Oracle client and networking components were not found</a></li>
<li><a href='http://sodeve.net/2011/01/windows-oracle-clients-download/' rel='bookmark' title='Windows Oracle Clients Download'>Windows Oracle Clients Download</a></li>
<li><a href='http://sodeve.net/2009/04/oracle-iis-asp-net-problem-resolved/' rel='bookmark' title='Oracle + IIS + ASP.NET Problem: RESOLVED'>Oracle + IIS + ASP.NET Problem: RESOLVED</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://sodeve.net/2011/06/sqlpal-amazingly-simple-and-fast-oracle-query-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[Solved] IRAS Validation and Submission Application Error: Found unsigned entry in resource</title>
		<link>http://sodeve.net/2011/02/solved-iras-validation-and-submission-application-error-found-unsigned-entry-in-resource/</link>
		<comments>http://sodeve.net/2011/02/solved-iras-validation-and-submission-application-error-found-unsigned-entry-in-resource/#comments</comments>
		<pubDate>Mon, 28 Feb 2011 11:21:24 +0000</pubDate>
		<dc:creator>Hardono</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tricks]]></category>
		<category><![CDATA[iras]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[singapore]]></category>

		<guid isPermaLink="false">http://sodeve.net/?p=971</guid>
		<description><![CDATA[My HR colleague called me this morning because she&#8217;s having problem with Inland Revenue Authority of Singapore (IRAS) Validation and Submission Java Application (JNLP) which can be found HERE. The error window that she had was: click Details to view the Exception: To solve this issue, you need to do the following steps: Remove the [...]
Related posts:<ol>
<li><a href='http://sodeve.net/2011/02/solved-ext-net-initializationscriptnotfoundexception-the-ext-net-initialization-script-was-not-found/' rel='bookmark' title='[Solved] Ext.Net.InitializationScriptNotFoundException: The Ext.NET initialization script was not found'>[Solved] Ext.Net.InitializationScriptNotFoundException: The Ext.NET initialization script was not found</a></li>
<li><a href='http://sodeve.net/2009/04/oracle-iis-aspnet-problem-oracle-client-and-networking-components-were-not-found/' rel='bookmark' title='Oracle + IIS + ASP.NET Problem: Oracle client and networking components were not found'>Oracle + IIS + ASP.NET Problem: Oracle client and networking components were not found</a></li>
<li><a href='http://sodeve.net/2007/03/integrate-chatting-to-your-existing-web-application/' rel='bookmark' title='Integrate Chatting to your existing Web Application'>Integrate Chatting to your existing Web Application</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>My HR colleague called me this morning because she&#8217;s having problem with Inland Revenue Authority of Singapore (IRAS) Validation and Submission Java Application (<a href="http://en.wikipedia.org/wiki/Java_Web_Start">JNLP</a>) which can be found <a href="http://www.iras.gov.sg/irasHome/page04.aspx?id=3274">HERE</a>.</p>
<p>The error window that she had was:</p>
<p><img src="http://sodeve.net/wp-content/uploads/2011/02/iras.1.png" alt="Unable to launch the application" title="Unable to launch the application" width="516" height="222" class="aligncenter size-full wp-image-972" /></p>
<p>click Details to view the Exception:</p>
<p><img src="http://sodeve.net/wp-content/uploads/2011/02/iras.2.png" alt="Found unsigned entry in resource" title="Found unsigned entry in resource" width="518" height="390" class="aligncenter size-full wp-image-973" /></p>
<p>To solve this issue, you need to do the following steps:</p>
<ol>
<li><strong>Remove the proxy settings (optional)</strong>. There&#8217;s a chance that the your HTTP Proxy server is caching the outdated version of the applet</li>
<li><strong>Clear your Java cache</strong>. Go to Control Panel &#8211; Java.<img src="http://sodeve.net/wp-content/uploads/2011/02/iras.3.png" alt="Java Control Panel" title="Java Control Panel" width="437" height="496" class="aligncenter size-full wp-image-974" /> click Settings, then click Delete Files.</li>
<li><strong>Set JNLP File/MIME Association</strong>. In Java Cotrol Panel, click Advanced tab. Expand JNLP File/MIME Association. Select Promp User.<img src="http://sodeve.net/wp-content/uploads/2011/02/iras.4.png" alt="JNLP File/MIME Association" title="JNLP File/MIME Association" width="439" height="484" class="aligncenter size-full wp-image-975" /></li>
</ol>
<p>You should by now fixed the issue. When you launched the Java Application you should have the following prompt:</p>
<p><img src="http://sodeve.net/wp-content/uploads/2011/02/iras.5.png" alt="Do you want to run the application?" title="Do you want to run the application?" width="513" height="316" class="aligncenter size-full wp-image-976" /></p>
<p>Click Run, and you are set to validate your Employment Income submission.</p>
<p>If it&#8217;s still not working, drop a comment and we&#8217;ll see what we can do <img src='http://sodeve.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> . </p>
<h2>Share and Enjoy</h2>

<!-- Start WP Socializer - Social Buttons - Output -->
<div class="wp-socializer 32px">
<ul class="wp-socializer-jump columns-no">
 <li><a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fsodeve.net%2F2011%2F02%2Fsolved-iras-validation-and-submission-application-error-found-unsigned-entry-in-resource%2F&amp;t=%5BSolved%5D+IRAS+Validation+and+Submission+Application+Error%3A+Found+unsigned+entry+in+resource" title="Share this on Facebook" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Facebook" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -330px; border:0;"/></a></li> 

 <li><a href="http://twitter.com/home?status=%5BSolved%5D+IRAS+Validation+and+Submission+Application+Error%3A+Found+unsigned+entry+in+resource%20-%20http%3A%2F%2Fsodeve.net%3Fp%3D971%20@sodeve" title="Tweet this !" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Twitter" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -1386px; border:0;"/></a></li> 

 <li><a href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fsodeve.net%2F2011%2F02%2Fsolved-iras-validation-and-submission-application-error-found-unsigned-entry-in-resource%2F&amp;title=%5BSolved%5D+IRAS+Validation+and+Submission+Application+Error%3A+Found+unsigned+entry+in+resource&amp;annotation=My+HR+colleague+called+me+this+morning+because+she%27s+having+problem+with+Inland+Revenue+Authority+of+Singapore+%28IRAS%29+Validation+and+Submission+Java+Application+%28JNLP%29+which+can+be+found+HERE.%0A%0AThe+error+window+that+she+had+was%3A%0A%0A%0A%0Aclick+Details+to+v" title="Bookmark this on Google" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Google" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -462px; border:0;"/></a></li> 

 <li><a href="http://delicious.com/post?url=http%3A%2F%2Fsodeve.net%2F2011%2F02%2Fsolved-iras-validation-and-submission-application-error-found-unsigned-entry-in-resource%2F&amp;title=%5BSolved%5D+IRAS+Validation+and+Submission+Application+Error%3A+Found+unsigned+entry+in+resource&amp;notes=My+HR+colleague+called+me+this+morning+because+she%27s+having+problem+with+Inland+Revenue+Authority+of+Singapore+%28IRAS%29+Validation+and+Submission+Java+Application+%28JNLP%29+which+can+be+found+HERE.%0A%0AThe+error+window+that+she+had+was%3A%0A%0A%0A%0Aclick+Details+to+v" title="Post this on Delicious" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Delicious" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -132px; border:0;"/></a></li> 

 <li><a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fsodeve.net%2F2011%2F02%2Fsolved-iras-validation-and-submission-application-error-found-unsigned-entry-in-resource%2F&amp;title=%5BSolved%5D+IRAS+Validation+and+Submission+Application+Error%3A+Found+unsigned+entry+in+resource&amp;bodytext=My+HR+colleague+called+me+this+morning+because+she%27s+having+problem+with+Inland+Revenue+Authority+of+Singapore+%28IRAS%29+Validation+and+Submission+Java+Application+%28JNLP%29+which+can+be+found+HERE.%0A%0AThe+error+window+that+she+had+was%3A%0A%0A%0A%0Aclick+Details+to+v" title="Submit this to Digg" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Digg" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -231px; border:0;"/></a></li> 

 <li><a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fsodeve.net%2F2011%2F02%2Fsolved-iras-validation-and-submission-application-error-found-unsigned-entry-in-resource%2F&amp;title=%5BSolved%5D+IRAS+Validation+and+Submission+Application+Error%3A+Found+unsigned+entry+in+resource" title="Submit this to StumbleUpon" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="StumbleUpon" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -1287px; border:0;"/></a></li> 

 <li><a href="http://sodeve.net/2011/02/solved-iras-validation-and-submission-application-error-found-unsigned-entry-in-resource/" onclick="addBookmark(event);" title="[Solved] IRAS Validation and Submission Application Error: Found unsigned entry in resource" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Add to favorites" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -0px; border:0;"/></a></li> 

 <li><a href="mailto:subject=[Solved] IRAS Validation and Submission Application Error: Found unsigned entry in resource&amp;body=My HR colleague called me this morning because she's having problem with Inland Revenue Authority of Singapore (IRAS) Validation and Submission Java Application (JNLP) which can be found HERE.

The error window that she had was:



click Details to v - http://sodeve.net/2011/02/solved-iras-validation-and-submission-application-error-found-unsigned-entry-in-resource/" title="Email this" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Email" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -297px; border:0;"/></a></li> 

 <li><a href="http://sodeve.net/feed/rss/" title="Subscribe to RSS" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="RSS" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -1221px; border:0;"/></a></li> 
</ul> 
<div class="wp-socializer-clearer"></div></div>
<!-- End WP Socializer - Social Buttons - Output -->
<p>Related posts:</p><ol>
<li><a href='http://sodeve.net/2011/02/solved-ext-net-initializationscriptnotfoundexception-the-ext-net-initialization-script-was-not-found/' rel='bookmark' title='[Solved] Ext.Net.InitializationScriptNotFoundException: The Ext.NET initialization script was not found'>[Solved] Ext.Net.InitializationScriptNotFoundException: The Ext.NET initialization script was not found</a></li>
<li><a href='http://sodeve.net/2009/04/oracle-iis-aspnet-problem-oracle-client-and-networking-components-were-not-found/' rel='bookmark' title='Oracle + IIS + ASP.NET Problem: Oracle client and networking components were not found'>Oracle + IIS + ASP.NET Problem: Oracle client and networking components were not found</a></li>
<li><a href='http://sodeve.net/2007/03/integrate-chatting-to-your-existing-web-application/' rel='bookmark' title='Integrate Chatting to your existing Web Application'>Integrate Chatting to your existing Web Application</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://sodeve.net/2011/02/solved-iras-validation-and-submission-application-error-found-unsigned-entry-in-resource/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I Love 7-Zip</title>
		<link>http://sodeve.net/2011/01/i-love-7-zip/</link>
		<comments>http://sodeve.net/2011/01/i-love-7-zip/#comments</comments>
		<pubDate>Mon, 10 Jan 2011 16:54:42 +0000</pubDate>
		<dc:creator>Hardono</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[free]]></category>

		<guid isPermaLink="false">http://sodeve.net/?p=960</guid>
		<description><![CDATA[In case you still using Winzip, switch to 7-Zip now! I love this 1MB installation-tool. It&#8217;s super-efficient in compressing files. And the best part is, this awesome tools is free. As Fred R. Barnyard said, &#8216;one picture is worth a thousand words&#8217;. Lo! And behold! Related posts: COMIC: Thousand Words I Love Kompas
Related posts:<ol>
<li><a href='http://sodeve.net/2007/04/comic-thousand-words/' rel='bookmark' title='COMIC: Thousand Words'>COMIC: Thousand Words</a></li>
<li><a href='http://sodeve.net/2010/12/i_love_kompas/' rel='bookmark' title='I Love Kompas'>I Love Kompas</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>In case you still using Winzip, switch to <a href="http://www.7-zip.org/">7-Zip</a> now! I love this 1MB installation-tool. It&#8217;s <a target="_blank" href="http://warp.povusers.org/ArchiverComparison/">super-efficient</a> in compressing files. And the best part is, this awesome tools is free.</p>
<p>As Fred R. Barnyard said, &#8216;one picture is worth a thousand words&#8217;. Lo! And behold!</p>
<p><a href="http://sodeve.net/2011/01/i-love-7-zip/"><img src="http://sodeve.net/wp-content/uploads/2011/01/7zip.png" alt="7zip" title="7zip" width="574" height="342" class="aligncenter size-full wp-image-961" /></a></p>
<h2>Share and Enjoy</h2>

<!-- Start WP Socializer - Social Buttons - Output -->
<div class="wp-socializer 32px">
<ul class="wp-socializer-jump columns-no">
 <li><a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fsodeve.net%2F2011%2F01%2Fi-love-7-zip%2F&amp;t=I+Love+7-Zip" title="Share this on Facebook" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Facebook" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -330px; border:0;"/></a></li> 

 <li><a href="http://twitter.com/home?status=I+Love+7-Zip%20-%20http%3A%2F%2Fsodeve.net%3Fp%3D960%20@sodeve" title="Tweet this !" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Twitter" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -1386px; border:0;"/></a></li> 

 <li><a href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fsodeve.net%2F2011%2F01%2Fi-love-7-zip%2F&amp;title=I+Love+7-Zip&amp;annotation=In+case+you+still+using+Winzip%2C+switch+to+7-Zip+now%21+I+love+this+1MB+installation-tool.+It%27s+super-efficient+in+compressing+files.+And+the+best+part+is%2C+this+awesome+tools+is+free.%0D%0A+%0D%0AAs+Fred+R.+Barnyard+said%2C+%27one+picture+is+worth+a+thousand+words%27" title="Bookmark this on Google" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Google" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -462px; border:0;"/></a></li> 

 <li><a href="http://delicious.com/post?url=http%3A%2F%2Fsodeve.net%2F2011%2F01%2Fi-love-7-zip%2F&amp;title=I+Love+7-Zip&amp;notes=In+case+you+still+using+Winzip%2C+switch+to+7-Zip+now%21+I+love+this+1MB+installation-tool.+It%27s+super-efficient+in+compressing+files.+And+the+best+part+is%2C+this+awesome+tools+is+free.%0D%0A+%0D%0AAs+Fred+R.+Barnyard+said%2C+%27one+picture+is+worth+a+thousand+words%27" title="Post this on Delicious" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Delicious" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -132px; border:0;"/></a></li> 

 <li><a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fsodeve.net%2F2011%2F01%2Fi-love-7-zip%2F&amp;title=I+Love+7-Zip&amp;bodytext=In+case+you+still+using+Winzip%2C+switch+to+7-Zip+now%21+I+love+this+1MB+installation-tool.+It%27s+super-efficient+in+compressing+files.+And+the+best+part+is%2C+this+awesome+tools+is+free.%0D%0A+%0D%0AAs+Fred+R.+Barnyard+said%2C+%27one+picture+is+worth+a+thousand+words%27" title="Submit this to Digg" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Digg" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -231px; border:0;"/></a></li> 

 <li><a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fsodeve.net%2F2011%2F01%2Fi-love-7-zip%2F&amp;title=I+Love+7-Zip" title="Submit this to StumbleUpon" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="StumbleUpon" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -1287px; border:0;"/></a></li> 

 <li><a href="http://sodeve.net/2011/01/i-love-7-zip/" onclick="addBookmark(event);" title="I Love 7-Zip" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Add to favorites" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -0px; border:0;"/></a></li> 

 <li><a href="mailto:subject=I Love 7-Zip&amp;body=In case you still using Winzip, switch to 7-Zip now! I love this 1MB installation-tool. It's super-efficient in compressing files. And the best part is, this awesome tools is free.
 
As Fred R. Barnyard said, 'one picture is worth a thousand words' - http://sodeve.net/2011/01/i-love-7-zip/" title="Email this" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Email" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -297px; border:0;"/></a></li> 

 <li><a href="http://sodeve.net/feed/rss/" title="Subscribe to RSS" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="RSS" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -1221px; border:0;"/></a></li> 
</ul> 
<div class="wp-socializer-clearer"></div></div>
<!-- End WP Socializer - Social Buttons - Output -->
<p>Related posts:</p><ol>
<li><a href='http://sodeve.net/2007/04/comic-thousand-words/' rel='bookmark' title='COMIC: Thousand Words'>COMIC: Thousand Words</a></li>
<li><a href='http://sodeve.net/2010/12/i_love_kompas/' rel='bookmark' title='I Love Kompas'>I Love Kompas</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://sodeve.net/2011/01/i-love-7-zip/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Windows Oracle Clients Download</title>
		<link>http://sodeve.net/2011/01/windows-oracle-clients-download/</link>
		<comments>http://sodeve.net/2011/01/windows-oracle-clients-download/#comments</comments>
		<pubDate>Sun, 09 Jan 2011 16:20:00 +0000</pubDate>
		<dc:creator>Hardono</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://sodeve.net/?p=956</guid>
		<description><![CDATA[In case you&#8217;re looking for Windows Oracle Clients, here are the links: Oracle 11g Release 2 Client 32-bit 64-bit Oracle 11g Release 1 Client 32-bit 64-bit Oracle 10g Release 2 Client 32-bit 64-bit If you&#8217;re looking for Oracle Client v. 9 and below, sadly it&#8217;s no longer available publicly at Oracle website. You can still [...]
Related posts:<ol>
<li><a href='http://sodeve.net/2009/04/oracle-iis-aspnet-problem-oracle-client-and-networking-components-were-not-found/' rel='bookmark' title='Oracle + IIS + ASP.NET Problem: Oracle client and networking components were not found'>Oracle + IIS + ASP.NET Problem: Oracle client and networking components were not found</a></li>
<li><a href='http://sodeve.net/2009/04/oracle-iis-asp-net-problem-resolved/' rel='bookmark' title='Oracle + IIS + ASP.NET Problem: RESOLVED'>Oracle + IIS + ASP.NET Problem: RESOLVED</a></li>
<li><a href='http://sodeve.net/2009/08/how-to-connect-tora-to-oracle-database/' rel='bookmark' title='How to Connect TOra to Oracle Database'>How to Connect TOra to Oracle Database</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>In case you&#8217;re looking for Windows Oracle Clients, here are the links:</p>
<ol>
<li>Oracle 11g Release 2 Client <a target="_blank" href="http://www.oracle.com/technetwork/database/enterprise-edition/downloads/112010-win32soft-098987.html">32-bit</a> <a href="http://www.oracle.com/technetwork/database/enterprise-edition/downloads/112010-win64soft-094461.html">64-bit</a></li>
<li>Oracle 11g Release 1 Client <a target="_blank" href="http://www.oracle.com/technetwork/database/enterprise-edition/downloads/111060-win32soft-099267.html">32-bit</a> <a arget="_blank" href="http://www.oracle.com/technetwork/database/enterprise-edition/downloads/111060-win64soft-099656.html">64-bit</a></li>
<li>Oracle 10g Release 2 Client <a target="_blank" href="http://www.oracle.com/technetwork/database/10201winsoft-095341.html">32-bit</a> <a target="_blank" href="http://www.oracle.com/technetwork/database/10201winx64soft-090882.html">64-bit</a></li>
</ol>
<p>If  you&#8217;re looking for Oracle Client v. 9 and below, sadly it&#8217;s no longer available publicly at Oracle website. You can still call their sales rep and request for quotation though.</p>
<h2>Share and Enjoy</h2>

<!-- Start WP Socializer - Social Buttons - Output -->
<div class="wp-socializer 32px">
<ul class="wp-socializer-jump columns-no">
 <li><a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fsodeve.net%2F2011%2F01%2Fwindows-oracle-clients-download%2F&amp;t=Windows+Oracle+Clients+Download" title="Share this on Facebook" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Facebook" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -330px; border:0;"/></a></li> 

 <li><a href="http://twitter.com/home?status=Windows+Oracle+Clients+Download%20-%20http%3A%2F%2Fsodeve.net%3Fp%3D956%20@sodeve" title="Tweet this !" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Twitter" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -1386px; border:0;"/></a></li> 

 <li><a href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fsodeve.net%2F2011%2F01%2Fwindows-oracle-clients-download%2F&amp;title=Windows+Oracle+Clients+Download&amp;annotation=In+case+you%27re+looking+for+Windows+Oracle+Clients%2C+here+are+the+links%3A%0A%0A%09Oracle+11g+Release+2+Client+32-bit+64-bit%0A%09Oracle+11g+Release+1+Client+32-bit+64-bit%0A%09Oracle+10g+Release+2+Client+32-bit+64-bit+%0A%0AIf++you%27re+looking+for+Oracle+Client+v.+9+and+b" title="Bookmark this on Google" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Google" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -462px; border:0;"/></a></li> 

 <li><a href="http://delicious.com/post?url=http%3A%2F%2Fsodeve.net%2F2011%2F01%2Fwindows-oracle-clients-download%2F&amp;title=Windows+Oracle+Clients+Download&amp;notes=In+case+you%27re+looking+for+Windows+Oracle+Clients%2C+here+are+the+links%3A%0A%0A%09Oracle+11g+Release+2+Client+32-bit+64-bit%0A%09Oracle+11g+Release+1+Client+32-bit+64-bit%0A%09Oracle+10g+Release+2+Client+32-bit+64-bit+%0A%0AIf++you%27re+looking+for+Oracle+Client+v.+9+and+b" title="Post this on Delicious" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Delicious" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -132px; border:0;"/></a></li> 

 <li><a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fsodeve.net%2F2011%2F01%2Fwindows-oracle-clients-download%2F&amp;title=Windows+Oracle+Clients+Download&amp;bodytext=In+case+you%27re+looking+for+Windows+Oracle+Clients%2C+here+are+the+links%3A%0A%0A%09Oracle+11g+Release+2+Client+32-bit+64-bit%0A%09Oracle+11g+Release+1+Client+32-bit+64-bit%0A%09Oracle+10g+Release+2+Client+32-bit+64-bit+%0A%0AIf++you%27re+looking+for+Oracle+Client+v.+9+and+b" title="Submit this to Digg" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Digg" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -231px; border:0;"/></a></li> 

 <li><a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fsodeve.net%2F2011%2F01%2Fwindows-oracle-clients-download%2F&amp;title=Windows+Oracle+Clients+Download" title="Submit this to StumbleUpon" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="StumbleUpon" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -1287px; border:0;"/></a></li> 

 <li><a href="http://sodeve.net/2011/01/windows-oracle-clients-download/" onclick="addBookmark(event);" title="Windows Oracle Clients Download" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Add to favorites" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -0px; border:0;"/></a></li> 

 <li><a href="mailto:subject=Windows Oracle Clients Download&amp;body=In case you're looking for Windows Oracle Clients, here are the links:

	Oracle 11g Release 2 Client 32-bit 64-bit
	Oracle 11g Release 1 Client 32-bit 64-bit
	Oracle 10g Release 2 Client 32-bit 64-bit 

If  you're looking for Oracle Client v. 9 and b - http://sodeve.net/2011/01/windows-oracle-clients-download/" title="Email this" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Email" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -297px; border:0;"/></a></li> 

 <li><a href="http://sodeve.net/feed/rss/" title="Subscribe to RSS" target="_blank" rel="nofollow"><img src="http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="RSS" style="width:32px; height:32px; background: transparent url(http://sodeve.net/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -1221px; border:0;"/></a></li> 
</ul> 
<div class="wp-socializer-clearer"></div></div>
<!-- End WP Socializer - Social Buttons - Output -->
<p>Related posts:</p><ol>
<li><a href='http://sodeve.net/2009/04/oracle-iis-aspnet-problem-oracle-client-and-networking-components-were-not-found/' rel='bookmark' title='Oracle + IIS + ASP.NET Problem: Oracle client and networking components were not found'>Oracle + IIS + ASP.NET Problem: Oracle client and networking components were not found</a></li>
<li><a href='http://sodeve.net/2009/04/oracle-iis-asp-net-problem-resolved/' rel='bookmark' title='Oracle + IIS + ASP.NET Problem: RESOLVED'>Oracle + IIS + ASP.NET Problem: RESOLVED</a></li>
<li><a href='http://sodeve.net/2009/08/how-to-connect-tora-to-oracle-database/' rel='bookmark' title='How to Connect TOra to Oracle Database'>How to Connect TOra to Oracle Database</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://sodeve.net/2011/01/windows-oracle-clients-download/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for ( sssodeveee sodeve.net/category/software/feed/ ) in 6.48299 seconds, on May 21st, 2012 at 9:43 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on May 22nd, 2012 at 9:43 pm UTC -->
