<?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>Lidon Sianturi's Blog</title>
	<atom:link href="http://lidonsianturi.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://lidonsianturi.wordpress.com</link>
	<description>God is good all the time</description>
	<lastBuildDate>Sun, 15 Feb 2009 04:57:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='lidonsianturi.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Lidon Sianturi's Blog</title>
		<link>http://lidonsianturi.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://lidonsianturi.wordpress.com/osd.xml" title="Lidon Sianturi&#039;s Blog" />
	<atom:link rel='hub' href='http://lidonsianturi.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Tutorial inheritance di java</title>
		<link>http://lidonsianturi.wordpress.com/2009/02/15/tutorial-inheritance-di-java/</link>
		<comments>http://lidonsianturi.wordpress.com/2009/02/15/tutorial-inheritance-di-java/#comments</comments>
		<pubDate>Sun, 15 Feb 2009 03:59:36 +0000</pubDate>
		<dc:creator>Lidon Sianturi</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://lidonsianturi.wordpress.com/?p=33</guid>
		<description><![CDATA[Inheritance adalah fitur di java yang mengijinkan sebuah kelas dapat diturunkan .Kalau di kehidupan sehari-hari, ini dapat diilustrasikan kepada bapak dan anak di sebuah keluarga.. bapak adalah super class sedangkan anak adalah sub class . Keyword untuk meng-inheritance : extend Pada java tidak dijinkan multiple inheritance sbb Public class student extends Person,Sekolah{ //rest of code [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lidonsianturi.wordpress.com&amp;blog=5778078&amp;post=33&amp;subd=lidonsianturi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://lidonsianturi.files.wordpress.com/2009/02/person4.jpg"></a>Inheritance adalah fitur di java yang mengijinkan sebuah kelas dapat diturunkan .Kalau di kehidupan sehari-hari, ini dapat diilustrasikan kepada bapak dan anak di sebuah keluarga.. bapak adalah super class sedangkan anak adalah sub class .<br />
Keyword untuk meng-inheritance : extend<br />
Pada java tidak dijinkan multiple inheritance sbb<br />
<code>Public class student extends Person,Sekolah{<br />
//rest of code<br />
}<br />
</code><br />
Dengan catatan: Jika memang class Sekolah ada !!!!</p>
<p>Untuk menurunkan contructor yang ada pada super class , java menyediakan sebuah method super() yang akan dipanggil di sub class seperti class students di bawah ini.</p>
<p> </p>
<p>Patikan class dibawah ini..<br />
<code><br />
/*<br />
Nama File : Person.java<br />
Date : 12 December 2008<br />
*/<br />
public class Person<br />
{<br />
protected String nama;<br />
protected String alamat;</code><br />
//overloading constructor<br />
public Person(){<br />
nama=&#8221;";<br />
alamat=&#8221;";<br />
}<br />
public Person(String nama,String alamat){<br />
this.nama=nama;<br />
this.alamat=alamat;<br />
}<br />
//setter<br />
public void setNama(String nama){<br />
this.nama=nama;<br />
}<br />
public void setAlamat(String alamat){<br />
this.alamat=alamat;<br />
}<br />
//getter<br />
public String getNama(){<br />
return nama;<br />
}<br />
public String getAlamat(){<br />
return alamat;<br />
}<br />
public String tulisSemua(){<br />
String dataPerson=<br />
&#8220;Nama : &#8220;+nama+&#8221;\n&#8221;+<br />
&#8220;Alamat : &#8220;+alamat+&#8221;\n&#8221;;<br />
return dataPerson;<br />
}<br />
};</p>
<p>Setiap perilaku atau behavior atau method yang dimiliki oleh super class akan secara otomatis di miliki oleh super class. Biarpun pada sub class kita tidak menemukan method tersebut . Tetapi jika sub class ingin implementasi method dari super class berbeda pada dirinya maka dia harus meng-overide method tersebut seperti method tulisSemua() di bawah ini . Pada method tulisSemua() sub class ingin menambahkan ID student .<br />
Perhatikan kelas berikut !<br />
<code><br />
/*<br />
nama file : Student.java<br />
*/<br />
public class Student extends Person<br />
{<br />
private String ID;<br />
//constructor turunan<br />
public Student(){<br />
super();<br />
ID="";<br />
}<br />
public Student(String nama,String alamat,String ID){<br />
super(nama,alamat);<br />
this.ID=ID;<br />
}<br />
public void setID(String ID){<br />
this.ID=ID;<br />
}<br />
public String getID(){<br />
return ID;<br />
}<br />
public String tulisSemua(){<br />
String dataStudent=<br />
"Nama : "+nama+"\n"+<br />
"Alamat : "+alamat+"\n"+<br />
"ID : "+ID;<br />
return dataStudent;<br />
}<br />
};<br />
Untuk menguji kedua kelas diatas kita menyediakan satu kelas pada kasus ini kelas DemoStudent.java<br />
/*<br />
nama file <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> emoStudent.java<br />
*/<br />
class DemoStudent<br />
{<br />
public static void main(String[] args){<br />
Student Student1=new Student("Agnes Monica","Jakarta”,”222300");<br />
System.out.println(Student1. tulisSemua ());<br />
}<br />
}<br />
</code><br />
Compile Person.java dengan cara mengetik langkah dibawah ini pada command prompt yang sudah diarahkan pathnya ke path folder kita menyimpan file java kita.</p>
<div id="attachment_34" class="wp-caption alignnone" style="width: 960px"><a href="http://lidonsianturi.files.wordpress.com/2009/02/person.jpg"><img class="size-full wp-image-34" title="person" src="http://lidonsianturi.files.wordpress.com/2009/02/person.jpg?w=950&#038;h=100" alt="Class Person" width="950" height="100" /></a><p class="wp-caption-text">Class Person</p></div>
<p>Compile Student.java dengan cara mengetik langkah dibawah ini pada command prompt yang sudah diarahkan pathnya ke path folder kita menyimpan file java kita.</p>
<div id="attachment_35" class="wp-caption alignnone" style="width: 960px"><a href="http://lidonsianturi.files.wordpress.com/2009/02/student.jpg"><img class="size-full wp-image-35" title="student" src="http://lidonsianturi.files.wordpress.com/2009/02/student.jpg?w=950&#038;h=100" alt="class student" width="950" height="100" /></a><p class="wp-caption-text">class student</p></div>
<p>Compile DemoStudent.java dengan cara mengetik langkah dibawah ini pada command prompt yang sudah diarahkan pathnya ke path folder kita menyimpan file java kita.</p>
<div id="attachment_36" class="wp-caption alignnone" style="width: 965px"><a href="http://lidonsianturi.files.wordpress.com/2009/02/demostudent.jpg"><img class="size-thumbnail wp-image-36" title="demostudent" src="http://lidonsianturi.files.wordpress.com/2009/02/demostudent.jpg?w=955&#038;h=100" alt="class demostudent" width="955" height="100" /></a><p class="wp-caption-text">class demostudent</p></div>
<p>Untuk mengeksekusi kita ketikan seperti gambar berikut . Maka akan menuliskan ke layer seperti berikut :</p>
<div id="attachment_37" class="wp-caption alignnone" style="width: 965px"><a href="http://lidonsianturi.files.wordpress.com/2009/02/rundemostudent.jpg"><img class="size-thumbnail wp-image-37" title="rundemostudent" src="http://lidonsianturi.files.wordpress.com/2009/02/rundemostudent.jpg?w=955&#038;h=110" alt="rundemostudent" width="955" height="110" /></a><p class="wp-caption-text">rundemostudent</p></div>
<p> Note: Cara diatas akan lebih mudah jira kita menggunakan text editor JCreator</p>
<p>Semoga membantu tutorial nya ..<br />
masih butuh kritik tutorialnya ..hehe<br />
maklum masih newbie!!!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lidonsianturi.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lidonsianturi.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lidonsianturi.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lidonsianturi.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lidonsianturi.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lidonsianturi.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lidonsianturi.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lidonsianturi.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lidonsianturi.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lidonsianturi.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lidonsianturi.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lidonsianturi.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lidonsianturi.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lidonsianturi.wordpress.com/33/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lidonsianturi.wordpress.com&amp;blog=5778078&amp;post=33&amp;subd=lidonsianturi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lidonsianturi.wordpress.com/2009/02/15/tutorial-inheritance-di-java/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/967ccdd113151b930433a17913d1d40f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Lidon Sianturi</media:title>
		</media:content>

		<media:content url="http://lidonsianturi.files.wordpress.com/2009/02/person.jpg" medium="image">
			<media:title type="html">person</media:title>
		</media:content>

		<media:content url="http://lidonsianturi.files.wordpress.com/2009/02/student.jpg" medium="image">
			<media:title type="html">student</media:title>
		</media:content>

		<media:content url="http://lidonsianturi.files.wordpress.com/2009/02/demostudent.jpg?w=128" medium="image">
			<media:title type="html">demostudent</media:title>
		</media:content>

		<media:content url="http://lidonsianturi.files.wordpress.com/2009/02/rundemostudent.jpg?w=128" medium="image">
			<media:title type="html">rundemostudent</media:title>
		</media:content>
	</item>
		<item>
		<title>Deleting MUltiply File USing Java</title>
		<link>http://lidonsianturi.wordpress.com/2008/11/23/deleting-multiply-file-using-java/</link>
		<comments>http://lidonsianturi.wordpress.com/2008/11/23/deleting-multiply-file-using-java/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 04:33:31 +0000</pubDate>
		<dc:creator>Lidon Sianturi</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://lydone.wordpress.com/?p=27</guid>
		<description><![CDATA[Deleting File Using Java&#8230; import java.io.*; public class DeleteFile{ private static void deletefile(String file){ File f1 = new File(file); boolean success = f1.delete(); if (!success){ System.out.println(”Deletion failed.”); System.exit(0); } else{ System.out.println(”File deleted.”); } } public static void main(String[] args){ switch(args.length){ case 0: System.out.println(”File has not mentioned.”); System.exit(0); case 1: deletefile(args[0]); System.exit(0); default : System.out.println(”Multiple files [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lidonsianturi.wordpress.com&amp;blog=5778078&amp;post=27&amp;subd=lidonsianturi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Deleting File Using Java&#8230;</p>
<p><code>import java.io.*;<br />
public class DeleteFile{<br />
private static void deletefile(String file){<br />
File f1 = new File(file);<br />
boolean success = f1.delete();</p>
<p>if (!success){<br />
System.out.println(”Deletion failed.”);<br />
System.exit(0);<br />
}<br />
else{<br />
System.out.println(”File deleted.”);<br />
}<br />
}<br />
public static void main(String[] args){<br />
switch(args.length){<br />
case 0: System.out.println(”File has not mentioned.”);<br />
System.exit(0);<br />
case 1: deletefile(args[0]);<br />
System.exit(0);<br />
default : System.out.println(”Multiple files are not allow.”);<br />
System.exit(0);<br />
}<br />
}<br />
}<br />
</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lidonsianturi.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lidonsianturi.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lidonsianturi.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lidonsianturi.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lidonsianturi.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lidonsianturi.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lidonsianturi.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lidonsianturi.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lidonsianturi.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lidonsianturi.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lidonsianturi.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lidonsianturi.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lidonsianturi.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lidonsianturi.wordpress.com/27/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lidonsianturi.wordpress.com&amp;blog=5778078&amp;post=27&amp;subd=lidonsianturi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lidonsianturi.wordpress.com/2008/11/23/deleting-multiply-file-using-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/967ccdd113151b930433a17913d1d40f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Lidon Sianturi</media:title>
		</media:content>
	</item>
		<item>
		<title>Lonelinees adalah prinsip hidupku&#8230;.</title>
		<link>http://lidonsianturi.wordpress.com/2008/11/16/lonelinees-adalah-prinsip-hidupku/</link>
		<comments>http://lidonsianturi.wordpress.com/2008/11/16/lonelinees-adalah-prinsip-hidupku/#comments</comments>
		<pubDate>Sun, 16 Nov 2008 05:53:07 +0000</pubDate>
		<dc:creator>Lidon Sianturi</dc:creator>
				<category><![CDATA[Curhat]]></category>

		<guid isPermaLink="false">http://lydone.wordpress.com/?p=18</guid>
		<description><![CDATA[Judul diatas adalah prinsip hidup ku sekarang .. karena aku pikirkan, bagi ku sendiri kita berbuat baik sama orang lain malah kita akan mendapat masalah yang besarrr.. Itulah yang kualami sekarang .. Aku berbuat baik sama orang  yang kuanggap saudara ku dan juga sahabatku .. ujung-ujung nya hubungan nya tidak baik lagiiii&#8230;Jadi yang ada dalam [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lidonsianturi.wordpress.com&amp;blog=5778078&amp;post=18&amp;subd=lidonsianturi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Judul diatas adalah prinsip hidup ku sekarang .. karena aku pikirkan, bagi ku sendiri kita berbuat baik sama orang lain malah kita akan mendapat masalah yang besarrr.. Itulah yang kualami sekarang ..</p>
<p>Aku berbuat baik sama orang  yang kuanggap saudara ku dan juga sahabatku .. ujung-ujung nya hubungan nya tidak baik lagiiii&#8230;Jadi yang ada dalam hatiku &#8220;<strong>Aku ingin SENDIRI(LONELINESS)</strong> &#8221; itulah aku &#8230;</p>
<p>aku ingin sendiri menjalani hidup ini &#8230;&#8230; Tapi kalua orang yang kuanggap saudaraku dan sahabatku meng-openi aku , aku akan tanggapi dengan baik tapiu tidak seperti dulu lagi&#8230;</p>
<p>aku harus berusaha menganggap mereka seperti orang biasa .. dimana aku seperti jumpa di di jalan dan saliong bersapaan &#8230; Tidak ada nilai lebihnya&#8230;</p>
<p>Loneliness adalah Prinsip hidupku &#8230;.</p>
<p>Selamat tinggal rasa ceria yang ada di Hatiku , yang selalu kocak dalam hidupku ..</p>
<p>Sorry aku harus melupakan kamu &#8230;</p>
<p> </p>
<p>Enjoy hidup &#8230;. karana hidup ini cuman semenetara &#8230;..</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lidonsianturi.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lidonsianturi.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lidonsianturi.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lidonsianturi.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lidonsianturi.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lidonsianturi.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lidonsianturi.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lidonsianturi.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lidonsianturi.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lidonsianturi.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lidonsianturi.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lidonsianturi.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lidonsianturi.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lidonsianturi.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lidonsianturi.wordpress.com&amp;blog=5778078&amp;post=18&amp;subd=lidonsianturi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lidonsianturi.wordpress.com/2008/11/16/lonelinees-adalah-prinsip-hidupku/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/967ccdd113151b930433a17913d1d40f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Lidon Sianturi</media:title>
		</media:content>
	</item>
		<item>
		<title>Sahabat telah pergi..</title>
		<link>http://lidonsianturi.wordpress.com/2008/11/15/sahabat-telah-pergi/</link>
		<comments>http://lidonsianturi.wordpress.com/2008/11/15/sahabat-telah-pergi/#comments</comments>
		<pubDate>Sat, 15 Nov 2008 04:26:59 +0000</pubDate>
		<dc:creator>Lidon Sianturi</dc:creator>
				<category><![CDATA[Curhat]]></category>

		<guid isPermaLink="false">http://lydone.wordpress.com/?p=13</guid>
		<description><![CDATA[Hal yang paling menyakitakan dalam hidup ini menurut aku adalah .. orang yang kita anggap Jadi seorang sahabat kita .. Menjauh dengan tanpa alasan .. Dia sudah sahabat kian .. tapi gk tau entah kenapa &#8230; Dia menjauhhh.. Itulah yang kualami sekrang &#8230;Malangnya nasib ku .. sakitnya Hatiku &#8230; Sudha berbagai cara aku buat untuk [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lidonsianturi.wordpress.com&amp;blog=5778078&amp;post=13&amp;subd=lidonsianturi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hal yang paling menyakitakan dalam hidup ini menurut aku adalah ..</p>
<p>orang yang kita anggap Jadi seorang sahabat kita .. Menjauh dengan tanpa alasan ..</p>
<p>Dia sudah sahabat kian .. tapi gk tau entah kenapa &#8230; Dia menjauhhh..</p>
<p>Itulah yang kualami sekrang &#8230;Malangnya nasib ku .. sakitnya Hatiku &#8230;</p>
<p>Sudha berbagai cara aku buat untuk mendeaktinya but hasilnya sperti menegakakan benang yang basah &#8230; Malah dia cuek &#8230; waktu aku sapa .. dia tidak menjawab,, akhirnya aku putuskan dalam diriku ..</p>
<p>aku tidak akan mengenalnya lagi dalam Hidupku &#8230;</p>
<p>Aku akan menganggap dia seperti orang yang baru saja saya lihat disamping jalan waktu saya naik Angkot&#8230; Tiulah tekad ku&#8230; But aku gk bisa melupakan persahabatan ini &#8230; Terus tersirat dipikiran ku ..</p>
<p>Tapi aku bertekad lagi &#8220;Aku BIsa&#8221; hingga aku buta mott diriku &#8220;loneliness&#8221; yang mencerminta kan sikapku untuk melupakan seorang sahabat&#8230;.Akhirnya aku menyendiri .. Yang bisanya akku banyak teman &#8230; aku akhirnya menyendiri&#8230; Akku lakukan ini semua supaya frekuensi aku bertemua dengan seorang sahabat itu semakin kecilll&#8230;yang ada didalam pikiranku sekarang &#8220;Gk sampe 1 tahun lagi aku bertemu sama Dia&#8221; Itulah waktu yang kutunggu-tunggu&#8230;.</p>
<p>Aku bertekad tidak akan menjalin persahabatan lagi sama siapapun .. karena kalau persahabatan itu rusak alangkah sakitnya hati kita seperti yang kualami sekarang ini&#8230;&#8230;</p>
<p>&#8220;AKU GAK NYAMPE SATU TAHUN LAGI TATAP MUKA SAMA DIA&#8221;</p>
<p>&#8230;&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lidonsianturi.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lidonsianturi.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lidonsianturi.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lidonsianturi.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lidonsianturi.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lidonsianturi.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lidonsianturi.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lidonsianturi.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lidonsianturi.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lidonsianturi.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lidonsianturi.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lidonsianturi.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lidonsianturi.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lidonsianturi.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lidonsianturi.wordpress.com&amp;blog=5778078&amp;post=13&amp;subd=lidonsianturi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lidonsianturi.wordpress.com/2008/11/15/sahabat-telah-pergi/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/967ccdd113151b930433a17913d1d40f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Lidon Sianturi</media:title>
		</media:content>
	</item>
		<item>
		<title>UTS Semester v (IS -Information System)</title>
		<link>http://lidonsianturi.wordpress.com/2008/11/15/uts-semester-v-is-information-system/</link>
		<comments>http://lidonsianturi.wordpress.com/2008/11/15/uts-semester-v-is-information-system/#comments</comments>
		<pubDate>Sat, 15 Nov 2008 04:04:23 +0000</pubDate>
		<dc:creator>Lidon Sianturi</dc:creator>
				<category><![CDATA[aktivities]]></category>
		<category><![CDATA[Add new tag]]></category>

		<guid isPermaLink="false">http://lydone.wordpress.com/?p=10</guid>
		<description><![CDATA[Hari ini uts semester 5 telah siap .. aku lemah di JEAP padahal aku dah persiapkan segala sesuatunya dengan baik .. ada istilah kita yang merencanakan Tuhan yang berkehendak&#8230; itulah yang kualami sekarang pada UTS ini.. Aku sudah mempersiapkan sedinin mungkin dan aku sudah yakin bahwa aku bisa mengikuti nya dengan baik tapi &#8230; Alangkah [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lidonsianturi.wordpress.com&amp;blog=5778078&amp;post=10&amp;subd=lidonsianturi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hari ini uts semester 5 telah siap ..</p>
<p>aku lemah di JEAP padahal aku dah persiapkan segala sesuatunya dengan baik ..</p>
<p>ada istilah kita yang merencanakan Tuhan yang berkehendak&#8230;</p>
<p>itulah yang kualami sekarang pada UTS ini..</p>
<p>Aku sudah mempersiapkan sedinin mungkin dan aku sudah yakin bahwa aku bisa mengikuti nya dengan baik</p>
<p>tapi &#8230; Alangkah malang nya aku &#8230; Tolls yang kupake tidak suppporting ke Mata kuliah ku seperti</p>
<p>-Mysql connector (access is denied)</p>
<p>-Domain ku rusak .. jadi aku pigi ke Local dan memakan waktu yang banyakkk&#8230;</p>
<p>-Data base ku gk tergenerete dari JPA , padahal habis kucompile baik-baik aja ..(Process Completed)</p>
<p>Gak tau entah kenapa semua Hal diatas menimpaku sekaligus &#8230;</p>
<p>rasa gugup mengikuti Ujian tersu bertambah ,,, waktu terus berjalan &#8230;</p>
<p>Akhirnya hasil nya mengecewakan &#8230;</p>
<p>Itulah makanya kau bilang Kita yang merencanakan TUhan yang berkehendak &#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lidonsianturi.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lidonsianturi.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lidonsianturi.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lidonsianturi.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lidonsianturi.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lidonsianturi.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lidonsianturi.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lidonsianturi.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lidonsianturi.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lidonsianturi.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lidonsianturi.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lidonsianturi.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lidonsianturi.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lidonsianturi.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lidonsianturi.wordpress.com&amp;blog=5778078&amp;post=10&amp;subd=lidonsianturi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lidonsianturi.wordpress.com/2008/11/15/uts-semester-v-is-information-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/967ccdd113151b930433a17913d1d40f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Lidon Sianturi</media:title>
		</media:content>
	</item>
		<item>
		<title>The Second Years Project</title>
		<link>http://lidonsianturi.wordpress.com/2008/05/31/the-second-years-project/</link>
		<comments>http://lidonsianturi.wordpress.com/2008/05/31/the-second-years-project/#comments</comments>
		<pubDate>Sat, 31 May 2008 14:32:05 +0000</pubDate>
		<dc:creator>Lidon Sianturi</dc:creator>
				<category><![CDATA[aktivities]]></category>

		<guid isPermaLink="false">http://lydone.wordpress.com/?p=9</guid>
		<description><![CDATA[I&#8217;m very busy today cuzz i must do one jobs that very difficult to me for doing it .. it is the usual thing at del . it is called Second Year Project .. This is one of the subject in my studying .. it take four SKS on Semester 4 .. Ii Build eith [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lidonsianturi.wordpress.com&amp;blog=5778078&amp;post=9&amp;subd=lidonsianturi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m very busy today cuzz i must do one jobs that very difficult to me for doing it ..<br />
it is the usual thing at del . it is called Second Year Project .. This is one of the subject in my studying .. it take four SKS on Semester 4 .. Ii Build eith a group .. My group s SYP-10. The member are :</p>
<p>  1.Lidon sianturi if06007<br />
  2.Winner Manurung if06057<br />
  3.Donny Gultom if06013</p>
<p>We bulid a application by using JAVA Programming .. management Data Student at one Yayasan it called Yapebudih .. This application hold all data of the student(SMP and SMA)</p>
<p>our user representative is Mr Ramot Lubis&#8230;.<br />
He is master of net-working at our collages anda also master in Java Programming</p>
<p>We work hard finishing aour application</p>
<p>Please Pray for me doing it&#8230;&#8230;&#8230;..</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/lidonsianturi.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/lidonsianturi.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lidonsianturi.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lidonsianturi.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lidonsianturi.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lidonsianturi.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lidonsianturi.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lidonsianturi.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lidonsianturi.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lidonsianturi.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lidonsianturi.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lidonsianturi.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lidonsianturi.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lidonsianturi.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lidonsianturi.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lidonsianturi.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lidonsianturi.wordpress.com&amp;blog=5778078&amp;post=9&amp;subd=lidonsianturi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lidonsianturi.wordpress.com/2008/05/31/the-second-years-project/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/967ccdd113151b930433a17913d1d40f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Lidon Sianturi</media:title>
		</media:content>
	</item>
		<item>
		<title>Kenap aku harus mengingat Dia?</title>
		<link>http://lidonsianturi.wordpress.com/2008/03/17/kenap-aku-harus-mengingat-dia/</link>
		<comments>http://lidonsianturi.wordpress.com/2008/03/17/kenap-aku-harus-mengingat-dia/#comments</comments>
		<pubDate>Mon, 17 Mar 2008 09:43:05 +0000</pubDate>
		<dc:creator>Lidon Sianturi</dc:creator>
				<category><![CDATA[Curhat]]></category>

		<guid isPermaLink="false">http://lydone.wordpress.com/2008/03/17/kenap-aku-harus-mengingat-dia/</guid>
		<description><![CDATA[aduhhhhhh&#8230; knp ya aku selalu mengingat dia selalu&#8230;Aku dah mencoba melupakan dia but hasilnya sia-sia&#8230; Berulang kali aku ingin melupakanya dengan cara mengingat semua kejahatannya sama aku but aku gk bisa &#8230;gmn nehhhh&#8230;memeng Dia adalah orang yang yang istimewa dalam hidupku dan yang sangat aku cintai&#8230;&#8230; gmn neh cara untuk melupakan dia?<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lidonsianturi.wordpress.com&amp;blog=5778078&amp;post=8&amp;subd=lidonsianturi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>aduhhhhhh&#8230; knp ya aku selalu mengingat dia selalu&#8230;Aku dah mencoba melupakan dia but hasilnya sia-sia&#8230; Berulang kali aku ingin melupakanya dengan cara mengingat semua kejahatannya sama aku  but aku gk bisa &#8230;gmn nehhhh&#8230;memeng Dia adalah orang yang yang istimewa dalam hidupku dan yang sangat aku cintai&#8230;&#8230;</p>
<p>gmn neh cara untuk melupakan dia?</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/lidonsianturi.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/lidonsianturi.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lidonsianturi.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lidonsianturi.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lidonsianturi.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lidonsianturi.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lidonsianturi.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lidonsianturi.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lidonsianturi.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lidonsianturi.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lidonsianturi.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lidonsianturi.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lidonsianturi.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lidonsianturi.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lidonsianturi.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lidonsianturi.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lidonsianturi.wordpress.com&amp;blog=5778078&amp;post=8&amp;subd=lidonsianturi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lidonsianturi.wordpress.com/2008/03/17/kenap-aku-harus-mengingat-dia/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/967ccdd113151b930433a17913d1d40f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Lidon Sianturi</media:title>
		</media:content>
	</item>
		<item>
		<title>Paskah</title>
		<link>http://lidonsianturi.wordpress.com/2008/03/17/pakah/</link>
		<comments>http://lidonsianturi.wordpress.com/2008/03/17/pakah/#comments</comments>
		<pubDate>Mon, 17 Mar 2008 09:37:26 +0000</pubDate>
		<dc:creator>Lidon Sianturi</dc:creator>
				<category><![CDATA[aktivities]]></category>

		<guid isPermaLink="false">http://lydone.wordpress.com/2008/03/17/pakah/</guid>
		<description><![CDATA[gk terasa paskah akan tiba lho&#8230;libur lagi neh di del&#8230;&#8230;. dah capek kali di del ini so libur dikit knp sih&#8230;&#8230;.. hehhehehheehheh&#8230;&#8230;&#8230;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lidonsianturi.wordpress.com&amp;blog=5778078&amp;post=7&amp;subd=lidonsianturi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>gk terasa paskah akan tiba lho&#8230;libur lagi neh di del&#8230;&#8230;.<br />
dah capek kali di del ini so libur dikit knp sih&#8230;&#8230;..</p>
<p>hehhehehheehheh&#8230;&#8230;&#8230;</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/lidonsianturi.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/lidonsianturi.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lidonsianturi.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lidonsianturi.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lidonsianturi.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lidonsianturi.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lidonsianturi.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lidonsianturi.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lidonsianturi.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lidonsianturi.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lidonsianturi.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lidonsianturi.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lidonsianturi.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lidonsianturi.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lidonsianturi.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lidonsianturi.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lidonsianturi.wordpress.com&amp;blog=5778078&amp;post=7&amp;subd=lidonsianturi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lidonsianturi.wordpress.com/2008/03/17/pakah/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/967ccdd113151b930433a17913d1d40f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Lidon Sianturi</media:title>
		</media:content>
	</item>
		<item>
		<title>aku capek</title>
		<link>http://lidonsianturi.wordpress.com/2008/03/17/aku-capek/</link>
		<comments>http://lidonsianturi.wordpress.com/2008/03/17/aku-capek/#comments</comments>
		<pubDate>Mon, 17 Mar 2008 09:25:17 +0000</pubDate>
		<dc:creator>Lidon Sianturi</dc:creator>
				<category><![CDATA[aktivities]]></category>

		<guid isPermaLink="false">http://lydone.wordpress.com/?p=5</guid>
		<description><![CDATA[capek lai belajar di del. ini lah situasi belajar di Del .. Wajah yang menyeramkan terus karena beban yang sangat berat.. karena Tugassss dan Project &#8230; HEhehheeeee.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lidonsianturi.wordpress.com&amp;blog=5778078&amp;post=5&amp;subd=lidonsianturi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img src="http://lydone.files.wordpress.com/2008/01/crot499.thumbnail.jpg?w=420" alt="Studying at lk’s del" /></p>
<p style="text-align:left;"><em>capek lai belajar di del. </em>ini lah situasi belajar di Del .. Wajah yang menyeramkan terus karena beban yang sangat berat.. karena Tugassss dan Project &#8230;</p>
<p style="text-align:left;">HEhehheeeee.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/lidonsianturi.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/lidonsianturi.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lidonsianturi.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lidonsianturi.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lidonsianturi.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lidonsianturi.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lidonsianturi.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lidonsianturi.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lidonsianturi.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lidonsianturi.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lidonsianturi.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lidonsianturi.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lidonsianturi.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lidonsianturi.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lidonsianturi.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lidonsianturi.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lidonsianturi.wordpress.com&amp;blog=5778078&amp;post=5&amp;subd=lidonsianturi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lidonsianturi.wordpress.com/2008/03/17/aku-capek/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/967ccdd113151b930433a17913d1d40f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Lidon Sianturi</media:title>
		</media:content>

		<media:content url="http://lydone.files.wordpress.com/2008/01/crot499.thumbnail.jpg" medium="image">
			<media:title type="html">Studying at lk’s del</media:title>
		</media:content>
	</item>
	</channel>
</rss>
