<?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>Sense of Life &#187; Programming</title>
	<atom:link href="http://www.akemapa.com/category/coded/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.akemapa.com</link>
	<description>Fight for what you belive in</description>
	<lastBuildDate>Thu, 26 Jan 2012 11:44:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>PHP-GD: Create Image from Text</title>
		<link>http://www.akemapa.com/2009/11/12/php-gd-create-image-from-text/</link>
		<comments>http://www.akemapa.com/2009/11/12/php-gd-create-image-from-text/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 12:15:40 +0000</pubDate>
		<dc:creator>vandai</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[gd]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.akemapa.com/?p=237</guid>
		<description><![CDATA[Some people want to hide their text into image for any reason. As example, to avoid spambot steal their email address, or to generate dynamic images content. Its simply done with PHP and GD Library. See this simple function: function imgfromstring($string){ $font = 5; //dynamic size of image. to fit your text. $width = ImageFontWidth($font) [...]]]></description>
		<wfw:commentRss>http://www.akemapa.com/2009/11/12/php-gd-create-image-from-text/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Restore Ubuntu Boot Loader</title>
		<link>http://www.akemapa.com/2009/09/07/restore-ubuntu-boot-loader/</link>
		<comments>http://www.akemapa.com/2009/09/07/restore-ubuntu-boot-loader/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 10:09:17 +0000</pubDate>
		<dc:creator>vandai</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tech-News]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.akemapa.com/?p=201</guid>
		<description><![CDATA[To repair your Ubuntu GRUB, you need Ubuntu LiveCD, boot from this CD, and open a terminal. Be a root, by typing &#8220;sudo su&#8221; and enter your password. Find the partition which your Ubuntu system is installed. # fdisk -l On my machine, my Ubuntu partition is on /dev/sda3, so i&#8217;ll use this for example. [...]]]></description>
		<wfw:commentRss>http://www.akemapa.com/2009/09/07/restore-ubuntu-boot-loader/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Reset Mysql Root Password</title>
		<link>http://www.akemapa.com/2009/03/06/reset-mysql-root-password/</link>
		<comments>http://www.akemapa.com/2009/03/06/reset-mysql-root-password/#comments</comments>
		<pubDate>Fri, 06 Mar 2009 08:13:41 +0000</pubDate>
		<dc:creator>vandai</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tech-News]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.akemapa.com/?p=162</guid>
		<description><![CDATA[Terrible, just setup a new server, then i forgot root password for mysql database. So i need to reset the root password. This is the way i do: 1. Login to our server machine as root (system administrator). Yes! we must have root access to our machine. 2. Shutdown mysql server (if already running). Make [...]]]></description>
		<wfw:commentRss>http://www.akemapa.com/2009/03/06/reset-mysql-root-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP-MySql: Select previous row and next row from current ID</title>
		<link>http://www.akemapa.com/2008/07/15/php-mysql-select-previous-row-and-next-row-from-current-id/</link>
		<comments>http://www.akemapa.com/2008/07/15/php-mysql-select-previous-row-and-next-row-from-current-id/#comments</comments>
		<pubDate>Tue, 15 Jul 2008 10:15:27 +0000</pubDate>
		<dc:creator>vandai</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.akemapa.com/?p=134</guid>
		<description><![CDATA[During the dark age, the simplest way to get previous row from current ID was using this query: SELECT field1 FROM tablename WHERE id = &#40;$currentId - 1&#41; and to get next row: SELECT field1 FROM tablename WHERE id = &#40;$currentId + 1&#41; But there&#8217;s a problem. Like common data, we need to delete some [...]]]></description>
		<wfw:commentRss>http://www.akemapa.com/2008/07/15/php-mysql-select-previous-row-and-next-row-from-current-id/feed/</wfw:commentRss>
		<slash:comments>55</slash:comments>
		</item>
		<item>
		<title>PHP-GD: Resize Transparent Image PNG &amp; GIF</title>
		<link>http://www.akemapa.com/2008/07/10/php-gd-resize-transparent-image-png-gif/</link>
		<comments>http://www.akemapa.com/2008/07/10/php-gd-resize-transparent-image-png-gif/#comments</comments>
		<pubDate>Thu, 10 Jul 2008 15:21:59 +0000</pubDate>
		<dc:creator>vandai</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[gd]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.akemapa.com/?p=133</guid>
		<description><![CDATA[By default, you will get black background if you resize a transparent image. To fix it, you need set alpha channel imagecolorallocatealpha to 127. With imagecolorallocatealpha, it will allocate a color for an image. Usage: int imagecolorallocatealpha ( resource image, int red, int green, int blue, int alpha) From PHP manual: imagecolorallocatealpha() behaves identically to [...]]]></description>
		<wfw:commentRss>http://www.akemapa.com/2008/07/10/php-gd-resize-transparent-image-png-gif/feed/</wfw:commentRss>
		<slash:comments>71</slash:comments>
		</item>
		<item>
		<title>Mysql String Functions</title>
		<link>http://www.akemapa.com/2008/05/25/mysql-string-functions/</link>
		<comments>http://www.akemapa.com/2008/05/25/mysql-string-functions/#comments</comments>
		<pubDate>Sun, 25 May 2008 16:23:52 +0000</pubDate>
		<dc:creator>vandai</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.akemapa.com/2008/05/25/mysql-string-functions/</guid>
		<description><![CDATA[Name Description ASCII() Return numeric value of left-most character BIN() Return a string representation of the argument BIT_LENGTH() Return length of argument in bits CHAR_LENGTH() Return number of characters in argument CHAR() Return the character for each integer passed CHARACTER_LENGTH() A synonym for CHAR_LENGTH() CONCAT_WS() Return concatenate with separator CONCAT() Return concatenated string ELT() Return [...]]]></description>
		<wfw:commentRss>http://www.akemapa.com/2008/05/25/mysql-string-functions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP: Procedural vs. Object Oriented Coding Style</title>
		<link>http://www.akemapa.com/2008/05/16/php-procedural-vs-object-oriented-coding-style/</link>
		<comments>http://www.akemapa.com/2008/05/16/php-procedural-vs-object-oriented-coding-style/#comments</comments>
		<pubDate>Fri, 16 May 2008 14:43:04 +0000</pubDate>
		<dc:creator>vandai</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.akemapa.com/2008/05/16/php-procedural-vs-object-oriented-coding-style/</guid>
		<description><![CDATA[PHP allows you to write code in two flavours, one is procedural and the other is object oriented. You can even write procedural code in PHP5 and it will run without any problems. If you are not clear about procedural and object oriented programming, then we will have a look at these two different coding [...]]]></description>
		<wfw:commentRss>http://www.akemapa.com/2008/05/16/php-procedural-vs-object-oriented-coding-style/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Subdomain wildcard pada Ubuntu dengan bind9 &#8211; Part II</title>
		<link>http://www.akemapa.com/2008/05/16/subdomain-wildcard-pada-ubuntu-dengan-bind9-part-ii/</link>
		<comments>http://www.akemapa.com/2008/05/16/subdomain-wildcard-pada-ubuntu-dengan-bind9-part-ii/#comments</comments>
		<pubDate>Fri, 16 May 2008 04:11:21 +0000</pubDate>
		<dc:creator>vandai</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.akemapa.com/2008/05/16/subdomain-wildcard-pada-ubuntu-dengan-bind9-part-ii/</guid>
		<description><![CDATA[Menyambung artikel sebelumnya, kali ini kita akan membuat konfigurasi Virtual Host agar setiap request yang masuk langsung diarahkan ke domain utama. Pertama, edit file konfigurasi default apache: /etc/apache2/sites-available/default Ubah nilai NameVirtualHost dan VirtualHost menjadi * $ sudo pico /etc/apache2/sites-available/default sehingga menjadi: NameVirtualHost * &#60;VirtualHost *&#62; ServerAdmin webmaster@localhost DocumentRoot /var/www/ &#60;Directory /&#62; Options FollowSymLinks AllowOverride None [...]]]></description>
		<wfw:commentRss>http://www.akemapa.com/2008/05/16/subdomain-wildcard-pada-ubuntu-dengan-bind9-part-ii/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Subdomain wildcard pada Ubuntu dengan bind9</title>
		<link>http://www.akemapa.com/2008/05/15/subdomain-wildcard-pada-ubuntu-dengan-bind9/</link>
		<comments>http://www.akemapa.com/2008/05/15/subdomain-wildcard-pada-ubuntu-dengan-bind9/#comments</comments>
		<pubDate>Thu, 15 May 2008 12:00:36 +0000</pubDate>
		<dc:creator>vandai</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.akemapa.com/2008/05/15/subdomain-wildcard-pada-ubuntu-dengan-bind9/</guid>
		<description><![CDATA[Ada kasus seperti ini, kita akan membuat sebuah website komunitas yang nanti nya para pengunjung bisa mendaftar sebagai anggota. Dan setiap anggota masing-masing akan mendapatkan alamat URL: http://namauser.situskita.com/ Kelihatannya tampak mudah bukan? Tinggal membuatkan Virtual Host untuk masing-masing anggota, dan daftarkan subdomainnya. Namun permasalahannya adalah, kita ingin subdomain tersebut hanya sebagai identitas, dan bukan berupa [...]]]></description>
		<wfw:commentRss>http://www.akemapa.com/2008/05/15/subdomain-wildcard-pada-ubuntu-dengan-bind9/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Blogging via Google Docs</title>
		<link>http://www.akemapa.com/2008/03/25/blogging-via-google-docs/</link>
		<comments>http://www.akemapa.com/2008/03/25/blogging-via-google-docs/#comments</comments>
		<pubDate>Tue, 25 Mar 2008 16:16:57 +0000</pubDate>
		<dc:creator>vandai</dc:creator>
				<category><![CDATA[For life..]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tech-News]]></category>

		<guid isPermaLink="false">http://www.akemapa.com/2008/03/25/googledocsblogwordpress/</guid>
		<description><![CDATA[Selain untuk membuat dokumen, Google docs juga bisa untuk menulis blog, yang kemudian otomatis akan di posting di situs blog anda seperti: Blogger.com, livejournal.com, WordPress.com, dan lain nya. Bahkan untuk situs pribadi anda sendiri yang menggunakan engine yang didukung oleh API Google. Kenapa harus Google Docs? Kadang kala editor blog kita memiliki fitur yang terbatas. [...]]]></description>
		<wfw:commentRss>http://www.akemapa.com/2008/03/25/blogging-via-google-docs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Teka-teki Matematika</title>
		<link>http://www.akemapa.com/2008/02/27/teka-teki-matematika/</link>
		<comments>http://www.akemapa.com/2008/02/27/teka-teki-matematika/#comments</comments>
		<pubDate>Wed, 27 Feb 2008 07:58:32 +0000</pubDate>
		<dc:creator>vandai</dc:creator>
				<category><![CDATA[For life..]]></category>
		<category><![CDATA[Just a joke]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.akemapa.com/2008/02/27/teka-teki-matematika/</guid>
		<description><![CDATA[Mungkin sudah ada yang pernah mendapatkannya melalui email, tapi mari kita sebarkan lagi. Saya memiliki file Excel yang ber-password. Nah untuk membukanya anda harus menjawab pertanyaan dibawah ini. Jawaban tersebut merupakan password untuk membuka file excel ini. Petunjuknya adalah: Dalam sebuah bus ada 7 orang gadis Tiap gadis membawa 7 Tas Tiap Tas berisi 7 [...]]]></description>
		<wfw:commentRss>http://www.akemapa.com/2008/02/27/teka-teki-matematika/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mempercepat Koneksi dengan SSH Tunneling</title>
		<link>http://www.akemapa.com/2007/11/28/mempercepat-koneksi-dengan-ssh-tunneling/</link>
		<comments>http://www.akemapa.com/2007/11/28/mempercepat-koneksi-dengan-ssh-tunneling/#comments</comments>
		<pubDate>Wed, 28 Nov 2007 09:24:25 +0000</pubDate>
		<dc:creator>vandai</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tech-News]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.akemapa.com/2007/11/28/mempercepat-koneksi-dengan-ssh-tunneling/</guid>
		<description><![CDATA[Artikel ini hanya untuk pembelajaran, penulis tidak bertanggung jawab atas segala akibat dari penggunaan artikel ini. Bukan maksud nakut-nakutin kok. cuma disclaimer pembukaan aja *pura-pura nya artikel keren gitu* Ini adalah tutorial singkat dan pendek yang penjelasannya bertele-tele. hehehehe&#8230; ^^v Jadi begini, kita tau sendiri gimana kualitas koneksi internet kita saat ini. Masih sedikit orang [...]]]></description>
		<wfw:commentRss>http://www.akemapa.com/2007/11/28/mempercepat-koneksi-dengan-ssh-tunneling/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Easter egg pada PHP</title>
		<link>http://www.akemapa.com/2007/11/23/easter-egg-pada-php/</link>
		<comments>http://www.akemapa.com/2007/11/23/easter-egg-pada-php/#comments</comments>
		<pubDate>Fri, 23 Nov 2007 13:06:20 +0000</pubDate>
		<dc:creator>vandai</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.akemapa.com/2007/11/23/easter-egg-pada-php/</guid>
		<description><![CDATA[Buat yang belum tau. ada easter egg pada PHP yang bisa menampilkan icon PHP yang berbeda pada setiap masing masing release / versi nya. Untuk melihatnya, cukup tambahkan “?=PHPE9568F36-D428-11d2-A769-00AA001ACF42″ (tanpa tanda kutip) pada URL dari situs yang menggunakan PHP. contoh: http://www.akemapa.com/?=PHPE9568F36-D428-11d2-A769-00AA001ACF42 Mine is doggie, What’s yours??]]></description>
		<wfw:commentRss>http://www.akemapa.com/2007/11/23/easter-egg-pada-php/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

