<?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>House of Xrvel</title>
	<atom:link href="http://www.xrvel.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.xrvel.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Wed, 24 Feb 2010 04:08:59 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Hosting Subversion Indonesia Lokal</title>
		<link>http://www.xrvel.com/332/indonesian/hosting-subversion-indonesia-lokal</link>
		<comments>http://www.xrvel.com/332/indonesian/hosting-subversion-indonesia-lokal#comments</comments>
		<pubDate>Wed, 24 Feb 2010 04:06:16 +0000</pubDate>
		<dc:creator>Xrvel</dc:creator>
				<category><![CDATA[Indonesian]]></category>
		<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Subversion]]></category>

		<guid isPermaLink="false">http://www.xrvel.com/332/web-hosting/hosting-subversion-indonesia-lokal</guid>
		<description><![CDATA[Baru-baru ini saya membutuhkan hosting VPS untuk subversion project. Akhirnya pilihan jatuh ke indorackhosting.com. Hosting ini adalah bagian dari RumahWeb.com, sehingga terpercaya.
Paket yang saya pilih adalah paket Signature.   Ini adalah paket minimal di sana untuk menjalankan subversion.
Link nya : http://indorackhosting.com/vps-indonesia-iix.html
]]></description>
			<content:encoded><![CDATA[<p>Baru-baru ini saya membutuhkan hosting VPS untuk subversion project. Akhirnya pilihan jatuh ke indorackhosting.com. Hosting ini adalah bagian dari RumahWeb.com, sehingga terpercaya.<br />
Paket yang saya pilih adalah paket Signature. <img src='http://www.xrvel.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Ini adalah paket minimal di sana untuk menjalankan subversion.<br />
Link nya : http://indorackhosting.com/vps-indonesia-iix.html</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xrvel.com/332/indonesian/hosting-subversion-indonesia-lokal/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Contoh Stored Procedure MySQL</title>
		<link>http://www.xrvel.com/327/indonesian/contoh-stored-procedure-mysql</link>
		<comments>http://www.xrvel.com/327/indonesian/contoh-stored-procedure-mysql#comments</comments>
		<pubDate>Tue, 02 Feb 2010 16:16:57 +0000</pubDate>
		<dc:creator>Xrvel</dc:creator>
				<category><![CDATA[Indonesian]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.xrvel.com/?p=327</guid>
		<description><![CDATA[Apakah itu stored procedure MySQL? Secara singkat saja, stored procedure adalah sebuah function yang tersimpan di MySQL. Seperti layaknya sebuah function pada bahasa pemrograman lain, sebuah function bisa terdiri dari lebih dari satu baris, bermacam-macam operasi di dalamnya, mengandung variabel, dan lain-lain.

Nah di MySQL sendiri kapan menggunakan stored procedure? Menurut saya, bila kita ingin melakukan [...]]]></description>
			<content:encoded><![CDATA[<p>Apakah itu <strong>stored procedure MySQL</strong>? Secara singkat saja, stored procedure adalah sebuah function yang tersimpan di MySQL. Seperti layaknya sebuah function pada bahasa pemrograman lain, sebuah function bisa terdiri dari lebih dari satu baris, bermacam-macam operasi di dalamnya, mengandung variabel, dan lain-lain.<br />
<span id="more-327"></span><br />
Nah di MySQL sendiri kapan menggunakan stored procedure? Menurut saya, bila kita ingin melakukan sesuatu yang rumit / multiple query dalam satu kali call misal di PHP. Bayangkan misal kita bertujuan ingin menambah posting ke tabel di database, dan untuk itu kita harus melakukan 10x query (misal ke 10 tabel yang berbeda). Jika kita memanggil fungsi mysql_query() di PHP sebanyak 10x, program akan berjalan lebih lambat. Ingat, sekali mysql_query() berarti program harus pergi dari PHP-MySQL-PHP lagi. Kalau 10x mysql_query()? Tentu saja program bolak-balik PHP-MySQL-PHP-MySQL-PHP, dst sampai 10x.<br />
Pada kasus ini stored procedure diperlukan sehingga nantinya pada program PHP kita hanya memanggil 1x mysql_query().</p>
<p>Berikut adalah contoh kode SQL pembuatan stored procedure yang :</p>
<ol>
<li>Bernama &#8220;tambah_posting&#8221;</li>
<li>Memiliki 2 parameter, yaitu &#8220;x_user&#8221;, dan &#8220;x_kategori&#8221;.</li>
</ol>
<p>Sebagai tambahan, ada &#8220;<strong>START TRANSACTION</strong>&#8221; dan &#8220;<strong>COMMIT</strong>&#8221; sebagai penanda kita menggunakan MySQL transaction. Tapi ini hanya support tabel jenis InnoDB, tapi jangan khawatir, jika misal digunakan di tabel MyISAM tidak akan menimbulkan error.</p>
<pre>
DELIMITER $$
CREATE PROCEDURE tambah_posting(x_user int(10), x_kategori int(1))
BEGIN
START TRANSACTION;
UPDATE tbl_user SET post_count = post_count+1 WHERE id = x_user;
UPDATE tbl_kategori SET count = count+1 WHERE id = x_kategori;
COMMIT;
END$$

DELIMITER ;
</pre>
<p>Sekarang cara panggilnya dari kode PHP kita adalah dengan query &#8220;CALL&#8221;, contoh :</p>
<pre>
mysql_query("CALL tambah_posting(10, 11)");
</pre>
<p>Simpel kan <img src='http://www.xrvel.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.xrvel.com/327/indonesian/contoh-stored-procedure-mysql/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Get Today Timestamp on PHP</title>
		<link>http://www.xrvel.com/323/programming/get-today-timestamp-on-php</link>
		<comments>http://www.xrvel.com/323/programming/get-today-timestamp-on-php#comments</comments>
		<pubDate>Sat, 09 Jan 2010 03:13:52 +0000</pubDate>
		<dc:creator>Xrvel</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.xrvel.com/?p=323</guid>
		<description><![CDATA[To get today timestamp on PHP (for example now is 2 Januari 2009, 13:32), you want to get timestamp of 2 Januari 2009, 13:32, you can get it by this PHP code

&#60;?php $time = strtotime('Today'); ?&#62;

Very simple with strtotime  
]]></description>
			<content:encoded><![CDATA[<p>To get today timestamp on PHP (for example now is 2 Januari 2009, 13:32), you want to get timestamp of 2 Januari 2009, 13:32, you can get it by this PHP code</p>
<pre>
&lt;?php $time = strtotime('Today'); ?&gt;
</pre>
<p>Very simple with strtotime <img src='http://www.xrvel.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.xrvel.com/323/programming/get-today-timestamp-on-php/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Download File On PHP</title>
		<link>http://www.xrvel.com/321/programming/download-file-on-php</link>
		<comments>http://www.xrvel.com/321/programming/download-file-on-php#comments</comments>
		<pubDate>Sun, 11 Oct 2009 03:35:55 +0000</pubDate>
		<dc:creator>Xrvel</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.xrvel.com/?p=321</guid>
		<description><![CDATA[To download page (or file) by PHP, you can add this header to the page.
On PHP, you can use this function

header('Content-Disposition: attachment; filename="SOMETHING.HTML"');

On other web programming, you can use other function. The basic idea is by adding this header

Content-Disposition: attachment; filename="SOMETHING.HTML"

]]></description>
			<content:encoded><![CDATA[<p>To download page (or file) by PHP, you can add this header to the page.<br />
On PHP, you can use this function</p>
<pre>
header('Content-Disposition: attachment; filename="SOMETHING.HTML"');
</pre>
<p>On other web programming, you can use other function. The basic idea is by adding this header</p>
<pre>
Content-Disposition: attachment; filename="SOMETHING.HTML"
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.xrvel.com/321/programming/download-file-on-php/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Another Hosting Migration</title>
		<link>http://www.xrvel.com/320/personal/another-hosting-migration</link>
		<comments>http://www.xrvel.com/320/personal/another-hosting-migration#comments</comments>
		<pubDate>Fri, 18 Sep 2009 12:38:00 +0000</pubDate>
		<dc:creator>Xrvel</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.xrvel.com/320/personal/another-hosting-migration</guid>
		<description><![CDATA[I just moved from my old hosting to a new one. Sadly i lost all of my database data. These are the only ones that left. My old backup. Do not forget to backup your Wordpress often.
]]></description>
			<content:encoded><![CDATA[<p>I just moved from my old hosting to a new one. Sadly i lost all of my database data. These are the only ones that left. My old backup. Do not forget to backup your Wordpress often.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xrvel.com/320/personal/another-hosting-migration/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Sell Your Domain For Free on GoDaddy Auction</title>
		<link>http://www.xrvel.com/319/uncategorized/sell-your-domain-for-free-on-godaddy-auction</link>
		<comments>http://www.xrvel.com/319/uncategorized/sell-your-domain-for-free-on-godaddy-auction#comments</comments>
		<pubDate>Sat, 28 Feb 2009 09:17:50 +0000</pubDate>
		<dc:creator>Xrvel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.xrvel.com/?p=319</guid>
		<description><![CDATA[Ok, so here is how to sell your domain on GoDaddy Auction for free.
First, you have to register as a TDNAM member.
It costs about US$ 4.99 to register, but hey, with this small fee, you can sell as many domains as you want there.  
After you have registered TDNAM membership, let&#8217;s move to the [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, so here is how to <strong>sell your domain</strong> on GoDaddy Auction for free.<br />
First, you have to register as a TDNAM member.<br />
It costs about US$ 4.99 to register, but hey, with this small fee, you can sell as many domains as you want there. <img src='http://www.xrvel.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>After you have registered TDNAM membership, let&#8217;s move to the next step.<br />
<span id="more-319"></span><br />
Go to <a href="https://auctions.godaddy.com/" target="_blank" rel="external nofollow">GoDaddy auction homepage here</a>.<br />
Take a look on top menu. Select &#8220;Sell&#8221;, next, select &#8220;List a Domain&#8221;.<br />
Now you will have a new page where you can enter your domain detail.</p>
<ol>
<li>Enter your domain name there.</li>
<li>On &#8220;auction type&#8221;, choose &#8220;7-Day Public Auction&#8221; for normal auction, or &#8220;Buy it now&#8221; (or such) if you have a fix price on mind.</li>
<li>On categories, only choose one category because it costs some fee if you choose more than one category (and we want free domain name listing <img src='http://www.xrvel.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  )</li>
</ol>
<p>That&#8217;s it. Very simple.<br />
After you have completed the selling form, and you did it correctly, it will be 100% free, and you will not be taken to GoDaddy cart page.</p>
<p>After submission, the domain name will not appear immediately, it must be approved by GoDaddy first.<br />
You can see your pending domain name by taking a look on left menu.<br />
Select &#8220;Pending&#8221; under &#8220;My Selling List&#8221; label. <img src='http://www.xrvel.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.xrvel.com/319/uncategorized/sell-your-domain-for-free-on-godaddy-auction/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Some Last LLL.com Sales Report</title>
		<link>http://www.xrvel.com/318/domain-name/some-last-lllcom-sales-report</link>
		<comments>http://www.xrvel.com/318/domain-name/some-last-lllcom-sales-report#comments</comments>
		<pubDate>Fri, 27 Feb 2009 12:59:40 +0000</pubDate>
		<dc:creator>Xrvel</dc:creator>
				<category><![CDATA[Domain Name]]></category>

		<guid isPermaLink="false">http://www.xrvel.com/?p=318</guid>
		<description><![CDATA[Here are some domain name sales result of GreatDomains LLL.com (reserve met) auctions :
ato.com $28,760 (22,500 EUR)
vsm.com $5,975
jxw.com $5,601
gvu.com $4,900
jxv.com $3,600

kqk.com $3,600
kxf.com $3,400
sjq.com $3,300
kbq.com $3,100
kfq.com $3,000
kqh.com $3,000
kxv.com $3,000
Seems the minimum price for lower quality LLL.com is falling.
]]></description>
			<content:encoded><![CDATA[<p>Here are some domain name sales result of <a href="http://www.greatdomains.com" target="_blank" rel="external nofollow">GreatDomains</a> LLL.com (reserve met) auctions :</p>
<p>ato.com $28,760 (22,500 EUR)<br />
vsm.com $5,975<br />
jxw.com $5,601<br />
gvu.com $4,900<br />
jxv.com $3,600<br />
<span id="more-318"></span><br />
kqk.com $3,600<br />
kxf.com $3,400<br />
sjq.com $3,300<br />
kbq.com $3,100<br />
kfq.com $3,000</p>
<p>kqh.com $3,000<br />
kxv.com $3,000</p>
<p>Seems the minimum price for <strong>lower quality LLL.com</strong> is falling.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xrvel.com/318/domain-name/some-last-lllcom-sales-report/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Login to Remote URL with PHP Curl</title>
		<link>http://www.xrvel.com/316/programming/php/login-to-remote-url-with-php-curl</link>
		<comments>http://www.xrvel.com/316/programming/php/login-to-remote-url-with-php-curl#comments</comments>
		<pubDate>Tue, 24 Feb 2009 05:58:45 +0000</pubDate>
		<dc:creator>Xrvel</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.xrvel.com/?p=316</guid>
		<description><![CDATA[If you want to fetch page from remote URL or you want to perform form submission to a remote URL, here is a solution for you. You should use PHP curl.

Here is a simple PHP code about curl that i wrote. It performs remote form submission.
If you perform a remote form submission, do not forget [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to fetch page from remote URL or you want to perform form submission to a remote URL, here is a solution for you. You should use PHP curl.<br />
<span id="more-316"></span><br />
Here is a <a href="http://www.xrvel.com/dev/index.php?file=curl-login.php.txt" target="_blank">simple PHP code about curl</a> that i wrote. It performs remote form submission.</p>
<p>If you perform a remote form submission, do not forget to fill the User Agent option and Referer option, so the remote script can not notice that we submit use a <a href="http://www.xrvel.com/dev/index.php?file=curl-login.php.txt" target="_blank">remote curl script</a> <img src='http://www.xrvel.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.xrvel.com/316/programming/php/login-to-remote-url-with-php-curl/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Increase Backlink and Pagerank</title>
		<link>http://www.xrvel.com/302/website/website-development/how-to-increase-backlink-and-pagerank</link>
		<comments>http://www.xrvel.com/302/website/website-development/how-to-increase-backlink-and-pagerank#comments</comments>
		<pubDate>Fri, 20 Feb 2009 07:47:25 +0000</pubDate>
		<dc:creator>Xrvel</dc:creator>
				<category><![CDATA[Website Development]]></category>
		<category><![CDATA[Backlink]]></category>
		<category><![CDATA[Page Rank]]></category>

		<guid isPermaLink="false">http://www.xrvel.com/?p=302</guid>
		<description><![CDATA[ Here is a simple and free tips about how to increase backlink and hopefully pagerank.


Create a sitemap and submit your sitemap to google webmaster tools.
Submit your website + keywords to around 5 major dofollow social bookmarking websites. Its not to get bookmarks, but its just to get a nice keyword filled dofollow link for [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://tbn0.google.com/images?q=tbn:l7zoMOi0WZnPoM:http://skinnymoose.com/network/wp-content/uploads/2008/01/increase.gif" align="left" class="xrvelLeft" alt="increase" /> Here is a simple and free tips about how to increase backlink and hopefully pagerank.<br />
<span id="more-302"></span></p>
<ol>
<li>Create a sitemap and submit your sitemap to google webmaster tools.</li>
<li>Submit your website + keywords to around 5 major dofollow social bookmarking websites. Its not to get bookmarks, but its just to get a nice keyword filled dofollow link for the SERPS.
<p>Here are some dofollow social bookmarking websites :</p>
<pre>
1 - http://slashdot.org (PR9)
2 - http://digg.com (PR8)
3 - http://technorati.com (PR8)
4 - http://www.furl.net (PR7)
5 - http://www.backflip.com (PR7)
6 - http://www.hugg.com (PR7)
7 - http://www.mixx.com (PR7)
8 - http://ma.gnolia.com (PR7)
9 - http://www.connotea.org (PR7)
10 - http://mystuff.ask.com (PR7)
11 - http://www.reddit.com (PR7)
12 - http://www.dzone.com (PR7)
13 - http://www.folkd.com (PR7)
14 - http://multiply.com (PR7)
15 - http://www.searchles.com (PR6)
16 - http://de.lirio.us (PR6)
17 - http://www.dotnetkicks.com (PR6)
18 - http://www.bloghop.com (PR6)
19 - http://www.plime.com (PR6)
20 - http://www.bibsonomy.org (PR6)
21 - http://www.clipclip.org (PR6)
22 - http://linkagogo.com (PR6)
23 - http://www.spurl.net (PR6)
24 - http://www.zlitt.com (PR6)
25 - http://www.indianpad.com (PR6)
26 - http://www.tumblr.com (PR6)
27 - http://www.myvmarks.com (PR5)
28 - http://www.listible.com (PR5)
29 - http://www.bringr.com (PR5)
30 - http://faves.com (PR5)
31 - http://www.linkinn.com (PR5)
32 - http://spotback.com (PR5)
33 - http://www.mylinkvault.com (PR5)
34 - http://my.xilinus.com (PR5)
35 - http://linkatopia.com (PR5)
36 - http://www.bumpzee.com (PR5)
37 - http://www.bookmarktracker.com (PR5)
</pre>
</li>
<li>Run the 5 social bookmarking URL&#8217;s (with your dofollow link on it) one by one trough : <a href="http://www.pingomatic.com" target="_blank" rel="external nofollow">pingomatic.com</a> or <a href="http://www.pingler.com" target="_blank" rel="external nofollow">pingler.com</a></li>
</ol>
<p>That&#8217;s it. Good luck <img src='http://www.xrvel.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.xrvel.com/302/website/website-development/how-to-increase-backlink-and-pagerank/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>My Programming History</title>
		<link>http://www.xrvel.com/299/personal/my-programming-history</link>
		<comments>http://www.xrvel.com/299/personal/my-programming-history#comments</comments>
		<pubDate>Tue, 03 Feb 2009 16:55:09 +0000</pubDate>
		<dc:creator>Xrvel</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.xrvel.com/?p=299</guid>
		<description><![CDATA[Nyantai &#038; indonesia mode : on 
Share aja historyku dengan pemrograman

Waktu SMA, saat asik2 browsing, aku mulai baca2 dengan yang namanya cracking. Yang membuatku tertarik adalah kejahatan dengan kartu (you know). Tapi aku cuma tertarik dengan apa kartu &#8220;k&#8221; itu, bagaimana memanfaatkan, dll. Tapi masih nggak mencoba. Akhirnya sampailah aku ke web jasakom (old memory). [...]]]></description>
			<content:encoded><![CDATA[<p>Nyantai &#038; indonesia mode : on <img src='http://www.xrvel.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /><br />
Share aja historyku dengan pemrograman<br />
<span id="more-299"></span><br />
Waktu SMA, saat asik2 browsing, aku mulai baca2 dengan yang namanya cracking. Yang membuatku tertarik adalah kejahatan dengan kartu (you know). Tapi aku cuma tertarik dengan apa kartu &#8220;k&#8221; itu, bagaimana memanfaatkan, dll. Tapi masih nggak mencoba. Akhirnya sampailah aku ke web <a href="http://www.jasakom.com" target="_blank" rel="external nofollow">jasakom</a> (old memory). Di sana aku mulai mengenal yang namanya web hacking (harusnya namanya cracking sih). <a href="http://www.xrvel.com">Aku</a> mulai mengenal tool-tool sederhana seperti web server scanner, ip scanner, trojan, keylogger, dll. Salah satu yang aku gunakan adalah nikto, sebuah command line based tool dari bahasa <a href="http://www.perl.org" target="_blank" rel="external nofollow">Perl</a>. Nggak tahu saat ini nikto masih didevelop communitynya atau nggak.</p>
<p>Aku mulai menginstall Perl di komputer lokal, aku mulai cari tutorial Perl, aku coba-coba sendiri di rumah, membuat mulai dari aplikasi sederhana hingga yang lumayan kompleks dari Perl.</p>
<p>Selain itu karena pengaruh efek artikel &#8220;SQL Injection&#8221; yang aku baca di artikel cracking, aku mulai menginstall MySQL di komputer lokal (benar-benar MySQL saja, tidak ada PHP). Lalu aku mulai bermain-main dengan query MySQL menggunakan command-line-based-clientnya, berbekal dengan artikel-artikel download internet.</p>
<p>Bersamaan dengan belajar Perl, teman sekelasku yang juga tertarik dunia hacking (cracking) membeli sebuah buku cara membuat keylogger sederhana dari Delphi 7. Mulailah aku menyalin kode dari buku. Tapi tetap saja ada kesulitan karena penulis tidak memberikan deskripsi pemrograman yang jelas. Untung masih ada screenshot-screenshotnya sehingga bisa aku coba-coba sendiri (trial and error). Sampai akhirnya keylogger benar-benar jadi. Dari situlah aku mulai sedikit meninggalkan Perl dan beralih ke pemrograman dengan Delphi 7.</p>
<p>Suatu saat, saat sedang jalan-jalan di gramedia, aku menemukan buku belajar HTML. Wow ini pasti menarik. Karena pasti aku bisa membuat web. Mulailah aku belajar HTML dan JavaScript sampai lumayan lama.</p>
<p><a href="http://www.php.net" target="_blank" rel="external nofollow">PHP</a> sendiri baru aku dapat di bangku kuliah saat semester kedua. Sampai akhirnya saat ini fokusku tetap di PHP karena selain menyenangkan, juga &#8230;.. <img src='http://www.xrvel.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.xrvel.com/299/personal/my-programming-history/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>
