<?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>Yohan Naftali &#187; Programming</title>
	<atom:link href="http://www.yohanli.com/category/technology/programming/feed" rel="self" type="application/rss+xml" />
	<link>http://www.yohanli.com</link>
	<description>Articles</description>
	<lastBuildDate>Sat, 03 Sep 2011 11:03:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Event onkeyup pada Javascript</title>
		<link>http://www.yohanli.com/event-onkeyup-pada-javascript.html</link>
		<comments>http://www.yohanli.com/event-onkeyup-pada-javascript.html#comments</comments>
		<pubDate>Sun, 27 Mar 2011 06:35:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[onkeyup]]></category>

		<guid isPermaLink="false">http://www.yohanli.com/?p=2419</guid>
		<description><![CDATA[Berikut ini adalah contoh aplikasi kode javascript menggunakan event onkeyup pada input form. &#160; &#60;html&#62; &#60;head&#62; &#60;script type=&#8221;text/javascript&#8221;&#62; function hitung() { var ttlbelanja=document.getElementById(&#8220;totalbelanja&#8221;).value; var tendered=document.getElementById(&#8220;uang&#8221;).value; var kembali=tendered-ttlbelanja; if(kembali&#60;0) { kembali = &#8220;Uang Belum Cukup&#8221;; } document.getElementById(&#8220;kembali&#8221;).innerHTML=kembali; } function uangotomatis() { var ttlbelanja=document.getElementById(&#8220;totalbelanja&#8221;).value; document.getElementById(&#8220;uang&#8221;).value=ttlbelanja; document.getElementById(&#8220;kembali&#8221;).innerHTML=0; } &#60;/script&#62; &#60;/head&#62; &#60;body&#62; &#60;h1&#62;Menghitung Uang Kembali&#60;/h1&#62; &#60;form&#62; Total Belanja: &#60;input [...]]]></description>
		<wfw:commentRss>http://www.yohanli.com/event-onkeyup-pada-javascript.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Code::Blocks Simple Hello World Console Applications</title>
		<link>http://www.yohanli.com/codeblocks-simple-hello-world-console-applications.html</link>
		<comments>http://www.yohanli.com/codeblocks-simple-hello-world-console-applications.html#comments</comments>
		<pubDate>Tue, 22 Feb 2011 12:13:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[c]]></category>
		<category><![CDATA[codeblocks]]></category>
		<category><![CDATA[console application]]></category>
		<category><![CDATA[helloworld]]></category>

		<guid isPermaLink="false">http://www.yohanli.com/?p=2387</guid>
		<description><![CDATA[Create New Project from File -&#62; New -&#62; Project Pick New Console Project then Click Go Click Next Select C then Click Next Fill project title and choose folder to create project in Choose GNU GCC Compiler and then click Finish Create Code in main.c files #include &#60;stdio.h&#62; #include &#60;stdlib.h&#62; int main() { printf(&#8220;Hello world!\n&#8221;); [...]]]></description>
		<wfw:commentRss>http://www.yohanli.com/codeblocks-simple-hello-world-console-applications.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Substitute TTF Font on Epson TM-U220 Receipt Printer</title>
		<link>http://www.yohanli.com/substitute-ttf-font-on-epson-tm-u220-receipt-printer.html</link>
		<comments>http://www.yohanli.com/substitute-ttf-font-on-epson-tm-u220-receipt-printer.html#comments</comments>
		<pubDate>Sat, 12 Feb 2011 12:48:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Epson Font]]></category>
		<category><![CDATA[Epson TM-U220]]></category>
		<category><![CDATA[Point of sale]]></category>
		<category><![CDATA[Receipt Printer]]></category>
		<category><![CDATA[Substitute TTF Font]]></category>
		<category><![CDATA[TM-U220]]></category>

		<guid isPermaLink="false">http://www.yohanli.com/?p=2381</guid>
		<description><![CDATA[I found it&#8217;s tricky in printing Epson&#8217;s receipt printer font (TM-U220) on web browser point of sale application, CSS does not allowed me to access Epson&#8217;s receipt printer font. All you need to do is setting font substitution in printing preferences. Open Control Panel to access Printers On Epson&#8217;s Receipt Printer do right click then [...]]]></description>
		<wfw:commentRss>http://www.yohanli.com/substitute-ttf-font-on-epson-tm-u220-receipt-printer.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Disable Print Dialog on Firefox Browser</title>
		<link>http://www.yohanli.com/how-to-disable-print-dialog-on-firefox-browser.html</link>
		<comments>http://www.yohanli.com/how-to-disable-print-dialog-on-firefox-browser.html#comments</comments>
		<pubDate>Sat, 12 Feb 2011 12:25:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[how to disable print dialog]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Point of sale]]></category>
		<category><![CDATA[print dialog]]></category>

		<guid isPermaLink="false">http://www.yohanli.com/?p=2379</guid>
		<description><![CDATA[Annoying with print dialog? Need to disable print dialog on your controlled environment? Need to disable print dialog on your web based Point of Sale (POS) applications (e.g phppointofsale)? Need to disable print dialog on your web based ticket printing applications? Type about:config on address bar Choose to promise Right clicik and create new boolean [...]]]></description>
		<wfw:commentRss>http://www.yohanli.com/how-to-disable-print-dialog-on-firefox-browser.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Konsep Pemrograman MVC (Model View Controller)</title>
		<link>http://www.yohanli.com/konsep-mvc-model-view-controller.html</link>
		<comments>http://www.yohanli.com/konsep-mvc-model-view-controller.html#comments</comments>
		<pubDate>Wed, 02 Feb 2011 09:46:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[database programming]]></category>
		<category><![CDATA[konsep MVC]]></category>
		<category><![CDATA[model view controller]]></category>
		<category><![CDATA[MVC]]></category>

		<guid isPermaLink="false">http://www.yohanli.com/?p=2367</guid>
		<description><![CDATA[MVC adalah sebuah bentuk pemrograman yang memisahkan berdasarkan logika penanganan tampilan, logika pengontrolan dan logika model. MVC bertujuan supaya pada pengembangan perangkat lunak yang besar mudah untuk dilakukan maintenance (perbaikan/penambahan atau pengurangan code). Model adalah komponen yang berfungsi mengambil data dari database/sumber data. Fungsi yang terdapat dalam Model akan dipanggil oleh Controller. View adalah komponen [...]]]></description>
		<wfw:commentRss>http://www.yohanli.com/konsep-mvc-model-view-controller.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Menggunakan Anchor dengan image pada CodeIgnitier</title>
		<link>http://www.yohanli.com/menggunakan-anchor-dengan-image-pada-code-ignitier.html</link>
		<comments>http://www.yohanli.com/menggunakan-anchor-dengan-image-pada-code-ignitier.html#comments</comments>
		<pubDate>Wed, 15 Sep 2010 10:38:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[anchor]]></category>
		<category><![CDATA[codigniter]]></category>
		<category><![CDATA[image anchor]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://www.yohanli.com/?p=2333</guid>
		<description><![CDATA[HTML : &#60;a href=&#8221;http://urltujuan.html&#8221;&#62;&#60;img src=&#8221;/images/image.gif&#8221; style=&#8221;border: 0px&#8221;&#62;&#60;/a&#62; CodeIgniter: Load html helper untuk menggunakan fungsi img() &#60;?php $this-&#62;load-&#62;helper(&#8216;html&#8217;);?&#62; Gunakan fungsi img() &#60;?php echo anchor(&#8220;http://urltujuan.html&#8221;, img(array(&#8216;src&#8217;=&#62;&#8217;../images/image.gif&#8217;,'style&#8217;=&#62;&#8217;border:0px&#8217;))); ?&#62;]]></description>
		<wfw:commentRss>http://www.yohanli.com/menggunakan-anchor-dengan-image-pada-code-ignitier.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Even or Odd?</title>
		<link>http://www.yohanli.com/even-or-odd.html</link>
		<comments>http://www.yohanli.com/even-or-odd.html#comments</comments>
		<pubDate>Tue, 20 Oct 2009 04:50:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://yohanli.com/?p=2257</guid>
		<description><![CDATA[There are many ways to determine wheter the number is odd or even. Here is two: 1. Check with modulus operator (%) The modulus operator returns the remainder when dividing two numbers. Even numbers doesn&#8217;t have a remainder, but Odd numbers have 1. 2. Check by bit operators Here is the code: 1. With modulus [...]]]></description>
		<wfw:commentRss>http://www.yohanli.com/even-or-odd.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blackberry LED Programming</title>
		<link>http://www.yohanli.com/blackberry-led-programming.html</link>
		<comments>http://www.yohanli.com/blackberry-led-programming.html#comments</comments>
		<pubDate>Tue, 25 Aug 2009 05:26:44 +0000</pubDate>
		<dc:creator>Yohan Naftali</dc:creator>
				<category><![CDATA[Blackberry]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://yohanli.com/?p=2144</guid>
		<description><![CDATA[This article show how to access LED on blackberry handheld. For LED programming, we need to import net.rim.device.api.system.LED. Source Code TestLed.java package com.rim.yohanli.testled; import net.rim.device.api.system.LED; import net.rim.device.api.ui.UiApplication; import net.rim.device.api.ui.component.Dialog; import net.rim.device.api.ui.component.LabelField; import net.rim.device.api.ui.component.RichTextField; import net.rim.device.api.ui.container.MainScreen; public class TestLed extends UiApplication{ public static void main(String[] args) { TestLed theApp = new TestLed(); theApp.enterEventDispatcher(); } public TestLed() [...]]]></description>
		<wfw:commentRss>http://www.yohanli.com/blackberry-led-programming.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BlackBerry Programming</title>
		<link>http://www.yohanli.com/blackberry-programming.html</link>
		<comments>http://www.yohanli.com/blackberry-programming.html#comments</comments>
		<pubDate>Wed, 29 Jul 2009 08:36:52 +0000</pubDate>
		<dc:creator>Yohan Naftali</dc:creator>
				<category><![CDATA[Blackberry]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Simulator]]></category>

		<guid isPermaLink="false">http://yohanli.com/?p=1816</guid>
		<description><![CDATA[The Blackberry platform is Java® based, and there are number of different tools that you can use to develop your applications. This tutorials only show basic programming for Blackberry® application. We assume that you&#8217;re not beginner in programming. Java® language is mandatory. This tutorials use Windows® OS, but you may develop use other OS. Tools: [...]]]></description>
		<wfw:commentRss>http://www.yohanli.com/blackberry-programming.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exec PHP</title>
		<link>http://www.yohanli.com/exec-php.html</link>
		<comments>http://www.yohanli.com/exec-php.html#comments</comments>
		<pubDate>Sun, 24 May 2009 11:53:37 +0000</pubDate>
		<dc:creator>Yohan Naftali</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://yohanli.com/?p=1625</guid>
		<description><![CDATA[This article is for wordpress.org users. Exec-PHP is the best plugin i ever use. Just download from http://bluesome.net/post/2005/08/18/50/. Exec-PHP enable you to run PHP and script from your blog. It&#8217;s easy to install, just follow the note. If you&#8217;re PHP programmer and want to enhance your blog, it&#8217;s recommended to install this plugin to your [...]]]></description>
		<wfw:commentRss>http://www.yohanli.com/exec-php.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

