<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>antonrifco 's memoir</title>
	<atom:link href="http://antonrifco.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://antonrifco.wordpress.com</link>
	<description>-- psych --</description>
	<lastBuildDate>Wed, 20 Jan 2010 02:18:21 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='antonrifco.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/2ca61a15c71ce1d8aa16f416f1f7ca86?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>antonrifco 's memoir</title>
		<link>http://antonrifco.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://antonrifco.wordpress.com/osd.xml" title="antonrifco &#8217;s memoir" />
		<item>
		<title>Difference between MySQL&#8217;s InnoDB and MyISAM</title>
		<link>http://antonrifco.wordpress.com/2010/01/20/difference-between-mysqls-innodb-and-myisam/</link>
		<comments>http://antonrifco.wordpress.com/2010/01/20/difference-between-mysqls-innodb-and-myisam/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 02:18:21 +0000</pubDate>
		<dc:creator>antonrifco</dc:creator>
				<category><![CDATA[Komputer]]></category>
		<category><![CDATA[compare]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[difference]]></category>
		<category><![CDATA[innodb]]></category>
		<category><![CDATA[myisam]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://antonrifco.wordpress.com/?p=145</guid>
		<description><![CDATA[MySQL has two primary storange engines: MyISAM and InnoDB. Each has its own performance characteristics and considerations. In the broadest sense MyISAM is good for read-heavy data and InnoDB is good for write-heavy data, though there are cases where the opposite is true. The biggest gotcha is how the two differ with respect to the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonrifco.wordpress.com&blog=1454490&post=145&subd=antonrifco&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p>MySQL has two primary storange engines: MyISAM and InnoDB. Each has its own performance characteristics and considerations. In the broadest sense MyISAM is good for read-heavy data and InnoDB is good for write-heavy data, though there are cases where the opposite is true. The biggest gotcha is how the two differ with respect to the COUNT function.</p>
<blockquote><p>ISAM = Indexed Sequential Access Method, while InnoDB is named after the engine&#8217;s creator <strong>Innobase Oy</strong></p></blockquote>
<p>MyISAM keeps an internal cache of table meta-data like the number of rows. This means that, generally, COUNT(*) incurs no additional cost for a well-structured query. InnoDB, however, has no such cache. For a concrete example, let’s say we’re trying to paginate a query. If you have a query SELECT * FROM users LIMIT 5,10, let’s say, running SELECT COUNT(*) FROM users LIMIT 5,10 is essentially free with MyISAM but takes the same amount of time as the first query with InnoDB. MySQL has a SQL_CALC_FOUND_ROWS option which tells InnoDB to calculate the number of rows as it runs the query, which can then be retreived by executing SELECT FOUND_ROWS(). This is very MySQL-specific, but can be necessary in certain situations, particularly if you use InnoDB for its other features (e.g., row-level locking, stored procedures, etc.).</p>
<p>======= BAHASA INDONESIA ========</p>
<p>MySQL memiliki dua mesin storange utama: MyISAM dan InnoDB. Masing-masing memiliki karakteristik performa dan pertimbangan. Dalam arti yang luas MyISAM baik untuk membaca-data (red) dan InnoDB baik untuk menulis data (write), meskipun ada kasus dimana kebalikannya yang benar. Perbedaan utama adalah bagaimana keduanya berbeda dalam penanganan fungsi COUNT.</p>
<p>ISAM = Indexed Sequential Metode akses, sedangkan InnoDB ini dinamakan berdasarkan penciptanya : Innobase Oy</p>
<p>MyISAM menyimpan cache internal tabel meta-data seperti jumlah baris. Ini berarti bahwa, pada umumnya, COUNT (*) berlangsung tanpa biaya tambahan untuk query yang terstruktur dengan baik. InnoDB, bagaimanapun, tidak memiliki cache tersebut. Untuk contoh konkret, mari kita mengatakan bahwa kita mencoba untuk penomoran pd halaman table (pagination). Jika Anda memiliki pertanyaan SELECT * FROM users LIMIT 5,10, katakanlah, menjalankan SELECT COUNT (*) FROM users LIMIT 5,10 pada dasarnya gratis dengan MyISAM tapi mengambil jumlah waktu yang sama sebagai permintaan pertama dengan InnoDB. MySQL memiliki opsi  SQL_CALC_FOUND_ROWS pada InnoDB untuk menghitung jumlah baris seperti menjalankan permintaan, yang kemudian dapat retreived dengan mengeksekusi SELECT FOUND_ROWS (). Hal ini sangat MySQL-spesifik, tetapi dapat diperlukan dalam situasi tertentu, terutama jika Anda menggunakan InnoDB untuk fitur lainnya (misalnya, tingkat baris penguncian, stored procedure, dll).</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/antonrifco.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/antonrifco.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/antonrifco.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/antonrifco.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/antonrifco.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/antonrifco.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/antonrifco.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/antonrifco.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/antonrifco.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/antonrifco.wordpress.com/145/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonrifco.wordpress.com&blog=1454490&post=145&subd=antonrifco&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://antonrifco.wordpress.com/2010/01/20/difference-between-mysqls-innodb-and-myisam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/178324dc85fadc41b37b869c420e5499?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">antonrifco</media:title>
		</media:content>
	</item>
		<item>
		<title>Twitter status update via curl</title>
		<link>http://antonrifco.wordpress.com/2010/01/10/twitter-status-update-via-curl/</link>
		<comments>http://antonrifco.wordpress.com/2010/01/10/twitter-status-update-via-curl/#comments</comments>
		<pubDate>Sun, 10 Jan 2010 12:46:48 +0000</pubDate>
		<dc:creator>antonrifco</dc:creator>
				<category><![CDATA[Komputer]]></category>
		<category><![CDATA[Tips 'n tricks]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[curl]]></category>
		<category><![CDATA[status update]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://antonrifco.wordpress.com/?p=141</guid>
		<description><![CDATA[Sometimes,,you just need to waste your time just to sending status update to your twitter.
Here&#8217;s my suggestion to make your wasting time more wasted  ,, by sending twitter status update via curl in bash scripting environment.
vi some-file.sh, and write this bunch of code :

#!/bin/bash
/usr/local/bin/curl --basic --proxy 10.2.249.250:8080 --user $1:$2 --data status="$3" twitter.com/statuses/update.xml

Then save the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonrifco.wordpress.com&blog=1454490&post=141&subd=antonrifco&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p>Sometimes,,you just need to waste your time just to sending status update to your twitter.</p>
<p>Here&#8217;s my suggestion to make your wasting time more wasted <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ,, by sending twitter status update via curl in bash scripting environment.</p>
<p>vi some-file.sh, and write this bunch of code :<br />
<code><br />
#!/bin/bash<br />
/usr/local/bin/curl --basic --proxy 10.2.249.250:8080 --user $1:$2 --data status="$3" twitter.com/statuses/update.xml<br />
</code></p>
<p>Then save the file using (:wq!)<br />
give <code>chmod +x some-file.sh</code> to your script<br />
Here you can call your script using :<br />
<code>./some-file.sh username passwd "your status"</code></p>
<p>I recommend to use (&#8220;) in your status,,,so that the script can detect that everything in between &#8221; is your status..</p>
<p>have fun !</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/antonrifco.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/antonrifco.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/antonrifco.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/antonrifco.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/antonrifco.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/antonrifco.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/antonrifco.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/antonrifco.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/antonrifco.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/antonrifco.wordpress.com/141/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonrifco.wordpress.com&blog=1454490&post=141&subd=antonrifco&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://antonrifco.wordpress.com/2010/01/10/twitter-status-update-via-curl/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/178324dc85fadc41b37b869c420e5499?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">antonrifco</media:title>
		</media:content>
	</item>
		<item>
		<title>Stand Up for the Champion !!</title>
		<link>http://antonrifco.wordpress.com/2009/12/07/stand-up-for-the-champion/</link>
		<comments>http://antonrifco.wordpress.com/2009/12/07/stand-up-for-the-champion/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 10:03:25 +0000</pubDate>
		<dc:creator>antonrifco</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[champion]]></category>
		<category><![CDATA[lyric]]></category>
		<category><![CDATA[spirit songs]]></category>

		<guid isPermaLink="false">http://antonrifco.wordpress.com/?p=138</guid>
		<description><![CDATA[
I was built to be the best
Number one and nothing less
Leave me to my destiny
I have waited patiently
I have vision’ oh I believe
I know I can count on me
(chorus)
So stand up for the champions
For the champions stand up
Stand up stand up
For the champions for the champions
Stand up for the champions
For the champions stand up
Stand up [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonrifco.wordpress.com&blog=1454490&post=138&subd=antonrifco&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><div class="snap_preview">
<p>I was built to be the best<br />
Number one and nothing less<br />
Leave me to my destiny<br />
I have waited patiently<br />
I have vision’ oh I believe<br />
I know I can count on me</p>
<p>(chorus)<br />
So stand up for the champions<br />
For the champions stand up<br />
Stand up stand up<br />
For the champions for the champions<br />
Stand up for the champions<br />
For the champions stand up<br />
Stand up stand up<br />
For the champions for the champions<br />
Stand up</p>
<p>Here we go it’s getting close<br />
Now it’s just who wants it most<br />
It’s just like that’s how it is<br />
Cause we have our strengths and weaknesses</p>
<p>Oh I have vision’ oh can’t you see<br />
I’m on the move make way for me</p>
<p>(chorus)<br />
So stand up for the champions<br />
For the champions stand up<br />
Stand up stand up<br />
For the champions for the champions<br />
Stand up for the champions<br />
For the champions stand up<br />
Stand up stand up<br />
For the champions for the champions<br />
Stand up</p>
<p>4x<br />
And when I fall down<br />
I have to pick myself back up</p>
<p>So stand up stand up for the champions<br />
For the champions stand up<br />
Stand up stand up<br />
For the champions for the champions<br />
Stand up</p>
<p>4x<br />
Stand up stand up<br />
For the champions for the champions</p>
<p>Stand up</p>
</div>
<div id="_mcePaste" style="overflow:hidden;position:absolute;left:-10000px;top:0;width:1px;height:1px;">
<h3 class="post-title entry-title"><a href="http://mp3-hits-download.blogspot.com/2009/10/robbie-williams-bodies-download-mp3-new.html">Robbie Williams &#8211; Bodies Download mp3 new single 2009</a></h3>
</div>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/antonrifco.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/antonrifco.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/antonrifco.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/antonrifco.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/antonrifco.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/antonrifco.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/antonrifco.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/antonrifco.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/antonrifco.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/antonrifco.wordpress.com/138/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonrifco.wordpress.com&blog=1454490&post=138&subd=antonrifco&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://antonrifco.wordpress.com/2009/12/07/stand-up-for-the-champion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/178324dc85fadc41b37b869c420e5499?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">antonrifco</media:title>
		</media:content>
	</item>
		<item>
		<title>Yahoo Hack Day submit</title>
		<link>http://antonrifco.wordpress.com/2009/11/22/yahoo-hack-day-submit/</link>
		<comments>http://antonrifco.wordpress.com/2009/11/22/yahoo-hack-day-submit/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 06:53:43 +0000</pubDate>
		<dc:creator>antonrifco</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://antonrifco.wordpress.com/2009/11/22/yahoo-hack-day-submit/</guid>
		<description><![CDATA[In the era of globalization, people tends to meet another people from different country, culture, and most probably (and usually most annoyingly) different language. Here I propose the idea to have a single framework for social media platform that can translate everything to our language preference. And by everything here, I mean the platform should [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonrifco.wordpress.com&blog=1454490&post=130&subd=antonrifco&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p>In the era of globalization, people tends to meet another people from different country, culture, and most probably (and usually most annoyingly) different language. Here I propose the idea to have a single framework for social media platform that can translate everything to our language preference. And by everything here, I mean the platform should be able to translate every posting from our friends and followee (people that we follow).</p>
<p>In the mean time, from last night work, I&#8217;m just able to develop the application for twitter user. Next I&#8217;ll try to collaborate with another source of social media platform (like Yahoo MeMe, Google Wave, Facebook, and another (perhaps it will be open for dynamic service addition, just like the concept of Pidgin Messenger)).</p>
<p>The basic idea of this application is mostly supported by YQL (Yahoo Query Language). Here I&#8217;m using Open Data Table (ODT) to translate with google translate. Why Google? Because, nowadays, I think they have supported most language in the earth ( I&#8217;ll try BabelFish soon as they translate Indonesian language ;P ).</p>
<p>To access twitter, I directly access twitter API in their site.  And last but not the least, I use YQL IP geolocator to retrieve information about the user (language preference advise). But of course they can alse change their preference manually.  Thanks for giving us chance to hacking this day.  Good day,</p>
<p>&nbsp;</p>
<p>try at : <a title="dealienate your socials" href="http://antonrifco.000space.com/x/index.php" target="_blank">http://antonrifco.000space.com/x/index.php</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/antonrifco.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/antonrifco.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/antonrifco.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/antonrifco.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/antonrifco.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/antonrifco.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/antonrifco.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/antonrifco.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/antonrifco.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/antonrifco.wordpress.com/130/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonrifco.wordpress.com&blog=1454490&post=130&subd=antonrifco&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://antonrifco.wordpress.com/2009/11/22/yahoo-hack-day-submit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/178324dc85fadc41b37b869c420e5499?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">antonrifco</media:title>
		</media:content>
	</item>
		<item>
		<title>JqGrid on Codeigniter</title>
		<link>http://antonrifco.wordpress.com/2009/09/25/jqgrid-on-codeigniter/</link>
		<comments>http://antonrifco.wordpress.com/2009/09/25/jqgrid-on-codeigniter/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 13:54:49 +0000</pubDate>
		<dc:creator>antonrifco</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[jqgrid]]></category>
		<category><![CDATA[portal]]></category>

		<guid isPermaLink="false">http://antonrifco.wordpress.com/?p=127</guid>
		<description><![CDATA[Lately I&#8217;m developing a portal , using codeigniter as framework, and jqgrid as view grid,,
It&#8217;s so great and maximize the lookability of my site.
Later I&#8217;ll describe more about how to things&#8230;
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonrifco.wordpress.com&blog=1454490&post=127&subd=antonrifco&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p>Lately I&#8217;m developing a portal , using codeigniter as framework, and jqgrid as view grid,,</p>
<p>It&#8217;s so great and maximize the lookability of my site.</p>
<p>Later I&#8217;ll describe more about how to things&#8230;</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/antonrifco.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/antonrifco.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/antonrifco.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/antonrifco.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/antonrifco.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/antonrifco.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/antonrifco.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/antonrifco.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/antonrifco.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/antonrifco.wordpress.com/127/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonrifco.wordpress.com&blog=1454490&post=127&subd=antonrifco&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://antonrifco.wordpress.com/2009/09/25/jqgrid-on-codeigniter/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/178324dc85fadc41b37b869c420e5499?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">antonrifco</media:title>
		</media:content>
	</item>
		<item>
		<title>Help me : SQLite versus mySQL in PHP</title>
		<link>http://antonrifco.wordpress.com/2009/03/27/help-me-sqlite-versus-mysql-in-php/</link>
		<comments>http://antonrifco.wordpress.com/2009/03/27/help-me-sqlite-versus-mysql-in-php/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 10:31:53 +0000</pubDate>
		<dc:creator>antonrifco</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[sqlite]]></category>
		<category><![CDATA[TCL]]></category>

		<guid isPermaLink="false">http://antonrifco.wordpress.com/?p=121</guid>
		<description><![CDATA[Edited: Thanks to &#8220;no one&#8221; for comment on transaction mode INSERTION, with BEGIN IMMEDIATE-COMMIT pair that wrap INSERT QUERY. I got double perfomance than MySQL with this (1000 insertion, Mysql took 0.1 second, and sqlite 0.05 second)
Hi guys,
Lately, I read in http://www.sqlite.org/speed.html, that sqlite is a bit faster than mysql and postgreSQL. But, when I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonrifco.wordpress.com&blog=1454490&post=121&subd=antonrifco&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><blockquote><p><span style="color:#0000ff;">Edited: Thanks to &#8220;no one&#8221; for comment on transaction mode INSERTION, with BEGIN IMMEDIATE-COMMIT pair that wrap INSERT QUERY. I got double perfomance than MySQL with this (1000 insertion, Mysql took 0.1 second, and sqlite 0.05 second)</span></p></blockquote>
<p>Hi guys,</p>
<p>Lately, I read in <a href="http://www.sqlite.org/speed.html" target="_blank">http://www.sqlite.org/speed.html</a>, that sqlite is a bit faster than mysql and postgreSQL. But, when I perform a little testing to compare them in PHP, I got a contrast result.</p>
<blockquote><p>For both testing, I use this table :<br />
<code>CREATE TABLE test (a varchar(20) PRIMARY KEY, b varchar(20), c varchar(20), d varchar(20), e varchar(20),  f varchar(20), g varchar(20), h varchar(20),  i varchar(20), j varchar(20))</code></p></blockquote>
<p>for that table, I perform 5000 insert for both sqlite and mysql :<br />
here&#8217;s for sqlite code :<br />
=============== sqlite-test.php ===============<br />
<code><br />
$time_start = microtime(true);<br />
$db = sqlite_open('pegawai.db', 0666, $sqliteerror);</code></p>
<p><code>sqlite_exec($db, "PRAGMA synchronous = OFF;");<br />
for($i = 0; $i &lt; 5000; $i++)<br />
{<br />
$sql = "INSERT INTO test VALUES ('a$i','b$i','c$i','d$i','e$i','b$i','b$i','b$i','b$i','b$i')";<br />
$q = sqlite_query($db, $sql);<br />
}<br />
sqlite_close($db);<br />
$time_end = microtime(true);<br />
$time = $time_end - $time_start;<br />
echo "executed in $time seconds\n";<br />
</code><br />
=========================================</p>
<p>and here&#8217;s for mysql code :<br />
============= mysql-test.php ================<br />
<code><br />
.............<br />
$time_start = microtime(true);<br />
for($i = 0; $i &lt; 5000; $i++)<br />
{<br />
$sql = "INSERT INTO test VALUES ('a$i','b$i','c$i','d$i','e$i','b$i','b$i','b$i','b$i','b$i')";<br />
$q = mysql_query($sql);<br />
}<br />
$time_end = microtime(true);<br />
$time = $time_end - $time_start;<br />
echo "executed in $time seconds\n";<br />
..............<br />
</code><br />
===========================================</p>
<p>when I run those 2 script, the first one (sqlite) run for <strong>43.4918169975 seconds</strong>, while the second (mysql) only take <strong>0.52137298584 seconds</strong>.</p>
<p>It means that sqlite run 80x longer than mysql did (very contrast with the one I read in <a href="http://www.sqlite.org/speed.html" target="_blank">http://www.sqlite.org/speed.html</a>).</p>
<p>Please tell me where do I did wrong. Thanks very much.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/antonrifco.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/antonrifco.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/antonrifco.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/antonrifco.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/antonrifco.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/antonrifco.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/antonrifco.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/antonrifco.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/antonrifco.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/antonrifco.wordpress.com/121/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonrifco.wordpress.com&blog=1454490&post=121&subd=antonrifco&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://antonrifco.wordpress.com/2009/03/27/help-me-sqlite-versus-mysql-in-php/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/178324dc85fadc41b37b869c420e5499?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">antonrifco</media:title>
		</media:content>
	</item>
		<item>
		<title>Front End Logging (tail -f stuff)</title>
		<link>http://antonrifco.wordpress.com/2009/03/13/front-end-logging-tail-f-stuff/</link>
		<comments>http://antonrifco.wordpress.com/2009/03/13/front-end-logging-tail-f-stuff/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 09:25:14 +0000</pubDate>
		<dc:creator>antonrifco</dc:creator>
				<category><![CDATA[Tips 'n tricks]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[log]]></category>
		<category><![CDATA[tail -f]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://antonrifco.wordpress.com/?p=112</guid>
		<description><![CDATA[Entering a new coding environment (working in a national company), I&#8217;ve got several things learned.
One of the important is that I have to take care of every logging activities. It means that people needs me to write any transaction (success, fail, or error) to a flat file.
After my application&#8217;s been launching live, the &#8220;operation people&#8221; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonrifco.wordpress.com&blog=1454490&post=112&subd=antonrifco&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p>Entering a new coding environment (working in a national company), I&#8217;ve got several things learned.</p>
<p>One of the important is that I have to take care of every logging activities. It means that people needs me to write any transaction (success, fail, or error) to a flat file.</p>
<p>After my application&#8217;s been launching live, the &#8220;operation people&#8221; can check the log file for any transaction activities using unix command :</p>
<p><code>tail -f &lt;log_file&gt;</code></p>
<p>hmmmm&#8230;</p>
<p>Rather than supply them with backend checking, I&#8217;d prefer to make it (checking log file) into frontend using php.</p>
<p>Here&#8217;s the code I scratch to &#8220;tail&#8221; the log file in FrontEnd :</p>
<p><code>&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;script language="javascript"&gt;<br />
setInterval ( "window.scrollBy(0,100)", 5 );<br />
&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;a href="http://localhost/tesapps"&gt;Click&lt;/a&gt;<br />
&lt;?<br />
if(!empty($_GET))<br />
{<br />
$page = $_GET[log]; //supply this GET variable with path to log file<br />
system("tail -f $page");<br />
}<br />
else<br />
echo "&lt;h1&gt;Please provide log file to read !&lt;/h1&gt;";<br />
?&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;<br />
</code><br />
With this code, I can simulate tail activities in web browser</p>
<p>nice, huh? <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/antonrifco.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/antonrifco.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/antonrifco.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/antonrifco.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/antonrifco.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/antonrifco.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/antonrifco.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/antonrifco.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/antonrifco.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/antonrifco.wordpress.com/112/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonrifco.wordpress.com&blog=1454490&post=112&subd=antonrifco&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://antonrifco.wordpress.com/2009/03/13/front-end-logging-tail-f-stuff/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/178324dc85fadc41b37b869c420e5499?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">antonrifco</media:title>
		</media:content>
	</item>
		<item>
		<title>Jahrakal kills 132 on dotA Allstars 6.57 AI plus</title>
		<link>http://antonrifco.wordpress.com/2009/01/18/jahrakal-kills-132-on-dota-allstars-657-ai-plus/</link>
		<comments>http://antonrifco.wordpress.com/2009/01/18/jahrakal-kills-132-on-dota-allstars-657-ai-plus/#comments</comments>
		<pubDate>Sun, 18 Jan 2009 06:57:27 +0000</pubDate>
		<dc:creator>antonrifco</dc:creator>
				<category><![CDATA[games stuff]]></category>
		<category><![CDATA[132-kills]]></category>
		<category><![CDATA[dota]]></category>
		<category><![CDATA[jahrakal]]></category>
		<category><![CDATA[kills]]></category>
		<category><![CDATA[monstre-kills]]></category>

		<guid isPermaLink="false">http://antonrifco.wordpress.com/?p=100</guid>
		<description><![CDATA[While playing dota Allstars, I was always wondering how many &#8220;maximum&#8221; kills could I get during a game. So I began this project, to demonstrate an average of maximum killings of a hero.
For this, I played in 6.57 AI plus Map by Icefrog with a several conditions :

Jahrakal is being used in this game

Insane Enemies [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonrifco.wordpress.com&blog=1454490&post=100&subd=antonrifco&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p>While playing <strong>dota Allstars</strong>, I was always wondering how many &#8220;maximum&#8221; kills could I get during a game. So I began this project, to demonstrate an average of maximum killings of a hero.</p>
<p>For this, I played in <strong>6.57 AI plus Map by Icefrog</strong> with a several conditions :</p>
<ul>
<li><strong>Jahrakal</strong> is being used in this game
<div id="attachment_101" class="wp-caption alignnone" style="width: 74px"><img class="size-full wp-image-101" title="jahrakal" src="http://antonrifco.files.wordpress.com/2009/01/jahra.jpeg?w=64&#038;h=64" alt="jahrakal" width="64" height="64" /><p class="wp-caption-text">jahrakal</p></div></li>
<li>Insane Enemies are not randomed, I chose them (in a condition that no one is stunner or hooker). The line-up is <strong>Mortred, Abbadon, Purist, Bloodseeker, and Jakiro</strong></li>
</ul>
<p><img class="alignnone size-full wp-image-106" title="mortred" src="http://antonrifco.files.wordpress.com/2009/01/mortred.jpeg?w=65&#038;h=65" alt="mortred" width="65" height="65" /> <img class="alignnone size-full wp-image-105" title="abbadon" src="http://antonrifco.files.wordpress.com/2009/01/abbadon.jpeg?w=64&#038;h=64" alt="abbadon" width="64" height="64" /> <img class="alignnone size-full wp-image-107" title="purist" src="http://antonrifco.files.wordpress.com/2009/01/purist.jpeg?w=64&#038;h=64" alt="purist" width="64" height="64" /> <img class="alignnone size-full wp-image-109" title="stygwyr" src="http://antonrifco.files.wordpress.com/2009/01/stygwyr.jpeg?w=64&#038;h=64" alt="stygwyr" width="64" height="64" /> <img class="alignnone size-full wp-image-108" title="jakiro" src="http://antonrifco.files.wordpress.com/2009/01/jakiro.jpeg?w=64&#038;h=64" alt="jakiro" width="64" height="64" /></p>
<ul>
<li>Gamemode <strong>-apnpnest</strong> . Why st? I decided &#8220;super tower&#8221; mode, so that the game will last longer.</li>
<li>4 versus 5</li>
</ul>
<p>During the game, I started to go up-lane, until level 4 or 5 (in this level, I should be having Helm of Dominator). Then go jungling until level 10 (in this level, I should be having 3 neutral creeps owned with HoD). Then go Roshan&#8230;</p>
<p>After Roshan being killed, you should easily predict how I owned the game. Hehehe !!</p>
<p>The trick in this &#8220;more-than-100-killings&#8221; is that <strong>you have to wait enemies in their Home (base)</strong>, so that you can kill-em-all. If you think that your creeps or ally will destroy the tower, you must let enemy hero to push them back (so that game will give you more time to kill <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> ).</p>
<p>Actually, I did two of this. With the other one, I just got 98 kills with the same mode, different enemies. So I think the number of kills we get depends also on enemies.</p>
<p>From this experiment, I think we can kill up to 100 heroes in a normal game mode (without super-tower thing), because we will get lesser time to do more. To do so, you have to control the situation so that enemy&#8217;s towers are not destroyed until you get enough kills.</p>
<p><div id="attachment_102" class="wp-caption aligncenter" style="width: 469px"><img class="size-full wp-image-102" title="jahra-kills-132" src="http://antonrifco.files.wordpress.com/2009/01/jahra-kills-132.jpg?w=459&#038;h=345" alt="stats" width="459" height="345" /><p class="wp-caption-text">stats</p></div>
<p>nb: you can download the replay <a href="http://sites.google.com/site/justmypage/Home/greatestjahrakal.w3g?attredirects=0">here</a></p>
<p>So, further question is <strong>can we do this on &#8220;normal-with-real-people&#8221; game?</strong> <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>*please tell me if you did that.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/antonrifco.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/antonrifco.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/antonrifco.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/antonrifco.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/antonrifco.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/antonrifco.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/antonrifco.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/antonrifco.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/antonrifco.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/antonrifco.wordpress.com/100/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonrifco.wordpress.com&blog=1454490&post=100&subd=antonrifco&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://antonrifco.wordpress.com/2009/01/18/jahrakal-kills-132-on-dota-allstars-657-ai-plus/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/178324dc85fadc41b37b869c420e5499?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">antonrifco</media:title>
		</media:content>

		<media:content url="http://antonrifco.files.wordpress.com/2009/01/jahra.jpeg" medium="image">
			<media:title type="html">jahrakal</media:title>
		</media:content>

		<media:content url="http://antonrifco.files.wordpress.com/2009/01/mortred.jpeg" medium="image">
			<media:title type="html">mortred</media:title>
		</media:content>

		<media:content url="http://antonrifco.files.wordpress.com/2009/01/abbadon.jpeg" medium="image">
			<media:title type="html">abbadon</media:title>
		</media:content>

		<media:content url="http://antonrifco.files.wordpress.com/2009/01/purist.jpeg" medium="image">
			<media:title type="html">purist</media:title>
		</media:content>

		<media:content url="http://antonrifco.files.wordpress.com/2009/01/stygwyr.jpeg" medium="image">
			<media:title type="html">stygwyr</media:title>
		</media:content>

		<media:content url="http://antonrifco.files.wordpress.com/2009/01/jakiro.jpeg" medium="image">
			<media:title type="html">jakiro</media:title>
		</media:content>

		<media:content url="http://antonrifco.files.wordpress.com/2009/01/jahra-kills-132.jpg" medium="image">
			<media:title type="html">jahra-kills-132</media:title>
		</media:content>
	</item>
		<item>
		<title>Sejarah Generasi Telekomunikasi</title>
		<link>http://antonrifco.wordpress.com/2009/01/12/sejarah-generasi-telekomunikasi/</link>
		<comments>http://antonrifco.wordpress.com/2009/01/12/sejarah-generasi-telekomunikasi/#comments</comments>
		<pubDate>Mon, 12 Jan 2009 20:40:57 +0000</pubDate>
		<dc:creator>antonrifco</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[3g]]></category>
		<category><![CDATA[2g]]></category>
		<category><![CDATA[1g]]></category>
		<category><![CDATA[telekomunikasi]]></category>
		<category><![CDATA[generasi]]></category>
		<category><![CDATA[handphone]]></category>
		<category><![CDATA[operator]]></category>

		<guid isPermaLink="false">http://antonrifco.wordpress.com/?p=98</guid>
		<description><![CDATA[Lama nyari-nyari yang singkat dan akurat, akhirnya nemu juga nih.
Blom sempet di-translate sih. Semoga berguna !
credit is given to http://umtsmon.sourceforge.net/docs/terminology.shtml/
&#8212;&#8212;-
INTRODUCTION TO ALL RELEVANT WIRELESS TECHNOLOGIES
Note: The below text is part of a paper, to be presented by Klaas van Gend at the NLUUG autumn conference 2006. This page has a slight bias towards The Netherlands.
Wireless [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonrifco.wordpress.com&blog=1454490&post=98&subd=antonrifco&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p>Lama nyari-nyari yang singkat dan akurat, akhirnya nemu juga nih.</p>
<p>Blom sempet di-translate sih. Semoga berguna !</p>
<p>credit is given to <a href="http://umtsmon.sourceforge.net/docs/terminology.shtml">http://umtsmon.sourceforge.net/docs/terminology.shtml/</a></p>
<p>&#8212;&#8212;-</p>
<h1>INTRODUCTION TO ALL RELEVANT WIRELESS TECHNOLOGIES</h1>
<p><strong>Note:</strong> <em>The below text is part of a paper, to be presented by Klaas van Gend at the <a href="http://umtsmon.sourceforge.net/docs/%22http://www.nluug.nl/events/nj06/index.html%22">NLUUG autumn conference 2006</a>. This page has a slight bias towards The Netherlands.</em></p>
<p>Wireless mobile communication already exists for quite a while. Two famous <strong>&#8220;zero&#8221;</strong> generation devices are the &#8216;Walky Talkies&#8217; and the &#8220;Bakkies&#8221;. All devices share the same radio frequency. If one wants to talk, he pushes the send button and all others have to listen. It&#8217;s very easy to eavesdrop &#8211; just listen to the right frequency.</p>
<p>During the 80s, Dutch national telecom operator PTT installed the first analog cellular networks for mobile communication. Throughout the Netherlands, antennas were erected and &#8220;carryable&#8221; phones (approx 5 kg!) could call into these networks. The first generation (<strong>1G</strong>) networks weren&#8217;t a real success due to very heavy batteries and high costs for the end users.</p>
<p>In 1982, a French organisation called &#8220;Groupe Spécial Mobile&#8221; had started investigations into a digital wireless communication network. The biggest advantages were the reduction of interference and distortion in the audio and to increase security. At the end of the eighties, the EU agreed to use this new system and standards body ETSI took over maintainer ship. By the end of 1991 the first <strong>GSM</strong> network was aired in Finland, with the other countries quick to follow. GSM is called a <strong>2G</strong> network, and one important aspect is that during a call, the phone has a fixed-bandwidth communication channel to the antenna.</p>
<p>With the rise of mobile computing, this fixed bandwidth imposed a problem for utilising this network for data exchange. There is no need for a full communication channel as users aren&#8217;t in a constant need for data. A packet switched network like the regular IP protocol would be ideal &#8211; where several users together can use the bandwidth. This became the <strong>2.5G</strong> network <strong>GPRS</strong> &#8220;General Packet Radio Switch&#8221;. Due to the packet switching, traffic is no longer taxed per time unit but per megabyte.</p>
<p>Dutch operator Telfort carries another extension to GPRS, called <strong>EDGE</strong> or &#8220;Enhanced Data Rates for GSM Evolution&#8221;. This <strong>2.75G</strong> network changes the way the radio signal is used, thereby tripling the throughput. This impacts both the cell phones and the equipment used by operators. This is why most operators refuse to switch to EDGE and jump to UMTS directly.</p>
<p>A breakthrough in radio technology allowed for a new coding of radio signals. This was called W-CDMA and is essentially different from the TDMA coding of the GSM network. Together with new frequencies that allow higher bandwidths, these <strong>3G</strong> networks are called <strong>UMTS</strong> or &#8220;Universal Mobile Telecommunication Systems&#8221;. As explained in the beginning of this paper, the UMTS network requires all-new equipment.</p>
<p>Another extension to the radio technology of UMTS is called <strong>HSDPA</strong> or &#8220;High Speed Downlink Packet Access&#8221;. This <strong>3.5G</strong> network protocol creates the notion of a dedicated downlink channel. Other improvements are in the area of retransmits and error correction. As well as improved data rates that are associated with HSDPA one of the key benefits that are seen is the reduction on latency, improving the round trip time for applications.</p>
<p>This is not the end of development, the <strong>3.75G</strong> technology <strong>HSUPA</strong> is ready for deployment and 4G networks are being designed right now. And still, the public is afraid of more antennas and the damage of radiation to the human physiology. There is a technology push, but the question remains if the public is interested in those improvements or whether it is &#8220;good enough&#8221;.</p>
<table border="1">
<tbody>
<tr>
<th>network type</th>
<th>generation</th>
<th>upstream</th>
<th>downstream</th>
</tr>
<tr>
<td>analog</td>
<td>0G</td>
<td>n/a, push-to-talk voice only</td>
<td>n/a, push-to-talk voice only</td>
</tr>
<tr>
<td>analog</td>
<td>1G</td>
<td>voice cell phone</td>
<td>voice cell phone</td>
</tr>
<tr>
<td>GSM</td>
<td>2G</td>
<td>4 kbit/s</td>
<td>4 kbit/s</td>
</tr>
<tr>
<td>GPRS</td>
<td>2.5G</td>
<td>up to 14.4 kbit/s</td>
<td>up to 28.8 kbit/s</td>
</tr>
<tr>
<td>EDGE</td>
<td>2.75G</td>
<td>???</td>
<td>up to 238 kbit/s</td>
</tr>
<tr>
<td>UMTS</td>
<td>3G</td>
<td>up to 128 kbit/s</td>
<td>up to 384 kbit/s</td>
</tr>
<tr>
<td>HSDPA</td>
<td>3.5G</td>
<td>up to 384 kbit/s</td>
<td>up to 10.8 Mbit/s</td>
</tr>
</tbody>
</table>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/antonrifco.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/antonrifco.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/antonrifco.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/antonrifco.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/antonrifco.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/antonrifco.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/antonrifco.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/antonrifco.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/antonrifco.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/antonrifco.wordpress.com/98/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonrifco.wordpress.com&blog=1454490&post=98&subd=antonrifco&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://antonrifco.wordpress.com/2009/01/12/sejarah-generasi-telekomunikasi/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/178324dc85fadc41b37b869c420e5499?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">antonrifco</media:title>
		</media:content>
	</item>
		<item>
		<title>Fake it until you can make it</title>
		<link>http://antonrifco.wordpress.com/2009/01/06/fake-it-until-you-can-make-it/</link>
		<comments>http://antonrifco.wordpress.com/2009/01/06/fake-it-until-you-can-make-it/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 18:31:55 +0000</pubDate>
		<dc:creator>antonrifco</dc:creator>
				<category><![CDATA[Others]]></category>
		<category><![CDATA[inspire]]></category>
		<category><![CDATA[motivational]]></category>

		<guid isPermaLink="false">http://antonrifco.wordpress.com/?p=96</guid>
		<description><![CDATA[When you face a challenge,
&#8220;fake it until you can make it&#8221;
This means that you should act as though everything wew working out well, even when you have doubts.
Put a smile on your face, even if it&#8217;s not real, and eventually it will be a real smile. Stand up straight with your head high and walk [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonrifco.wordpress.com&blog=1454490&post=96&subd=antonrifco&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p>When you face a challenge,</p>
<blockquote><p>&#8220;fake it until you can make it&#8221;</p></blockquote>
<p>This means that you should act as though everything wew working out well, even when you have doubts.</p>
<p>Put a smile on your face, even if it&#8217;s not real, and eventually it will be a real smile. Stand up straight with your head high and walk with purpose. You will start to actually feel more confident.</p>
<p>If you are acting like a successful person, it may feel strange at first. But the more you practice your role as a successfil person, the more comfortable you will be. Soon, when you reach your goals and you are truly successful, you will have practiced the role, and you will be the person you have been playing.</p>
<p>&#8212;credit given to Barron&#8217;s TOEFL iBT Internet Based Testing 12th Edition page 253&#8212;-</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/antonrifco.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/antonrifco.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/antonrifco.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/antonrifco.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/antonrifco.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/antonrifco.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/antonrifco.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/antonrifco.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/antonrifco.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/antonrifco.wordpress.com/96/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonrifco.wordpress.com&blog=1454490&post=96&subd=antonrifco&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://antonrifco.wordpress.com/2009/01/06/fake-it-until-you-can-make-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/178324dc85fadc41b37b869c420e5499?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">antonrifco</media:title>
		</media:content>
	</item>
	</channel>
</rss>