<?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; Business &amp; Management</title>
	<atom:link href="http://sodeve.net/category/management/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>Forex Market Hours</title>
		<link>http://sodeve.net/2011/05/forex-market-hours/</link>
		<comments>http://sodeve.net/2011/05/forex-market-hours/#comments</comments>
		<pubDate>Wed, 25 May 2011 11:53:18 +0000</pubDate>
		<dc:creator>Hardono</dc:creator>
				<category><![CDATA[Business & Management]]></category>
		<category><![CDATA[Forex]]></category>

		<guid isPermaLink="false">http://sodeve.net/?p=982</guid>
		<description><![CDATA[Taken from Forex Market Hours &#160; I must read more economic publications on Eurozone and USA Forex Trading by SaxoBank Below is the economic calendars that might affect the rates: Related posts: Internet is a Double Edge Knife, Use it Wisely
Related posts:<ol>
<li><a href='http://sodeve.net/2007/04/internet-is-a-double-edge-knife-use-it-wisely/' rel='bookmark' title='Internet is a Double Edge Knife, Use it Wisely'>Internet is a Double Edge Knife, Use it Wisely</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-983" title="Forex Market Hours" src="http://sodeve.net/wp-content/uploads/2011/05/CropperCapture1.png" alt="" width="605" height="170" /></p>
<h5>Taken from <a title="forex market hours" href="http://www.forexmarkethours.com/" target="_blank">Forex Market Hours</a></h5>
<p>&nbsp;<br />
I must read more economic publications on Eurozone and USA <img src='http://sodeve.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><script src="http://cs-quotes.iitech.dk/InstanceManagementServer/EmbedComponent.ashx?InstanceId=5919" type="text/javascript" charset="utf-8"></script></p>
<div id="csp_component5919" style='text-align:center;width:312px;overflow:hidden;'>
<div id="csp_container5919" style='width:312px;height:273px'>
<div id="csp_flash5919"></div>
</div>
<p><a href='http://sg.saxobank.com/?cmpid=csp5919' style='text-decoration:none;font-size:9px;font-family:Trebuchet MS' target='_blank'>Forex Trading by SaxoBank</a></div>
<p>Below is the economic calendars that might affect the rates:</p>
<link rel="stylesheet" type="text/css" href="http://cdn.fxstreet.com/css/mini/ecocalmini.css" />
    <script type="text/javascript" src="http://cdn.fxstreet.com/scripts/DateFormat.js"></script><br />
    <script type="text/javascript" src="http://cdn.fxstreet.com/scripts/DateFormat.en-US.js"></script></p>
<div id="fxec_minicalendar"></div>
<p>    <script type="text/javascript" src="http://xml.fxstreet.com/ecopro/syndicate/mini.aspx?clientid=fxec_minicalendar&#038;countries={EMU:1,SW:1,UK:1,US:1}&#038;timezone=Singapore Standard Time&#038;pastevents=2&#038;hoursbefore=20&#038;rows=6&#038;columns={Date:1,Time:0,Country:1,Event:1,Concensus:1,Previous:1,Volatility:0,Actual:1}&#038;viewallurl=http://www.fxstreet.com/fundamental/economic-calendar/"></script></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%2F05%2Fforex-market-hours%2F&amp;t=Forex+Market+Hours" 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=Forex+Market+Hours%20-%20http%3A%2F%2Fsodeve.net%3Fp%3D982%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%2F05%2Fforex-market-hours%2F&amp;title=Forex+Market+Hours&amp;annotation=%0D%0ATaken+from+Forex+Market+Hours%0D%0A%26nbsp%3B%0D%0AI+must+read+more+economic+publications+on+Eurozone+and+USA+%3A%29%0D%0A%0D%0A%0D%0A%0D%0A%09%0D%0AForex+Trading+by+SaxoBank%0D%0A%0D%0ABelow+is+the+economic+calendars+that+might+affect+the+rates%3A%0D%0A+++++++%0D%0A++++%0D%0A++++%0D%0A++++%0D%0A++++%0D%0A" 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%2F05%2Fforex-market-hours%2F&amp;title=Forex+Market+Hours&amp;notes=%0D%0ATaken+from+Forex+Market+Hours%0D%0A%26nbsp%3B%0D%0AI+must+read+more+economic+publications+on+Eurozone+and+USA+%3A%29%0D%0A%0D%0A%0D%0A%0D%0A%09%0D%0AForex+Trading+by+SaxoBank%0D%0A%0D%0ABelow+is+the+economic+calendars+that+might+affect+the+rates%3A%0D%0A+++++++%0D%0A++++%0D%0A++++%0D%0A++++%0D%0A++++%0D%0A" 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%2F05%2Fforex-market-hours%2F&amp;title=Forex+Market+Hours&amp;bodytext=%0D%0ATaken+from+Forex+Market+Hours%0D%0A%26nbsp%3B%0D%0AI+must+read+more+economic+publications+on+Eurozone+and+USA+%3A%29%0D%0A%0D%0A%0D%0A%0D%0A%09%0D%0AForex+Trading+by+SaxoBank%0D%0A%0D%0ABelow+is+the+economic+calendars+that+might+affect+the+rates%3A%0D%0A+++++++%0D%0A++++%0D%0A++++%0D%0A++++%0D%0A++++%0D%0A" 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%2F05%2Fforex-market-hours%2F&amp;title=Forex+Market+Hours" 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/05/forex-market-hours/" onclick="addBookmark(event);" title="Forex Market Hours" 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=Forex Market Hours&amp;body=
Taken from Forex Market Hours
&nbsp;
I must read more economic publications on Eurozone and USA :)



	
Forex Trading by SaxoBank

Below is the economic calendars that might affect the rates:
       
    
    
    
    
 - http://sodeve.net/2011/05/forex-market-hours/" 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/internet-is-a-double-edge-knife-use-it-wisely/' rel='bookmark' title='Internet is a Double Edge Knife, Use it Wisely'>Internet is a Double Edge Knife, Use it Wisely</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://sodeve.net/2011/05/forex-market-hours/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Singapore Anti SPAM Bill</title>
		<link>http://sodeve.net/2007/05/singapore-anti-spam-bill/</link>
		<comments>http://sodeve.net/2007/05/singapore-anti-spam-bill/#comments</comments>
		<pubDate>Tue, 01 May 2007 01:14:06 +0000</pubDate>
		<dc:creator>Hardono</dc:creator>
				<category><![CDATA[Business & Management]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://sodeve.net/singapore-anti-spam-bill/</guid>
		<description><![CDATA[Starting June 2007, sending unsolicited electronic message in Singapore will be charged as civil offence. The online document can be viewed <a href="http://www.parliament.gov.sg/Publications/070006.pdf">here</a>.

Summary of the Bill (please READ the online document for clarification, I might summarized it incorrectly):
<ol>
	<li>It applies to commercial email, commercial SMS/MMS</li>
	<li>It doesn't apply to telemarketers</li>
	<li>unsubscribe request is effective maximum 10 business days after the submission of the unsubscribe request </li>
	<li>It applies if the SPAM committed in Singapore (sender/organization is physically reside in Singapore)</li>
	<li>sending email to addresses obtained by harvesting email address in the internet is ILLEGAL</li>
	<li>Buying email address list obtained by harvesting email address in the internet is also ILLEGAL</li>
	<li>The damage is not to exceed SGD$25 per message, and not to exceed SGD$1 Million in total, unless the plaintiff able to show that the SPAM has caused damage more than SGD$1 Million</li>
</ol>
Related posts:<ol>
<li><a href='http://sodeve.net/2007/05/how-to-improve-singapore-parliaments-website/' rel='bookmark' title='How to Improve Singapore Parliament&#8217;s Website'>How to Improve Singapore Parliament&#8217;s Website</a></li>
<li><a href='http://sodeve.net/2007/04/singapore-bus-guide-on-handheld-device/' rel='bookmark' title='Singapore Bus Guide on Handheld Device'>Singapore Bus Guide on Handheld Device</a></li>
<li><a href='http://sodeve.net/2007/04/singapore-government-will-spend-almost-usd1-billion-on-it/' rel='bookmark' title='Singapore Government will spend almost USD$1 Billion on IT'>Singapore Government will spend almost USD$1 Billion on IT</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Starting June 2007, sending unsolicited electronic message in Singapore will be charged as civil offence. The online document can be viewed <a href="http://www.parliament.gov.sg/Publications/070006.pdf">here</a>.</p>
<p>Summary of the Bill (please READ the online document for clarification, I might summarized it incorrectly):</p>
<ol>
<li>It applies to commercial email, commercial SMS/MMS</li>
<li>It doesn&#8217;t apply to telemarketers</li>
<li>unsubscribe request is effective maximum 10 business days after the submission of the unsubscribe request </li>
<li>It applies if the SPAM committed in Singapore (sender/organization is physically reside in Singapore)</li>
<li>sending email to addresses obtained by harvesting email address in the internet is ILLEGAL</li>
<li>Buying email address list obtained by harvesting email address in the internet is also ILLEGAL</li>
<li>The damage is not to exceed SGD$25 per message, and not to exceed SGD$1 Million in total, unless the plaintiff able to show that the SPAM has caused damage more than SGD$1 Million</li>
</ol>
<p>So in order not violating the SPAM law, the email/SMS/MMS should:</p>
<ol>
<li>for email, the subject must started with &#8220;&lt;ADV&gt;&#8221; </li>
<li>Must have unsubscribe facility</li>
</ol>
<p>Hopefully this article helps, If you are going to send any commercial (please refer to the document, the description is quite long) message, please make sure you are not violating the law. </p>
<p>PS: Hmm&#8230; although it sounds like I&#8217;m advocating the spammers, I&#8217;m not. I hate spammers. </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%2F2007%2F05%2Fsingapore-anti-spam-bill%2F&amp;t=Singapore+Anti+SPAM+Bill" 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=Singapore+Anti+SPAM+Bill%20-%20http%3A%2F%2Fsodeve.net%3Fp%3D190%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%2F2007%2F05%2Fsingapore-anti-spam-bill%2F&amp;title=Singapore+Anti+SPAM+Bill&amp;annotation=Starting+June+2007%2C+sending+unsolicited+electronic+message+in+Singapore+will+be+charged+as+civil+offence.+The+online+document+can+be+viewed+here.%0D%0A%0D%0ASummary+of+the+Bill+%28please+READ+the+online+document+for+clarification%2C+I+might+summarized+it+incorrectly%29%3A%0D%0A%0D%0A%09It+applies+to+commercial+email%2C+commercial+SMS%2FMMS%0D%0A%09It+doesn%27t+apply+to+telemarketers%0D%0A%09unsubscribe+request+is+effective+maximum+10+business+days+after+the+submission+of+the+unsubscribe+request+%0D%0A%09It+applies+if+the+SPAM+committed+in+Singapore+%28sender%2Forganization+is+physically+reside+in+Singapore%29%0D%0A%09sending+email+to+addresses+obtained+by+harvesting+email+address+in+the+internet+is+ILLEGAL%0D%0A%09Buying+email+address+list+obtained+by+harvesting+email+address+in+the+internet+is+also+ILLEGAL%0D%0A%09The+damage+is+not+to+exceed+SGD%2425+per+message%2C+and+not+to+exceed+SGD%241+Million+in+total%2C+unless+the+plaintiff+able+to+show+that+the+SPAM+has+caused+damage+more+than+SGD%241+Million%0D%0A" 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%2F2007%2F05%2Fsingapore-anti-spam-bill%2F&amp;title=Singapore+Anti+SPAM+Bill&amp;notes=Starting+June+2007%2C+sending+unsolicited+electronic+message+in+Singapore+will+be+charged+as+civil+offence.+The+online+document+can+be+viewed+here.%0D%0A%0D%0ASummary+of+the+Bill+%28please+READ+the+online+document+for+clarification%2C+I+might+summarized+it+incorrectly%29%3A%0D%0A%0D%0A%09It+applies+to+commercial+email%2C+commercial+SMS%2FMMS%0D%0A%09It+doesn%27t+apply+to+telemarketers%0D%0A%09unsubscribe+request+is+effective+maximum+10+business+days+after+the+submission+of+the+unsubscribe+request+%0D%0A%09It+applies+if+the+SPAM+committed+in+Singapore+%28sender%2Forganization+is+physically+reside+in+Singapore%29%0D%0A%09sending+email+to+addresses+obtained+by+harvesting+email+address+in+the+internet+is+ILLEGAL%0D%0A%09Buying+email+address+list+obtained+by+harvesting+email+address+in+the+internet+is+also+ILLEGAL%0D%0A%09The+damage+is+not+to+exceed+SGD%2425+per+message%2C+and+not+to+exceed+SGD%241+Million+in+total%2C+unless+the+plaintiff+able+to+show+that+the+SPAM+has+caused+damage+more+than+SGD%241+Million%0D%0A" 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%2F2007%2F05%2Fsingapore-anti-spam-bill%2F&amp;title=Singapore+Anti+SPAM+Bill&amp;bodytext=Starting+June+2007%2C+sending+unsolicited+electronic+message+in+Singapore+will+be+charged+as+civil+offence.+The+online+document+can+be+viewed+here.%0D%0A%0D%0ASummary+of+the+Bill+%28please+READ+the+online+document+for+clarification%2C+I+might+summarized+it+incorrectly%29%3A%0D%0A%0D%0A%09It+applies+to+commercial+email%2C+commercial+SMS%2FMMS%0D%0A%09It+doesn%27t+apply+to+telemarketers%0D%0A%09unsubscribe+request+is+effective+maximum+10+business+days+after+the+submission+of+the+unsubscribe+request+%0D%0A%09It+applies+if+the+SPAM+committed+in+Singapore+%28sender%2Forganization+is+physically+reside+in+Singapore%29%0D%0A%09sending+email+to+addresses+obtained+by+harvesting+email+address+in+the+internet+is+ILLEGAL%0D%0A%09Buying+email+address+list+obtained+by+harvesting+email+address+in+the+internet+is+also+ILLEGAL%0D%0A%09The+damage+is+not+to+exceed+SGD%2425+per+message%2C+and+not+to+exceed+SGD%241+Million+in+total%2C+unless+the+plaintiff+able+to+show+that+the+SPAM+has+caused+damage+more+than+SGD%241+Million%0D%0A" 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%2F2007%2F05%2Fsingapore-anti-spam-bill%2F&amp;title=Singapore+Anti+SPAM+Bill" 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/2007/05/singapore-anti-spam-bill/" onclick="addBookmark(event);" title="Singapore Anti SPAM Bill" 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=Singapore Anti SPAM Bill&amp;body=Starting June 2007, sending unsolicited electronic message in Singapore will be charged as civil offence. The online document can be viewed here.

Summary of the Bill (please READ the online document for clarification, I might summarized it incorrectly):

	It applies to commercial email, commercial SMS/MMS
	It doesn't apply to telemarketers
	unsubscribe request is effective maximum 10 business days after the submission of the unsubscribe request 
	It applies if the SPAM committed in Singapore (sender/organization is physically reside in Singapore)
	sending email to addresses obtained by harvesting email address in the internet is ILLEGAL
	Buying email address list obtained by harvesting email address in the internet is also ILLEGAL
	The damage is not to exceed SGD$25 per message, and not to exceed SGD$1 Million in total, unless the plaintiff able to show that the SPAM has caused damage more than SGD$1 Million
 - http://sodeve.net/2007/05/singapore-anti-spam-bill/" 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/05/how-to-improve-singapore-parliaments-website/' rel='bookmark' title='How to Improve Singapore Parliament&#8217;s Website'>How to Improve Singapore Parliament&#8217;s Website</a></li>
<li><a href='http://sodeve.net/2007/04/singapore-bus-guide-on-handheld-device/' rel='bookmark' title='Singapore Bus Guide on Handheld Device'>Singapore Bus Guide on Handheld Device</a></li>
<li><a href='http://sodeve.net/2007/04/singapore-government-will-spend-almost-usd1-billion-on-it/' rel='bookmark' title='Singapore Government will spend almost USD$1 Billion on IT'>Singapore Government will spend almost USD$1 Billion on IT</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://sodeve.net/2007/05/singapore-anti-spam-bill/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Idea of Opening Computer/Internet Rental</title>
		<link>http://sodeve.net/2006/01/idea-of-opening-computerinternet-rental/</link>
		<comments>http://sodeve.net/2006/01/idea-of-opening-computerinternet-rental/#comments</comments>
		<pubDate>Mon, 02 Jan 2006 01:44:00 +0000</pubDate>
		<dc:creator>Hardono</dc:creator>
				<category><![CDATA[Business & Management]]></category>
		<category><![CDATA[procrastinate]]></category>

		<guid isPermaLink="false">http://sodeve.net/uncategorized/idea-of-opening-computerinternet-rental/</guid>
		<description><![CDATA[<p style="text-align: justify">Since frequently visited <span style="font-style: italic">Warnet (Warung Internet) </span>or Internet Rental on my secondary school time, i always wanted to open my own. Recently i had discussion with my friend-he's a good businessman, with good entrepreneurial instinct- about opening business venture in Indonesia. When i mentioned Warnet, he quickly rebuked my idea saying that he already had a discussion and calculation, which concluded that the particular business idea is having very small ROI with a huge TCO. Unfortunately, that time i couldn't make my argument since i never actually research the ROI and TCO of that business model.</p>
So hopefully for the next few days i'll carefully research this topic.

Maybe today i'll try to write about TCO (Total Cost of Ownership)

Initial costs cover the costs to start the business. These costs are:
<ul>
	<li>leasing the building</li>
	<li>buying new hardwares and softwares</li>
	<li>revamping the building</li>
	<li>buying furnitures</li>
	<li>initial advertising.</li>
</ul>
No related posts.]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify">Since frequently visited <span style="font-style: italic">Warnet (Warung Internet) </span>or Internet Rental on my secondary school time, i always wanted to open my own. Recently i had discussion with my friend-he&#8217;s a good businessman, with good entrepreneurial instinct- about opening business venture in Indonesia. When i mentioned Warnet, he quickly rebuked my idea saying that he already had a discussion and calculation, which concluded that the particular business idea is having very small ROI with a huge TCO. Unfortunately, that time i couldn&#8217;t make my argument since i never actually research the ROI and TCO of that business model.</p>
<p>So hopefully for the next few days i&#8217;ll carefully research this topic.</p>
<p>Maybe today i&#8217;ll try to write about TCO (Total Cost of Ownership)</p>
<p>Initial costs cover the costs to start the business. These costs are:</p>
<ul>
<li>leasing the building</li>
<li>buying new hardwares and softwares</li>
<li>revamping the building</li>
<li>buying furnitures</li>
<li>initial advertising.</li>
</ul>
<p>Operational costs cover the costs to run day to day business. These costs are:</p>
<ul>
<li>Electricity</li>
<li>Maintenance</li>
<li>Salary</li>
<li>Security</li>
</ul>
<p>Hmm.. while i was pondering about the idea, i went to Wikipedia, realizing that i have so many things to read about <a href="http://en.wikipedia.org/wiki/Category:Finance">corporate finance</a></p>
<p>I wish i can just download them into my brain like Neo did <img src='http://sodeve.net/wp-includes/images/smilies/icon_smile.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%2F2006%2F01%2Fidea-of-opening-computerinternet-rental%2F&amp;t=Idea+of+Opening+Computer%2FInternet+Rental" 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=Idea+of+Opening+Computer%2FInternet+Rental%20-%20http%3A%2F%2Fsodeve.net%3Fp%3D86%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%2F2006%2F01%2Fidea-of-opening-computerinternet-rental%2F&amp;title=Idea+of+Opening+Computer%2FInternet+Rental&amp;annotation=Since+frequently+visited+Warnet+%28Warung+Internet%29+or+Internet+Rental+on+my+secondary+school+time%2C+i+always+wanted+to+open+my+own.+Recently+i+had+discussion+with+my+friend-he%27s+a+good+businessman%2C+with+good+entrepreneurial+instinct-+about+opening+business+venture+in+Indonesia.+When+i+mentioned+Warnet%2C+he+quickly+rebuked+my+idea+saying+that+he+already+had+a+discussion+and+calculation%2C+which+concluded+that+the+particular+business+idea+is+having+very+small+ROI+with+a+huge+TCO.+Unfortunately%2C+that+time+i+couldn%27t+make+my+argument+since+i+never+actually+research+the+ROI+and+TCO+of+that+business+model.%0ASo+hopefully+for+the+next+few+days+i%27ll+carefully+research+this+topic.%0A%0AMaybe+today+i%27ll+try+to+write+about+TCO+%28Total+Cost+of+Ownership%29%0A%0AInitial+costs+cover+the+costs+to+start+the+business.+These+costs+are%3A%0A%0A%09leasing+the+building%0A%09buying+new+hardwares+and+softwares%0A%09revamping+the+building%0A%09buying+furnitures%0A%09initial+advertising.%0A" 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%2F2006%2F01%2Fidea-of-opening-computerinternet-rental%2F&amp;title=Idea+of+Opening+Computer%2FInternet+Rental&amp;notes=Since+frequently+visited+Warnet+%28Warung+Internet%29+or+Internet+Rental+on+my+secondary+school+time%2C+i+always+wanted+to+open+my+own.+Recently+i+had+discussion+with+my+friend-he%27s+a+good+businessman%2C+with+good+entrepreneurial+instinct-+about+opening+business+venture+in+Indonesia.+When+i+mentioned+Warnet%2C+he+quickly+rebuked+my+idea+saying+that+he+already+had+a+discussion+and+calculation%2C+which+concluded+that+the+particular+business+idea+is+having+very+small+ROI+with+a+huge+TCO.+Unfortunately%2C+that+time+i+couldn%27t+make+my+argument+since+i+never+actually+research+the+ROI+and+TCO+of+that+business+model.%0ASo+hopefully+for+the+next+few+days+i%27ll+carefully+research+this+topic.%0A%0AMaybe+today+i%27ll+try+to+write+about+TCO+%28Total+Cost+of+Ownership%29%0A%0AInitial+costs+cover+the+costs+to+start+the+business.+These+costs+are%3A%0A%0A%09leasing+the+building%0A%09buying+new+hardwares+and+softwares%0A%09revamping+the+building%0A%09buying+furnitures%0A%09initial+advertising.%0A" 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%2F2006%2F01%2Fidea-of-opening-computerinternet-rental%2F&amp;title=Idea+of+Opening+Computer%2FInternet+Rental&amp;bodytext=Since+frequently+visited+Warnet+%28Warung+Internet%29+or+Internet+Rental+on+my+secondary+school+time%2C+i+always+wanted+to+open+my+own.+Recently+i+had+discussion+with+my+friend-he%27s+a+good+businessman%2C+with+good+entrepreneurial+instinct-+about+opening+business+venture+in+Indonesia.+When+i+mentioned+Warnet%2C+he+quickly+rebuked+my+idea+saying+that+he+already+had+a+discussion+and+calculation%2C+which+concluded+that+the+particular+business+idea+is+having+very+small+ROI+with+a+huge+TCO.+Unfortunately%2C+that+time+i+couldn%27t+make+my+argument+since+i+never+actually+research+the+ROI+and+TCO+of+that+business+model.%0ASo+hopefully+for+the+next+few+days+i%27ll+carefully+research+this+topic.%0A%0AMaybe+today+i%27ll+try+to+write+about+TCO+%28Total+Cost+of+Ownership%29%0A%0AInitial+costs+cover+the+costs+to+start+the+business.+These+costs+are%3A%0A%0A%09leasing+the+building%0A%09buying+new+hardwares+and+softwares%0A%09revamping+the+building%0A%09buying+furnitures%0A%09initial+advertising.%0A" 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%2F2006%2F01%2Fidea-of-opening-computerinternet-rental%2F&amp;title=Idea+of+Opening+Computer%2FInternet+Rental" 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/2006/01/idea-of-opening-computerinternet-rental/" onclick="addBookmark(event);" title="Idea of Opening Computer/Internet Rental" 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=Idea of Opening Computer/Internet Rental&amp;body=Since frequently visited Warnet (Warung Internet) or Internet Rental on my secondary school time, i always wanted to open my own. Recently i had discussion with my friend-he's a good businessman, with good entrepreneurial instinct- about opening business venture in Indonesia. When i mentioned Warnet, he quickly rebuked my idea saying that he already had a discussion and calculation, which concluded that the particular business idea is having very small ROI with a huge TCO. Unfortunately, that time i couldn't make my argument since i never actually research the ROI and TCO of that business model.
So hopefully for the next few days i'll carefully research this topic.

Maybe today i'll try to write about TCO (Total Cost of Ownership)

Initial costs cover the costs to start the business. These costs are:

	leasing the building
	buying new hardwares and softwares
	revamping the building
	buying furnitures
	initial advertising.
 - http://sodeve.net/2006/01/idea-of-opening-computerinternet-rental/" 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>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://sodeve.net/2006/01/idea-of-opening-computerinternet-rental/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for ( sssodeveee sodeve.net/category/management/feed/ ) in 2.33743 seconds, on May 21st, 2012 at 9:31 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on May 22nd, 2012 at 9:31 pm UTC -->
