<?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>Wed, 08 Feb 2012 07:24:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</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 [...]
&nbsp;
<h3>Possibly Related Posts</h3>

 

<ul class="related-posts">

    <li> 
 <a title="Permanent Link to How to use jQuery in Your WordPress Post" href="http://sodeve.net/2009/09/how-to-use-jquery-in-your-wordpress-post/" rel="bookmark"><img src="/thumb/timthumb.php?src=http://sodeve.net/wp-content/uploads/2009/09/firebug-net-js1-150x56.png&h=75&w=100&q=95" alt="How to use jQuery in Your WordPress Post" width="100" height="75" />
 How to use jQuery in Your WordPress Post </a>
 
 </li>
 
 
    <li> 
 <a title="Permanent Link to How to Prevent WordPress Loads jQuery Twice" href="http://sodeve.net/2009/09/how-to-prevent-wordpress-loads-jquery-twice/" rel="bookmark"><img src="/thumb/timthumb.php?src=http://sodeve.net/wp-content/uploads/2011/11/jquery3-150x93.png&h=75&w=100&q=95" alt="How to Prevent WordPress Loads jQuery Twice" width="100" height="75" />
 How to Prevent WordPress Loads jQuery Twice </a>
 
 </li>
 
 
    <li> 
 <a title="Permanent Link to Using jQuery to Enhance Google Syntax Highligher WordPress Plugin" href="http://sodeve.net/2009/09/using-jquery-to-enhance-google-syntax-highligher-wordpress-plugin/" rel="bookmark"><img src="/thumb/timthumb.php?src=http://sodeve.net/wp-content/uploads/2011/11/jquery3-150x93.png&h=75&w=100&q=95" alt="Using jQuery to Enhance Google Syntax Highligher WordPress Plugin" width="100" height="75" />
 Using jQuery to Enhance Google Syntax Highligher WordPress Plugin </a>
 
 </li>
 
  
</ul>


&nbsp;]]></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>
<p>&nbsp;</p>
<h3>Possibly Related Posts</h3>

 

<ul class="related-posts">

    <li> 
 <a title="Permanent Link to How to use jQuery in Your WordPress Post" href="http://sodeve.net/2009/09/how-to-use-jquery-in-your-wordpress-post/" rel="bookmark"><img src="/thumb/timthumb.php?src=http://sodeve.net/wp-content/uploads/2009/09/firebug-net-js1-150x56.png&h=75&w=100&q=95" alt="How to use jQuery in Your WordPress Post" width="100" height="75" />
 How to use jQuery in Your WordPress Post </a>
 
 </li>
 
 
    <li> 
 <a title="Permanent Link to How to Prevent WordPress Loads jQuery Twice" href="http://sodeve.net/2009/09/how-to-prevent-wordpress-loads-jquery-twice/" rel="bookmark"><img src="/thumb/timthumb.php?src=http://sodeve.net/wp-content/uploads/2011/11/jquery3-150x93.png&h=75&w=100&q=95" alt="How to Prevent WordPress Loads jQuery Twice" width="100" height="75" />
 How to Prevent WordPress Loads jQuery Twice </a>
 
 </li>
 
 
    <li> 
 <a title="Permanent Link to Using jQuery to Enhance Google Syntax Highligher WordPress Plugin" href="http://sodeve.net/2009/09/using-jquery-to-enhance-google-syntax-highligher-wordpress-plugin/" rel="bookmark"><img src="/thumb/timthumb.php?src=http://sodeve.net/wp-content/uploads/2011/11/jquery3-150x93.png&h=75&w=100&q=95" alt="Using jQuery to Enhance Google Syntax Highligher WordPress Plugin" width="100" height="75" />
 Using jQuery to Enhance Google Syntax Highligher WordPress Plugin </a>
 
 </li>
 
  
</ul>

<p>&nbsp;</p>]]></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 [...]
&nbsp;
<h3>Possibly Related Posts</h3>

 

<ul class="related-posts">

    <li> 
 <a title="Permanent Link to Foxit Reader on Ubuntu Linux (through Wine)" href="http://sodeve.net/2007/12/foxit-reader-on-ubuntu-linux-through-wine/" rel="bookmark"><img src="/thumb/timthumb.php?src=fish1.jpg&h=75&w=100&q=95" alt="Foxit Reader on Ubuntu Linux (through Wine)" width="100" height="75" />
 Foxit Reader on Ubuntu Linux (through Wine) </a>
 
 </li>
 
 
    <li> 
 <a title="Permanent Link to Create Drag-and-Drog File Path Locator" href="http://sodeve.net/2007/03/create-drag-and-drog-file-path-locator/" rel="bookmark"><img src="/thumb/timthumb.php?src=fish2.jpg&h=75&w=100&q=95" alt="Create Drag-and-Drog File Path Locator" width="100" height="75" />
 Create Drag-and-Drog File Path Locator </a>
 
 </li>
 
 
    <li> 
 <a title="Permanent Link to Reading CSV File with .NET" href="http://sodeve.net/2007/04/reading-csv-file-with-net/" rel="bookmark"><img src="/thumb/timthumb.php?src=fish3.jpg&h=75&w=100&q=95" alt="Reading CSV File with .NET" width="100" height="75" />
 Reading CSV File with .NET </a>
 
 </li>
 
  
</ul>


&nbsp;]]></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>
<p>&nbsp;</p>
<h3>Possibly Related Posts</h3>

 

<ul class="related-posts">

    <li> 
 <a title="Permanent Link to Foxit Reader on Ubuntu Linux (through Wine)" href="http://sodeve.net/2007/12/foxit-reader-on-ubuntu-linux-through-wine/" rel="bookmark"><img src="/thumb/timthumb.php?src=fish1.jpg&h=75&w=100&q=95" alt="Foxit Reader on Ubuntu Linux (through Wine)" width="100" height="75" />
 Foxit Reader on Ubuntu Linux (through Wine) </a>
 
 </li>
 
 
    <li> 
 <a title="Permanent Link to Create Drag-and-Drog File Path Locator" href="http://sodeve.net/2007/03/create-drag-and-drog-file-path-locator/" rel="bookmark"><img src="/thumb/timthumb.php?src=fish2.jpg&h=75&w=100&q=95" alt="Create Drag-and-Drog File Path Locator" width="100" height="75" />
 Create Drag-and-Drog File Path Locator </a>
 
 </li>
 
 
    <li> 
 <a title="Permanent Link to Reading CSV File with .NET" href="http://sodeve.net/2007/04/reading-csv-file-with-net/" rel="bookmark"><img src="/thumb/timthumb.php?src=fish3.jpg&h=75&w=100&q=95" alt="Reading CSV File with .NET" width="100" height="75" />
 Reading CSV File with .NET </a>
 
 </li>
 
  
</ul>

<p>&nbsp;</p>]]></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 [...]
&nbsp;
<h3>Possibly Related Posts</h3>

 

<ul class="related-posts">

    <li> 
 <a title="Permanent Link to Download Daftar Bakal Calon Peserta Sertifikasi Guru 2012 DKI Jakarta" href="http://sodeve.net/2011/11/download-daftar-bakal-calon-peserta-sertifikasi-guru-2012-dki-jakarta/" rel="bookmark"><img src="/thumb/timthumb.php?src=fish1.jpg&h=75&w=100&q=95" alt="Download Daftar Bakal Calon Peserta Sertifikasi Guru 2012 DKI Jakarta" width="100" height="75" />
 Download Daftar Bakal Calon Peserta Sertifikasi Guru 2012 DKI Jakarta </a>
 
 </li>
 
 
    <li> 
 <a title="Permanent Link to Download Daftar Bakal Calon Peserta Sertifikasi Guru 2012 Propinsi Bali" href="http://sodeve.net/2011/11/download-daftar-bakal-calon-peserta-sertifikasi-guru-2012-propinsi-bali/" rel="bookmark"><img src="/thumb/timthumb.php?src=fish2.jpg&h=75&w=100&q=95" alt="Download Daftar Bakal Calon Peserta Sertifikasi Guru 2012 Propinsi Bali" width="100" height="75" />
 Download Daftar Bakal Calon Peserta Sertifikasi Guru 2012 Propinsi Bali </a>
 
 </li>
 
 
    <li> 
 <a title="Permanent Link to Download Daftar Bakal Calon Peserta Sertifikasi Guru 2012 Propinsi GORONTALO" href="http://sodeve.net/2011/11/download-daftar-bakal-calon-peserta-sertifikasi-guru-2012-propinsi-gorontalo/" rel="bookmark"><img src="/thumb/timthumb.php?src=fish3.jpg&h=75&w=100&q=95" alt="Download Daftar Bakal Calon Peserta Sertifikasi Guru 2012 Propinsi GORONTALO" width="100" height="75" />
 Download Daftar Bakal Calon Peserta Sertifikasi Guru 2012 Propinsi GORONTALO </a>
 
 </li>
 
  
</ul>


&nbsp;]]></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>
<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>
<div class="sdvExp" id="sert-depag">
<p>&nbsp;</p>
<h3>Download Sertifikasi Guru Departement Agama [klik disini]</h3>
</div>
<div class="child-sert-depag">
<ul class="dlm_download_list"><li><a class="downloadlink" href="http://sodeve.net/downloadz/DI+Yogyakarta" title=" downloaded 31 times" >DI Yogyakarta (31)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/DKI+Jakarta" title=" downloaded 56 times" >DKI Jakarta (56)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Gorontalo" title=" downloaded 14 times" >Gorontalo (14)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Jambi" title=" downloaded 31 times" >Jambi (31)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Jawa+Barat" title=" downloaded 248 times" >Jawa Barat (248)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Jawa+Tengah" title=" downloaded 227 times" >Jawa Tengah (227)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Kalimantan+Selatan" title=" downloaded 51 times" >Kalimantan Selatan (51)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Lampung" title=" downloaded 48 times" >Lampung (48)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Malang" title=" downloaded 26 times" >Malang (26)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/NTB" title=" downloaded 58 times" >NTB (58)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Riau" title=" downloaded 56 times" >Riau (56)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Sulawesi+Selatan" title=" downloaded 77 times" >Sulawesi Selatan (77)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Sumatera+Barat" title=" downloaded 61 times" >Sumatera Barat (61)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Sumatera+Selatan" title=" downloaded 62 times" >Sumatera Selatan (62)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Sumatera+Utara" title=" downloaded 101 times" >Sumatera Utara (101)</a></li><li><a class="downloadlink" href="http://sodeve.net/downloadz/Surabaya" title=" downloaded 125 times" >Surabaya (125)</a></li></ul>
</div>
<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>
<p>&nbsp;</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>
<p><strong>PENTING:</strong> Untuk memastikan anda mendapatkan data terbaru, anda perlu membersihkan <em>cache</em> browser anda. </p>
<p>&nbsp;</p>
<h3>Possibly Related Posts</h3>

 

<ul class="related-posts">

    <li> 
 <a title="Permanent Link to Download Daftar Bakal Calon Peserta Sertifikasi Guru 2012 DKI Jakarta" href="http://sodeve.net/2011/11/download-daftar-bakal-calon-peserta-sertifikasi-guru-2012-dki-jakarta/" rel="bookmark"><img src="/thumb/timthumb.php?src=fish1.jpg&h=75&w=100&q=95" alt="Download Daftar Bakal Calon Peserta Sertifikasi Guru 2012 DKI Jakarta" width="100" height="75" />
 Download Daftar Bakal Calon Peserta Sertifikasi Guru 2012 DKI Jakarta </a>
 
 </li>
 
 
    <li> 
 <a title="Permanent Link to Download Daftar Bakal Calon Peserta Sertifikasi Guru 2012 Propinsi Bali" href="http://sodeve.net/2011/11/download-daftar-bakal-calon-peserta-sertifikasi-guru-2012-propinsi-bali/" rel="bookmark"><img src="/thumb/timthumb.php?src=fish2.jpg&h=75&w=100&q=95" alt="Download Daftar Bakal Calon Peserta Sertifikasi Guru 2012 Propinsi Bali" width="100" height="75" />
 Download Daftar Bakal Calon Peserta Sertifikasi Guru 2012 Propinsi Bali </a>
 
 </li>
 
 
    <li> 
 <a title="Permanent Link to Download Daftar Bakal Calon Peserta Sertifikasi Guru 2012 Propinsi GORONTALO" href="http://sodeve.net/2011/11/download-daftar-bakal-calon-peserta-sertifikasi-guru-2012-propinsi-gorontalo/" rel="bookmark"><img src="/thumb/timthumb.php?src=fish3.jpg&h=75&w=100&q=95" alt="Download Daftar Bakal Calon Peserta Sertifikasi Guru 2012 Propinsi GORONTALO" width="100" height="75" />
 Download Daftar Bakal Calon Peserta Sertifikasi Guru 2012 Propinsi GORONTALO </a>
 
 </li>
 
  
</ul>

<p>&nbsp;</p>]]></content:encoded>
			<wfw:commentRss>http://sodeve.net/2011/11/download-data-terbaru-sertifikasi-guru-2012/feed/</wfw:commentRss>
		<slash:comments>44</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) [...]
&nbsp;
<h3>Possibly Related Posts</h3>

 

<ul class="related-posts">

    <li> 
 <a title="Permanent Link to Windows Oracle Clients Download" href="http://sodeve.net/2011/01/windows-oracle-clients-download/" rel="bookmark"><img src="/thumb/timthumb.php?src=fish1.jpg&h=75&w=100&q=95" alt="Windows Oracle Clients Download" width="100" height="75" />
 Windows Oracle Clients Download </a>
 
 </li>
 
 
    <li> 
 <a title="Permanent Link to Indonesia Won Global Enterprise Challenge (GEC) 2009" href="http://sodeve.net/2009/06/indonesia-won-global-enterprise-challenge-gec-2009/" rel="bookmark"><img src="/thumb/timthumb.php?src=http://sodeve.net/wp-content/uploads/2011/11/gec09_trophy-150x150.jpg&h=75&w=100&q=95" alt="Indonesia Won Global Enterprise Challenge (GEC) 2009" width="100" height="75" />
 Indonesia Won Global Enterprise Challenge (GEC) 2009 </a>
 
 </li>
 
 
    <li> 
 <a title="Permanent Link to Windows 8 x64 Developer Preview w/ developer tools is not working with VMWare Player" href="http://sodeve.net/2011/09/windows-8-x64-developer-preview-w-developer-tools-is-not-working-with-vmware-player/" rel="bookmark"><img src="/thumb/timthumb.php?src=http://sodeve.net/wp-content/uploads/2011/11/win.8.vmware.player.config-300x263-150x150.png&h=75&w=100&q=95" alt="Windows 8 x64 Developer Preview w/ developer tools is not working with VMWare Player" width="100" height="75" />
 Windows 8 x64 Developer Preview w/ developer tools is not working with VMWare Player </a>
 
 </li>
 
  
</ul>


&nbsp;]]></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>


<p>&nbsp;</p>
<h3>Possibly Related Posts</h3>

 

<ul class="related-posts">

    <li> 
 <a title="Permanent Link to Windows Oracle Clients Download" href="http://sodeve.net/2011/01/windows-oracle-clients-download/" rel="bookmark"><img src="/thumb/timthumb.php?src=fish1.jpg&h=75&w=100&q=95" alt="Windows Oracle Clients Download" width="100" height="75" />
 Windows Oracle Clients Download </a>
 
 </li>
 
 
    <li> 
 <a title="Permanent Link to Indonesia Won Global Enterprise Challenge (GEC) 2009" href="http://sodeve.net/2009/06/indonesia-won-global-enterprise-challenge-gec-2009/" rel="bookmark"><img src="/thumb/timthumb.php?src=http://sodeve.net/wp-content/uploads/2011/11/gec09_trophy-150x150.jpg&h=75&w=100&q=95" alt="Indonesia Won Global Enterprise Challenge (GEC) 2009" width="100" height="75" />
 Indonesia Won Global Enterprise Challenge (GEC) 2009 </a>
 
 </li>
 
 
    <li> 
 <a title="Permanent Link to Windows 8 x64 Developer Preview w/ developer tools is not working with VMWare Player" href="http://sodeve.net/2011/09/windows-8-x64-developer-preview-w-developer-tools-is-not-working-with-vmware-player/" rel="bookmark"><img src="/thumb/timthumb.php?src=http://sodeve.net/wp-content/uploads/2011/11/win.8.vmware.player.config-300x263-150x150.png&h=75&w=100&q=95" alt="Windows 8 x64 Developer Preview w/ developer tools is not working with VMWare Player" width="100" height="75" />
 Windows 8 x64 Developer Preview w/ developer tools is not working with VMWare Player </a>
 
 </li>
 
  
</ul>

<p>&nbsp;</p>]]></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 [...]
&nbsp;
<h3>Possibly Related Posts</h3>

 

<ul class="related-posts">

    <li> 
 <a title="Permanent Link to So You Like MS Paint? Here is the Free and Much much better Replacement" href="http://sodeve.net/2007/06/so-you-like-ms-paint-here-is-the-free-and-much-much-better-replacement/" rel="bookmark"><img src="/thumb/timthumb.php?src=fish1.jpg&h=75&w=100&q=95" alt="So You Like MS Paint? Here is the Free and Much much better Replacement" width="100" height="75" />
 So You Like MS Paint? Here is the Free and Much much better Replacement </a>
 
 </li>
 
 
    <li> 
 <a title="Permanent Link to An Even Better Quote of The Day for Your Website" href="http://sodeve.net/2007/04/an-even-better-quote-of-the-day-for-your-website/" rel="bookmark"><img src="/thumb/timthumb.php?src=fish2.jpg&h=75&w=100&q=95" alt="An Even Better Quote of The Day for Your Website" width="100" height="75" />
 An Even Better Quote of The Day for Your Website </a>
 
 </li>
 
 
    <li> 
 <a title="Permanent Link to Here&#8217;s How to Add Quote of The Day into Your Website Instantly" href="http://sodeve.net/2007/03/heres-how-to-add-quote-of-the-day-into-your-website-instantly/" rel="bookmark"><img src="/thumb/timthumb.php?src=fish3.jpg&h=75&w=100&q=95" alt="Here&#8217;s How to Add Quote of The Day into Your Website Instantly" width="100" height="75" />
 Here&#8217;s How to Add Quote of The Day into Your Website Instantly </a>
 
 </li>
 
  
</ul>


&nbsp;]]></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>
<p>&nbsp;</p>
<h3>Possibly Related Posts</h3>

 

<ul class="related-posts">

    <li> 
 <a title="Permanent Link to So You Like MS Paint? Here is the Free and Much much better Replacement" href="http://sodeve.net/2007/06/so-you-like-ms-paint-here-is-the-free-and-much-much-better-replacement/" rel="bookmark"><img src="/thumb/timthumb.php?src=fish1.jpg&h=75&w=100&q=95" alt="So You Like MS Paint? Here is the Free and Much much better Replacement" width="100" height="75" />
 So You Like MS Paint? Here is the Free and Much much better Replacement </a>
 
 </li>
 
 
    <li> 
 <a title="Permanent Link to An Even Better Quote of The Day for Your Website" href="http://sodeve.net/2007/04/an-even-better-quote-of-the-day-for-your-website/" rel="bookmark"><img src="/thumb/timthumb.php?src=fish2.jpg&h=75&w=100&q=95" alt="An Even Better Quote of The Day for Your Website" width="100" height="75" />
 An Even Better Quote of The Day for Your Website </a>
 
 </li>
 
 
    <li> 
 <a title="Permanent Link to Here&#8217;s How to Add Quote of The Day into Your Website Instantly" href="http://sodeve.net/2007/03/heres-how-to-add-quote-of-the-day-into-your-website-instantly/" rel="bookmark"><img src="/thumb/timthumb.php?src=fish3.jpg&h=75&w=100&q=95" alt="Here&#8217;s How to Add Quote of The Day into Your Website Instantly" width="100" height="75" />
 Here&#8217;s How to Add Quote of The Day into Your Website Instantly </a>
 
 </li>
 
  
</ul>

<p>&nbsp;</p>]]></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 [...]
&nbsp;
<h3>Possibly Related Posts</h3>

 

<ul class="related-posts">

    <li> 
 <a title="Permanent Link to Internet Explorer 9 (IE9) for Windows XP released today!!!" href="http://sodeve.net/2011/03/internet-explorer-9-ie9-for-windows-xp-released-today/" rel="bookmark"><img src="/thumb/timthumb.php?src=http://sodeve.net/wp-content/uploads/2011/11/InternetExplorer9-150x150.jpg&h=75&w=100&q=95" alt="Internet Explorer 9 (IE9) for Windows XP released today!!!" width="100" height="75" />
 Internet Explorer 9 (IE9) for Windows XP released today!!! </a>
 
 </li>
 
  
</ul>


&nbsp;]]></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>
<p>&nbsp;</p>
<h3>Possibly Related Posts</h3>

 

<ul class="related-posts">

    <li> 
 <a title="Permanent Link to Internet Explorer 9 (IE9) for Windows XP released today!!!" href="http://sodeve.net/2011/03/internet-explorer-9-ie9-for-windows-xp-released-today/" rel="bookmark"><img src="/thumb/timthumb.php?src=http://sodeve.net/wp-content/uploads/2011/11/InternetExplorer9-150x150.jpg&h=75&w=100&q=95" alt="Internet Explorer 9 (IE9) for Windows XP released today!!!" width="100" height="75" />
 Internet Explorer 9 (IE9) for Windows XP released today!!! </a>
 
 </li>
 
  
</ul>

<p>&nbsp;</p>]]></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 [...]
&nbsp;
<h3>Possibly Related Posts</h3>

 

<ul class="related-posts">

    <li> 
 <a title="Permanent Link to Oracle + IIS + ASP.NET Problem: Oracle client and networking components were not found" href="http://sodeve.net/2009/04/oracle-iis-aspnet-problem-oracle-client-and-networking-components-were-not-found/" rel="bookmark"><img src="/thumb/timthumb.php?src=fish1.jpg&h=75&w=100&q=95" alt="Oracle + IIS + ASP.NET Problem: Oracle client and networking components were not found" width="100" height="75" />
 Oracle + IIS + ASP.NET Problem: Oracle client and networking components were not found </a>
 
 </li>
 
 
    <li> 
 <a title="Permanent Link to Windows Oracle Clients Download" href="http://sodeve.net/2011/01/windows-oracle-clients-download/" rel="bookmark"><img src="/thumb/timthumb.php?src=fish2.jpg&h=75&w=100&q=95" alt="Windows Oracle Clients Download" width="100" height="75" />
 Windows Oracle Clients Download </a>
 
 </li>
 
 
    <li> 
 <a title="Permanent Link to Oracle + IIS + ASP.NET Problem: RESOLVED" href="http://sodeve.net/2009/04/oracle-iis-asp-net-problem-resolved/" rel="bookmark"><img src="/thumb/timthumb.php?src=http://sodeve.net/wp-content/uploads/2011/11/homer_woohoo-150x150.jpg&h=75&w=100&q=95" alt="Oracle + IIS + ASP.NET Problem: RESOLVED" width="100" height="75" />
 Oracle + IIS + ASP.NET Problem: RESOLVED </a>
 
 </li>
 
  
</ul>


&nbsp;]]></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>
<p>&nbsp;</p>
<h3>Possibly Related Posts</h3>

 

<ul class="related-posts">

    <li> 
 <a title="Permanent Link to Oracle + IIS + ASP.NET Problem: Oracle client and networking components were not found" href="http://sodeve.net/2009/04/oracle-iis-aspnet-problem-oracle-client-and-networking-components-were-not-found/" rel="bookmark"><img src="/thumb/timthumb.php?src=fish1.jpg&h=75&w=100&q=95" alt="Oracle + IIS + ASP.NET Problem: Oracle client and networking components were not found" width="100" height="75" />
 Oracle + IIS + ASP.NET Problem: Oracle client and networking components were not found </a>
 
 </li>
 
 
    <li> 
 <a title="Permanent Link to Windows Oracle Clients Download" href="http://sodeve.net/2011/01/windows-oracle-clients-download/" rel="bookmark"><img src="/thumb/timthumb.php?src=fish2.jpg&h=75&w=100&q=95" alt="Windows Oracle Clients Download" width="100" height="75" />
 Windows Oracle Clients Download </a>
 
 </li>
 
 
    <li> 
 <a title="Permanent Link to Oracle + IIS + ASP.NET Problem: RESOLVED" href="http://sodeve.net/2009/04/oracle-iis-asp-net-problem-resolved/" rel="bookmark"><img src="/thumb/timthumb.php?src=http://sodeve.net/wp-content/uploads/2011/11/homer_woohoo-150x150.jpg&h=75&w=100&q=95" alt="Oracle + IIS + ASP.NET Problem: RESOLVED" width="100" height="75" />
 Oracle + IIS + ASP.NET Problem: RESOLVED </a>
 
 </li>
 
  
</ul>

<p>&nbsp;</p>]]></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 [...]
&nbsp;
<h3>Possibly Related Posts</h3>

 

<ul class="related-posts">

    <li> 
 <a title="Permanent Link to [Solved] Ext.Net.InitializationScriptNotFoundException: The Ext.NET initialization script was not found" href="http://sodeve.net/2011/02/solved-ext-net-initializationscriptnotfoundexception-the-ext-net-initialization-script-was-not-found/" rel="bookmark"><img src="/thumb/timthumb.php?src=http://sodeve.net/wp-content/uploads/2011/11/ext.net_-150x62.png&h=75&w=100&q=95" alt="[Solved] Ext.Net.InitializationScriptNotFoundException: The Ext.NET initialization script was not found" width="100" height="75" />
 [Solved] Ext.Net.InitializationScriptNotFoundException: The Ext.NET initialization script was not found </a>
 
 </li>
 
 
    <li> 
 <a title="Permanent Link to Oracle + IIS + ASP.NET Problem: Oracle client and networking components were not found" href="http://sodeve.net/2009/04/oracle-iis-aspnet-problem-oracle-client-and-networking-components-were-not-found/" rel="bookmark"><img src="/thumb/timthumb.php?src=fish1.jpg&h=75&w=100&q=95" alt="Oracle + IIS + ASP.NET Problem: Oracle client and networking components were not found" width="100" height="75" />
 Oracle + IIS + ASP.NET Problem: Oracle client and networking components were not found </a>
 
 </li>
 
 
    <li> 
 <a title="Permanent Link to Integrate Chatting to your existing Web Application" href="http://sodeve.net/2007/03/integrate-chatting-to-your-existing-web-application/" rel="bookmark"><img src="/thumb/timthumb.php?src=fish2.jpg&h=75&w=100&q=95" alt="Integrate Chatting to your existing Web Application" width="100" height="75" />
 Integrate Chatting to your existing Web Application </a>
 
 </li>
 
  
</ul>


&nbsp;]]></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>
<p>&nbsp;</p>
<h3>Possibly Related Posts</h3>

 

<ul class="related-posts">

    <li> 
 <a title="Permanent Link to [Solved] Ext.Net.InitializationScriptNotFoundException: The Ext.NET initialization script was not found" href="http://sodeve.net/2011/02/solved-ext-net-initializationscriptnotfoundexception-the-ext-net-initialization-script-was-not-found/" rel="bookmark"><img src="/thumb/timthumb.php?src=http://sodeve.net/wp-content/uploads/2011/11/ext.net_-150x62.png&h=75&w=100&q=95" alt="[Solved] Ext.Net.InitializationScriptNotFoundException: The Ext.NET initialization script was not found" width="100" height="75" />
 [Solved] Ext.Net.InitializationScriptNotFoundException: The Ext.NET initialization script was not found </a>
 
 </li>
 
 
    <li> 
 <a title="Permanent Link to Oracle + IIS + ASP.NET Problem: Oracle client and networking components were not found" href="http://sodeve.net/2009/04/oracle-iis-aspnet-problem-oracle-client-and-networking-components-were-not-found/" rel="bookmark"><img src="/thumb/timthumb.php?src=fish1.jpg&h=75&w=100&q=95" alt="Oracle + IIS + ASP.NET Problem: Oracle client and networking components were not found" width="100" height="75" />
 Oracle + IIS + ASP.NET Problem: Oracle client and networking components were not found </a>
 
 </li>
 
 
    <li> 
 <a title="Permanent Link to Integrate Chatting to your existing Web Application" href="http://sodeve.net/2007/03/integrate-chatting-to-your-existing-web-application/" rel="bookmark"><img src="/thumb/timthumb.php?src=fish2.jpg&h=75&w=100&q=95" alt="Integrate Chatting to your existing Web Application" width="100" height="75" />
 Integrate Chatting to your existing Web Application </a>
 
 </li>
 
  
</ul>

<p>&nbsp;</p>]]></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! &#160; Possibly Related Posts COMIC: Thousand Words I Love Kompas [...]
&nbsp;
<h3>Possibly Related Posts</h3>

 

<ul class="related-posts">

    <li> 
 <a title="Permanent Link to COMIC: Thousand Words" href="http://sodeve.net/2007/04/comic-thousand-words/" rel="bookmark"><img src="/thumb/timthumb.php?src=http://sodeve.net/wp-content/uploads/2011/11/comic3-150x150.gif&h=75&w=100&q=95" alt="COMIC: Thousand Words" width="100" height="75" />
 COMIC: Thousand Words </a>
 
 </li>
 
 
    <li> 
 <a title="Permanent Link to I Love Kompas" href="http://sodeve.net/2010/12/i_love_kompas/" rel="bookmark"><img src="/thumb/timthumb.php?src=http://sodeve.net/wp-content/uploads/2011/11/gayus-150x150.png&h=75&w=100&q=95" alt="I Love Kompas" width="100" height="75" />
 I Love Kompas </a>
 
 </li>
 
  
</ul>


&nbsp;]]></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>
<p>&nbsp;</p>
<h3>Possibly Related Posts</h3>

 

<ul class="related-posts">

    <li> 
 <a title="Permanent Link to COMIC: Thousand Words" href="http://sodeve.net/2007/04/comic-thousand-words/" rel="bookmark"><img src="/thumb/timthumb.php?src=http://sodeve.net/wp-content/uploads/2011/11/comic3-150x150.gif&h=75&w=100&q=95" alt="COMIC: Thousand Words" width="100" height="75" />
 COMIC: Thousand Words </a>
 
 </li>
 
 
    <li> 
 <a title="Permanent Link to I Love Kompas" href="http://sodeve.net/2010/12/i_love_kompas/" rel="bookmark"><img src="/thumb/timthumb.php?src=http://sodeve.net/wp-content/uploads/2011/11/gayus-150x150.png&h=75&w=100&q=95" alt="I Love Kompas" width="100" height="75" />
 I Love Kompas </a>
 
 </li>
 
  
</ul>

<p>&nbsp;</p>]]></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 [...]
&nbsp;
<h3>Possibly Related Posts</h3>

 

<ul class="related-posts">

    <li> 
 <a title="Permanent Link to Oracle + IIS + ASP.NET Problem: Oracle client and networking components were not found" href="http://sodeve.net/2009/04/oracle-iis-aspnet-problem-oracle-client-and-networking-components-were-not-found/" rel="bookmark"><img src="/thumb/timthumb.php?src=fish1.jpg&h=75&w=100&q=95" alt="Oracle + IIS + ASP.NET Problem: Oracle client and networking components were not found" width="100" height="75" />
 Oracle + IIS + ASP.NET Problem: Oracle client and networking components were not found </a>
 
 </li>
 
 
    <li> 
 <a title="Permanent Link to Oracle + IIS + ASP.NET Problem: RESOLVED" href="http://sodeve.net/2009/04/oracle-iis-asp-net-problem-resolved/" rel="bookmark"><img src="/thumb/timthumb.php?src=http://sodeve.net/wp-content/uploads/2011/11/homer_woohoo-150x150.jpg&h=75&w=100&q=95" alt="Oracle + IIS + ASP.NET Problem: RESOLVED" width="100" height="75" />
 Oracle + IIS + ASP.NET Problem: RESOLVED </a>
 
 </li>
 
 
    <li> 
 <a title="Permanent Link to How to Connect TOra to Oracle Database" href="http://sodeve.net/2009/08/how-to-connect-tora-to-oracle-database/" rel="bookmark"><img src="/thumb/timthumb.php?src=http://sodeve.net/wp-content/uploads/2011/11/Tora_largelogo-150x150.gif&h=75&w=100&q=95" alt="How to Connect TOra to Oracle Database" width="100" height="75" />
 How to Connect TOra to Oracle Database </a>
 
 </li>
 
  
</ul>


&nbsp;]]></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>
<p>&nbsp;</p>
<h3>Possibly Related Posts</h3>

 

<ul class="related-posts">

    <li> 
 <a title="Permanent Link to Oracle + IIS + ASP.NET Problem: Oracle client and networking components were not found" href="http://sodeve.net/2009/04/oracle-iis-aspnet-problem-oracle-client-and-networking-components-were-not-found/" rel="bookmark"><img src="/thumb/timthumb.php?src=fish1.jpg&h=75&w=100&q=95" alt="Oracle + IIS + ASP.NET Problem: Oracle client and networking components were not found" width="100" height="75" />
 Oracle + IIS + ASP.NET Problem: Oracle client and networking components were not found </a>
 
 </li>
 
 
    <li> 
 <a title="Permanent Link to Oracle + IIS + ASP.NET Problem: RESOLVED" href="http://sodeve.net/2009/04/oracle-iis-asp-net-problem-resolved/" rel="bookmark"><img src="/thumb/timthumb.php?src=http://sodeve.net/wp-content/uploads/2011/11/homer_woohoo-150x150.jpg&h=75&w=100&q=95" alt="Oracle + IIS + ASP.NET Problem: RESOLVED" width="100" height="75" />
 Oracle + IIS + ASP.NET Problem: RESOLVED </a>
 
 </li>
 
 
    <li> 
 <a title="Permanent Link to How to Connect TOra to Oracle Database" href="http://sodeve.net/2009/08/how-to-connect-tora-to-oracle-database/" rel="bookmark"><img src="/thumb/timthumb.php?src=http://sodeve.net/wp-content/uploads/2011/11/Tora_largelogo-150x150.gif&h=75&w=100&q=95" alt="How to Connect TOra to Oracle Database" width="100" height="75" />
 How to Connect TOra to Oracle Database </a>
 
 </li>
 
  
</ul>

<p>&nbsp;</p>]]></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 7.68520 seconds, on Feb 8th, 2012 at 9:39 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 9th, 2012 at 9:39 pm UTC -->
<!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
<!-- Quick Cache Is Fully Functional :-) ... A Quick Cache file was just served for ( sssodeveee sodeve.net/category/software/feed/ ) in 0.26904 seconds, on Feb 9th, 2012 at 6:53 am UTC. -->
