<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>arifn</title>
	
	<link>http://arifn.web.id/blog</link>
	<description>beta version</description>
	<lastBuildDate>Wed, 03 Feb 2010 13:45:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/sidudun" /><feedburner:info uri="sidudun" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>sidudun</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Yet Another Introduction to MapReduce (part 1)</title>
		<link>http://feedproxy.google.com/~r/sidudun/~3/D9NsD14Z3Yo/introduction-mapreduce-part-1.html</link>
		<comments>http://arifn.web.id/blog/2010/02/03/introduction-mapreduce-part-1.html#comments</comments>
		<pubDate>Wed, 03 Feb 2010 10:03:45 +0000</pubDate>
		<dc:creator>sidudun</dc:creator>
				<category><![CDATA[MapReduce]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://arifn.web.id/blog/?p=630</guid>
		<description><![CDATA[There are so many article outside about what is MapReduce, the basic concepts behind it, how it works, and many other things. Even that, I still wanna write a little introduction to MapReduce. It&#8217;s mandatory, at least for me, to write about “something” in order to understand the “something”. I challenge my understanding about MapReduce [...]


Related posts:<ol><li><a href='http://arifn.web.id/blog/2010/01/18/research-plan.html' rel='bookmark' title='Permanent Link: Research Plan'>Research Plan</a></li>
<li><a href='http://arifn.web.id/blog/2010/01/23/hadoop-in-netbeans.html' rel='bookmark' title='Permanent Link: Programming Hadoop in Netbeans'>Programming Hadoop in Netbeans</a></li>
<li><a href='http://arifn.web.id/blog/2009/06/09/why-generate-database-keys.html' rel='bookmark' title='Permanent Link: Why Generate Database Keys?'>Why Generate Database Keys?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>There are so many article outside about what is MapReduce, the basic concepts behind it, how it works, and many other things. Even that, I still wanna write a little introduction to MapReduce. It&#8217;s mandatory, at least for me, to write about “something” in order to understand the “something”. I challenge my understanding about MapReduce in this post. I&#8217;ll use some resources available on the clouds like I mentioned earlier. This is just another introduction to MapReduce.</p>
<h3><strong>Data, Data, Data</strong></h3>
<p>We are living in the clouds era. Internet provide us with such a great resource to help our lives. In the progress, we created a lot of data. Consider a search engine like Google or Bing. They indexed all of sites across the network. If we are talking about sites these days, that&#8217;s a big number we are talking about. Netcraft reported that <a title="Netcraft web server survey" href="http://news.netcraft.com/archives/2010/01/07/january_2010_web_server_survey.html" target="_blank">there are more than 200 Millions sites in the world</a>. It means the search engine must process and analysis a lot of data.<span id="more-630"></span><a href="http://arifn.web.id/blog/wp-content/uploads/2010/02/Megware_sf.jpg"><img class="alignright size-full wp-image-632" title="Computer" src="http://arifn.web.id/blog/wp-content/uploads/2010/02/Megware_sf.jpg" alt="" width="210" height="283" /></a>We all know that the development in hardware, especially CPU, is fast. We can easily find a <a title="Intel Multi-core Processor" href="http://www.intel.com/multi-core/index.htm?iid=tech_as+multi_head" target="_blank">multi-core processor</a> nowadays. But still, processing a large scale of data in a single computer is time consuming. This could happens because there is speed gap between CPU and storage devices. Storage devices read and write process is much slower than CPU processing speed. So, distributing the process into some computers working together might be faster than on a single computer for large data. There comes the distributed computing.</p>
<h3><strong>Distributed Systems</strong></h3>
<p><a title="Distributed Computing: Wikipedia" href="http://en.wikipedia.org/wiki/Distributed_computing" target="_blank">Distributed computing</a> is the process of using multiple autonomous computers that working together and communicating using computer network. Each computers process some parts of the tasks given to them concurrently on their own memory. This method is good at handling large scale of data, but there are some challenges that must be considered. One of the common problems in distributed environments is network failures. It can be caused by broken link or router error. This can affects data transmission, disrupting the entire process.</p>
<p>The most challenging problem in distributed computing is synchronization between multiple machines. This problem covers how to prevent from deadlock and race condition in the transmission process. Another thing to considered is how to handle nodes failure. If one node among hundreds of node failed, then how to move the jobs in the failure node delivered to the other running nodes or restart the computation. This is not trivial task. Then MapReduce comes in handy.</p>
<p>to be continued in part 2</p>
<p>Credits: <a href="http://commons.wikimedia.org/wiki/File:Megware_sf.jpg" target="_blank">MEGWARE Compute-Cluster SlashFive</a> picture by <a title="TopSlash" href="http://commons.wikimedia.org/wiki/User:Topslash" target="_blank">TopSlash</a>. licensed <a title="GNU Free Documentation License" href="http://en.wikipedia.org/wiki/GNU_Free_Documentation_License" target="_blank">GNU Free Documentation License</a>, Version 1.2 or any later version</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://arifn.web.id/blog/2010/02/03/introduction-mapreduce-part-1.html&amp;title=Yet+Another+Introduction+to+MapReduce+%28part+1%29" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://arifn.web.id/blog/2010/02/03/introduction-mapreduce-part-1.html&amp;title=Yet+Another+Introduction+to+MapReduce+%28part+1%29" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Yet+Another+Introduction+to+MapReduce+%28part+1%29+-+http://su.pr/1thIUA+(via+@sidudun)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://arifn.web.id/blog/2010/02/03/introduction-mapreduce-part-1.html&amp;t=Yet+Another+Introduction+to+MapReduce+%28part+1%29" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://arifn.web.id/blog/2010/02/03/introduction-mapreduce-part-1.html&amp;title=Yet+Another+Introduction+to+MapReduce+%28part+1%29" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://arifn.web.id/blog/2010/02/03/introduction-mapreduce-part-1.html" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://arifn.web.id/blog/2010/02/03/introduction-mapreduce-part-1.html&amp;title=Yet+Another+Introduction+to+MapReduce+%28part+1%29&amp;summary=There%20are%20so%20many%20article%20outside%20about%20what%20is%20MapReduce%2C%20the%20basic%20concepts%20behind%20it%2C%20how%20it%20works%2C%20and%20many%20other%20things.%20Even%20that%2C%20I%20still%20wanna%20write%20a%20little%20introduction%20to%20MapReduce.%20It%27s%20mandatory%2C%20at%20least%20for%20me%2C%20to%20write%20about%20%E2%80%9Csomething%E2%80%9D%20in%20order%20to%20understand%20the%20%E2%80%9Csomething%E2%80%9D.&amp;source=arifn" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://arifn.web.id/blog/2010/02/03/introduction-mapreduce-part-1.html&amp;title=Yet+Another+Introduction+to+MapReduce+%28part+1%29" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->



<p>Related posts:<ol><li><a href='http://arifn.web.id/blog/2010/01/18/research-plan.html' rel='bookmark' title='Permanent Link: Research Plan'>Research Plan</a></li>
<li><a href='http://arifn.web.id/blog/2010/01/23/hadoop-in-netbeans.html' rel='bookmark' title='Permanent Link: Programming Hadoop in Netbeans'>Programming Hadoop in Netbeans</a></li>
<li><a href='http://arifn.web.id/blog/2009/06/09/why-generate-database-keys.html' rel='bookmark' title='Permanent Link: Why Generate Database Keys?'>Why Generate Database Keys?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://arifn.web.id/blog/2010/02/03/introduction-mapreduce-part-1.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://arifn.web.id/blog/2010/02/03/introduction-mapreduce-part-1.html</feedburner:origLink></item>
		<item>
		<title>Programming Hadoop in Netbeans</title>
		<link>http://feedproxy.google.com/~r/sidudun/~3/-u5yQviYunc/hadoop-in-netbeans.html</link>
		<comments>http://arifn.web.id/blog/2010/01/23/hadoop-in-netbeans.html#comments</comments>
		<pubDate>Sat, 23 Jan 2010 14:25:15 +0000</pubDate>
		<dc:creator>sidudun</dc:creator>
				<category><![CDATA[Hadoop]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://arifn.web.id/blog/?p=618</guid>
		<description><![CDATA[Hadoop MapReduce is an Open Source implementation of MapReduce programming model for processing large scale of data in distributed environment. Hadoop is implemented in Java as a class library. There are some distribution for Hadoop, from Apache, Cloudera, and Yahoo!
Meanwhile, Netbeans is an integrated development environment (or IDE) for programming in Java and many other [...]


Related posts:<ol><li><a href='http://arifn.web.id/blog/2009/03/09/creating-scrollable-jdesktoppane-on-netbeans.html' rel='bookmark' title='Permanent Link: Creating Scrollable JDesktopPane on Netbeans'>Creating Scrollable JDesktopPane on Netbeans</a></li>
<li><a href='http://arifn.web.id/blog/2009/02/06/codeigniter-removing-indexphp.html' rel='bookmark' title='Permanent Link: CodeIgniter: Removing index.php'>CodeIgniter: Removing index.php</a></li>
<li><a href='http://arifn.web.id/blog/2009/02/05/conecting-to-dsl-from-ubuntu-810.html' rel='bookmark' title='Permanent Link: Conecting to DSL from Ubuntu 8.10'>Conecting to DSL from Ubuntu 8.10</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a title="MapReduce: Wikipedia" href="http://en.wikipedia.org/wiki/MapReduce" target="_blank">Hadoop MapReduce</a> is an Open Source implementation of MapReduce programming model for processing large scale of data in distributed environment. Hadoop is implemented in Java as a class library. There are some distribution for Hadoop, from <a title="Hadoop Apache" href="http://hadoop.apache.org/mapreduce/" target="_blank">Apache</a>, <a title="Hadoop Cloudera" href="http://www.cloudera.com/distribution" target="_blank">Cloudera</a>, and <a title="Hadoop Yahoo!" href="http://developer.yahoo.com/hadoop/" target="_blank">Yahoo!</a></p>
<p>Meanwhile, <a href="http://netbeans.org">Netbeans</a> is an integrated development environment (or IDE) for programming in Java and many other programming languages. Netbeans (like any other IDE) helps programmer to develop applications easier and as painless as possible with its features. For this case, it helps us to develop Hadoop MapReduce jobs.</p>
<p>In this post, I&#8217;ll tell you step-by-step how to use Netbeans to develop a Hadoop MapReduce job. I&#8217;m using Netbeans 6.8 in Ubuntu Karmic Koala distribution. The MapReduce program we are going to create here is a simple program called wordcount. This program reads text in some files and lists all the words and how many those words present in all files. The source code of this program is available on the MapReduce tutorials packed with the Apache Hadoop distribution.</p>
<p>We divided this tutorial into three steps. First, we will install <a title="Karmasphere Studio for Hadoop" href="http://www.hadoopstudio.org/" target="_blank">Karmasphere Studio for Hadoop</a>, a Netbeans extension. Then, we will type some codes. And finally, we will run the MapReduce job in the Netbeans. Okay, fasten your seat belt.. Here we go..<span id="more-618"></span><br />
<strong></strong></p>
<p><strong>Install Karmasphere Studio for Hadoop</strong></p>
<p>In order to do this, you must already installed JDK 1.6 and Netbeans (of course). There is <a title="Karmasphere Studio for Hadoop installation tutorial" href="http://www.hadoopstudio.org/tutorial-installation.html" target="_blank">a nifty tutorial with pictures</a> about how to install the Karmasphere Studio for Hadoop on their site, but I&#8217;ll write it again here.</p>
<ol>
<li> Open your Netbeans, go to Update Center using <strong>Tools &gt; Plugins</strong>.</li>
<li>In the Update Center, go to <strong>Settings</strong> tab and click the Add button. Enter the following Name and URL in the Update Center Customizer window:<br />
Name: Karmasphere Studio for Hadoop<br />
URL: http://hadoopstudio.org/updates/updates.xml<a href="http://arifn.web.id/blog/wp-content/uploads/2010/01/Screenshot-9.png"><img class="aligncenter size-medium wp-image-619" title="Update Center Customizer" src="http://arifn.web.id/blog/wp-content/uploads/2010/01/Screenshot-9-300x125.png" alt="" width="300" height="125" /></a></li>
<li>Now, select the <strong>Available Plugins</strong> tab. Find the &#8220;<strong>Karmasphere Studio for Hadoop</strong>&#8221; in the list and check it. Then click the Install button.</li>
<li>Click Next and accept the license agreement. Click Install for list of will be installed plugins. Then, click Continue to download and install the plugins. The plugins size is about 20-something MB (I forgot). Wait for it and when it&#8217;s finished, restart your IDE.</li>
<li>Done, we are good to go.</li>
</ol>
<p><strong>Typing some codes</strong></p>
<p>Now, we are going to type some codes for wordcount program. To do this you must restart your IDE after the plugins installation. If you haven&#8217;t do it, then do it now, I&#8217;ll wait. Done it? Okay, let&#8217;s continue.</p>
<ol>
<li>We need to create a new Java application. To do that, go to <strong>File &gt; New Project</strong>. Pick <strong>Java Application</strong> project and click <strong>Next</strong>.</li>
<li>In the next window, give <strong>WordCount</strong> as the <strong>name of the project</strong>. Then type <strong>WordCount</strong> as the <strong>Main Class</strong>. When you&#8217;re done, click <strong>Finish</strong>.</li>
<li>Okay, the editor for <strong>WordCount.java</strong> is now open. But first, we must added the Hadoop library to the project. To do this right-click on the <strong>Libraries</strong> on the <strong>WordCount</strong> project folder at the left side of the IDE, then pick <strong>Add Library</strong>.<br />
<a href="http://arifn.web.id/blog/wp-content/uploads/2010/01/Screenshot-10.png"><img class="aligncenter size-medium wp-image-623" title="Add Library" src="http://arifn.web.id/blog/wp-content/uploads/2010/01/Screenshot-10-300x199.png" alt="" width="300" height="199" /></a></li>
<li>In the <strong>Add Library</strong> window, select <strong>Hadoop 0.20.0</strong> as the version of Hadoop that we are going to use. Then click the <strong>Add Library</strong> button.</li>
<li>The appropriate library now has been added to the project. Next we are going to the <strong>WordCount.java</strong> editor. Edit this file with this code below:
<pre class="brush: java;">import java.io.IOException;
import java.util.*;

import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.*;
import org.apache.hadoop.mapred.*;

public class WordCount{

	public static class Map extends MapReduceBase implements Mapper&lt;LongWritable, Text, Text, IntWritable&gt;{

		private final static IntWritable one =  new IntWritable(1);
		private Text word = new Text();

		public void map(LongWritable key, Text value, OutputCollector&lt;Text, IntWritable&gt; output, Reporter reporter) throws IOException{
				String line = value.toString();
				StringTokenizer tokenizer = new StringTokenizer(line);

				while(tokenizer.hasMoreTokens()){
					word.set(tokenizer.nextToken());
					output.collect(word, one);
				}
		}
	}

	public static class Reduce extends MapReduceBase implements Reducer&lt;Text, IntWritable, Text, IntWritable&gt;{

		public void reduce(Text key, Iterator&lt;IntWritable&gt; values,
			OutputCollector&lt;Text, IntWritable&gt; output, Reporter reporter)
			throws IOException{

				int sum = 0;
				while (values.hasNext()){

					sum += values.next().get();
				}

				output.collect(key, new IntWritable(sum));
		}
	}

	public static void main(String[]args) throws IOException{

		JobConf conf = new JobConf(WordCount.class);
		conf.setJobName(&quot;wordcount&quot;);
		conf.setOutputKeyClass(Text.class);
                conf.setOutputValueClass(IntWritable.class);
		conf.setMapperClass(Map.class);
		conf.setReducerClass(Reduce.class);
		conf.setInputFormat(TextInputFormat.class);

		conf.setOutputFormat(TextOutputFormat.class);

		FileInputFormat.setInputPaths(conf, new Path(args[0]));
		FileOutputFormat.setOutputPath(conf, new Path(args[1]));

                try{
                    JobClient.runJob(conf);
                }catch(IOException e){
                    System.err.println(e.getMessage());
                }
	}
}</pre>
<p>This program will take two arguments, <strong>the directory path of the input and the output</strong>. In this post, I&#8217;ll not explain the details about the code above. Please refer to the Apache Hadoop MapReduce tutorial if you wanna know about it</li>
<li>After we sure that there is no error or typo, let&#8217;s build the program. To do this, right-click the <strong>WordCount</strong> project in the left side and pick <strong>Build</strong>. This step will create the JAR file of the program.</li>
<li>Next, we will prepare the input for this program. We will create a folder and two text files inside the folder.<br />
For example, if you are creating input folder at your home directory, then the path will be <code>/home/username/input</code>. Inside it create two text files, let&#8217;s name it <code>file01</code> and <code>file02</code>.<br />
On the first file type the sentence (without the quotes): &#8220;<strong>Hello world Bye world</strong>&#8221;<br />
And in the second sentence type (without the quotes): &#8220;<strong>Hello Hadoop Bye Hadoop</strong>&#8221;<br />
Actually, you can type anything you want. The two sentences are just examples. Save the files when you&#8217;re done</li>
<li>We are done in this step. Let&#8217;s go to the final step.</li>
</ol>
<p><strong>Running the MapReduce job</strong></p>
<p>Okay. Now we are going to run the MapReduce job locally in Netbeans. This is how it&#8217;s done.</p>
<ol>
<li>On the left side of the IDE, click the <strong>Service</strong><strong>s</strong> tab. Right-click on the Hadoop Jobs and pick <strong>New Job</strong>.<br />
<a href="http://arifn.web.id/blog/wp-content/uploads/2010/01/Screenshot-11.png"><img class="aligncenter size-medium wp-image-625" title="New Job" src="http://arifn.web.id/blog/wp-content/uploads/2010/01/Screenshot-11-300x244.png" alt="" width="300" height="244" /></a></li>
<li>Give <strong>WordCount</strong> as Job Name and select the <strong>Hadoop Job from pre-existing JAR file</strong> type. Click Next when you&#8217;re done.</li>
<li>Then, browse the JAR file we already created in the previous step. Click browse and go to your <strong>Netbeans WordCount Project</strong> folder. The JAR file is located in the <strong><code>dist</code></strong> folder. If you&#8217;re using Netbeans default settings, then the JAR file will be located in <code>/home/username/NetbeansProjects/WordCount/dist</code>. Click Next when you&#8217;re done.</li>
<li>In the step <strong>Set Job Defaults (Step 5 of 5)</strong>, choose <strong>In-Process Thread (0.20.0)</strong> as the default cluster. Then, in the <strong>Default Arguments </strong>type the arguments needed by the program. In this case, the input and output directory path. Type the input folder that we created earlier and the output folder:<br />
<code><strong>/home/username/input /home/username/output</strong></code><br />
For your information, we don&#8217;t need to create the output folder first. The program will create the folder for you. Click Finish when you&#8217;re done.</li>
<li>Now, we will finally run the MapReduce job. To do this right-click the WordCount under the Hadoop Jobs list and pick <strong>Run Job&#8230;</strong></li>
<li>In the Execute Hadoop Job window, give <strong>WordCount</strong> as the <strong>Job Name </strong>and click <strong>Run</strong>.</li>
<li>If your job executes successfully, there will be an output directory and inside it you&#8217;ll find a file. Inside the file you&#8217;ll find something like this:
<pre class="brush: plain;">Bye	2
Hadoop	2
Hello	2
World	2</pre>
</li>
</ol>
<p>Now we&#8217;re done. If you have a question, feel free to ask me. But for your information, I&#8217;m still learning about this too. Let&#8217;s study about it together. Have a nice try and see you on the next post.</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://arifn.web.id/blog/2010/01/23/hadoop-in-netbeans.html&amp;title=Programming+Hadoop+in+Netbeans" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://arifn.web.id/blog/2010/01/23/hadoop-in-netbeans.html&amp;title=Programming+Hadoop+in+Netbeans" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Programming+Hadoop+in+Netbeans+-+http://su.pr/7jyYDa+(via+@sidudun)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://arifn.web.id/blog/2010/01/23/hadoop-in-netbeans.html&amp;t=Programming+Hadoop+in+Netbeans" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://arifn.web.id/blog/2010/01/23/hadoop-in-netbeans.html&amp;title=Programming+Hadoop+in+Netbeans" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://arifn.web.id/blog/2010/01/23/hadoop-in-netbeans.html" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://arifn.web.id/blog/2010/01/23/hadoop-in-netbeans.html&amp;title=Programming+Hadoop+in+Netbeans&amp;summary=Hadoop%20MapReduce%20is%20an%20Open%20Source%20implementation%20of%20MapReduce%20programming%20model%20for%20processing%20large%20scale%20of%20data%20in%20distributed%20environment.%20Hadoop%20is%20implemented%20in%20Java%20as%20a%20class%20library.%20There%20are%20some%20distribution%20for%20Hadoop%2C%20from%20Apache%2C%20Cloudera%2C%20and%20Yahoo%21%0D%0A%0D%0AMeanwhile%2C%20Netbeans%20is%20an%20int&amp;source=arifn" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://arifn.web.id/blog/2010/01/23/hadoop-in-netbeans.html&amp;title=Programming+Hadoop+in+Netbeans" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->



<p>Related posts:<ol><li><a href='http://arifn.web.id/blog/2009/03/09/creating-scrollable-jdesktoppane-on-netbeans.html' rel='bookmark' title='Permanent Link: Creating Scrollable JDesktopPane on Netbeans'>Creating Scrollable JDesktopPane on Netbeans</a></li>
<li><a href='http://arifn.web.id/blog/2009/02/06/codeigniter-removing-indexphp.html' rel='bookmark' title='Permanent Link: CodeIgniter: Removing index.php'>CodeIgniter: Removing index.php</a></li>
<li><a href='http://arifn.web.id/blog/2009/02/05/conecting-to-dsl-from-ubuntu-810.html' rel='bookmark' title='Permanent Link: Conecting to DSL from Ubuntu 8.10'>Conecting to DSL from Ubuntu 8.10</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://arifn.web.id/blog/2010/01/23/hadoop-in-netbeans.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://arifn.web.id/blog/2010/01/23/hadoop-in-netbeans.html</feedburner:origLink></item>
		<item>
		<title>College Students, Your Job is in Danger</title>
		<link>http://feedproxy.google.com/~r/sidudun/~3/o-8qElWpIuQ/job-is-in-danger.html</link>
		<comments>http://arifn.web.id/blog/2010/01/19/job-is-in-danger.html#comments</comments>
		<pubDate>Tue, 19 Jan 2010 06:55:37 +0000</pubDate>
		<dc:creator>sidudun</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[Word]]></category>
		<category><![CDATA[graduate]]></category>
		<category><![CDATA[graduation]]></category>

		<guid isPermaLink="false">http://arifn.web.id/blog/?p=608</guid>
		<description><![CDATA[In my college&#8217;s department mailing list, there is an interesting discussion about the quality of IT bachelor degree in the workplace. There are some reasons behind that:

The bachelor graduate worker lacking practical skills. They can not answer a fundamental question that every IT or computer science graduate should know.
The bachelor graduate worker also lacking soft [...]


Related posts:<ol><li><a href='http://arifn.web.id/blog/2009/08/07/lessons-from-apple.html' rel='bookmark' title='Permanent Link: Lessons from Apple'>Lessons from Apple</a></li>
<li><a href='http://arifn.web.id/blog/2009/05/24/short-break.html' rel='bookmark' title='Permanent Link: Short Break'>Short Break</a></li>
<li><a href='http://arifn.web.id/blog/2010/01/18/research-plan.html' rel='bookmark' title='Permanent Link: Research Plan'>Research Plan</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>In my college&#8217;s department mailing list, there is an interesting discussion about the quality of IT bachelor degree in the workplace. There are some reasons behind that:</p>
<ul>
<li>The bachelor graduate worker lacking practical skills. They can not answer a fundamental question that every IT or computer science graduate should know.</li>
<li>The bachelor graduate worker also lacking soft skills, like how to speak with the higher-ups and communicate with another workers.</li>
</ul>
<p>As a result, the companies prefer to hire a vocational IT graduate. Why?</p>
<ul>
<li>A vocational graduate sometimes have the practical skills that a bachelor graduate didn&#8217;t have. Computer science or IT is a wide spread knowledge. It means you didn&#8217;t have to go to the college just the learn how to program. It&#8217;s all over the clouds. So the learning materials are reachable to everyone.</li>
<li>Vocational graduates are easier to manage. Some of them have more respect to the higher-ups than the bachelor graduates.</li>
<li>The standard salary for the vocational graduates is less expensive than the bachelor graduates. Combine this factor with better skills and higher respect means that bachelor graduates&#8217;s job are in a grave danger.</li>
</ul>
<p><span id="more-608"></span><br />
<a href="http://arifn.web.id/blog/wp-content/uploads/2010/01/800px-Graduation.jpg"><img class="size-full wp-image-612 alignright" title="800px-Graduation" src="http://arifn.web.id/blog/wp-content/uploads/2010/01/800px-Graduation.jpg" alt="graduation" width="400" height="300" /></a> What to do then? First, college students must realized that all the materials given in the class is not enough. They must learning all the practical skills by themselves using the courses as the foundations. <strong>Doing some experiments, make a study group, looking for a project. </strong>There are a lot of Open Source project that  they can contribute. As long as it didn&#8217;t bother the class, then do it. Another things, take the internship program in a great place, like a software house or a big company. The bigger the company, the higher the amounts of experience that could be taken.</p>
<p><a title="Joel on Software" href="http://joelonsoftware.com" target="_blank">Joel Spolsky</a> gave <a title="Advice for Computer Science College Students" href="http://joelonsoftware.com/articles/CollegeAdvice.html" target="_blank">advice about what a computer science college students should do before graduate</a>:</p>
<blockquote><p>Without further ado, then, here are Joel&#8217;s Seven Pieces of Free Advice for Computer Science College Students (worth what you paid for them):</p>
<ol>
<li>Learn how to write before graduating.</li>
<li>Learn C before graduating.</li>
<li>Learn microeconomics before graduating.</li>
<li>Don&#8217;t blow off non-CS classes just because they&#8217;re boring.</li>
<li>Take programming-intensive courses.</li>
<li>Stop worrying about all the jobs going to India.</li>
<li>No matter what you do, get a good summer internship.</li>
</ol>
<p>Now for the explanations, unless you&#8217;re gullible enough to do all that stuff just because I tell you to, in which case add: 8. Seek professional help for that self-esteem thing.</p></blockquote>
<p>That&#8217;s a great advice. You should check his article of you have time.</p>
<p>If you are an IT or computer science college students, I suggest you to improve your practical skills so that you can compete with the vocational graduates. Don&#8217;t be a smart ass and feeling high and mighty, because there are a lot of skillful people out there. Remember, computer science or information technology is not an exclusive knowledge. </p>
<blockquote><p>Stay hungry, stay foolish (Steve Jobs)</p></blockquote>
<p>Credit:</p>
<p>Graduation at SIAS by Quimbero, licensed as <a title="Public Domain: Wikipedia" href="http://en.wikipedia.org/wiki/Public_domain" target="_blank">Public Domain</a></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://arifn.web.id/blog/2010/01/19/job-is-in-danger.html&amp;title=College+Students%2C+Your+Job+is+in+Danger" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://arifn.web.id/blog/2010/01/19/job-is-in-danger.html&amp;title=College+Students%2C+Your+Job+is+in+Danger" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=College+Students%2C+Your+Job+is+in+Danger+-+http://su.pr/2LPY9Y+(via+@sidudun)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://arifn.web.id/blog/2010/01/19/job-is-in-danger.html&amp;t=College+Students%2C+Your+Job+is+in+Danger" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://arifn.web.id/blog/2010/01/19/job-is-in-danger.html&amp;title=College+Students%2C+Your+Job+is+in+Danger" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://arifn.web.id/blog/2010/01/19/job-is-in-danger.html" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://arifn.web.id/blog/2010/01/19/job-is-in-danger.html&amp;title=College+Students%2C+Your+Job+is+in+Danger&amp;summary=In%20my%20college%27s%20department%20mailing%20list%2C%20there%20is%20an%20interesting%20discussion%20about%20the%20quality%20of%20IT%20bachelor%20degree%20in%20the%20workplace.%20There%20are%20some%20reasons%20behind%20that%3A%0D%0A%0D%0A%09The%20bachelor%20graduate%20worker%20lacking%20practical%20skills.%20They%20can%20not%20answer%20a%20fundamental%20question%20that%20every%20IT%20or%20computer%20sc&amp;source=arifn" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://arifn.web.id/blog/2010/01/19/job-is-in-danger.html&amp;title=College+Students%2C+Your+Job+is+in+Danger" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->



<p>Related posts:<ol><li><a href='http://arifn.web.id/blog/2009/08/07/lessons-from-apple.html' rel='bookmark' title='Permanent Link: Lessons from Apple'>Lessons from Apple</a></li>
<li><a href='http://arifn.web.id/blog/2009/05/24/short-break.html' rel='bookmark' title='Permanent Link: Short Break'>Short Break</a></li>
<li><a href='http://arifn.web.id/blog/2010/01/18/research-plan.html' rel='bookmark' title='Permanent Link: Research Plan'>Research Plan</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://arifn.web.id/blog/2010/01/19/job-is-in-danger.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://arifn.web.id/blog/2010/01/19/job-is-in-danger.html</feedburner:origLink></item>
		<item>
		<title>Research Plan</title>
		<link>http://feedproxy.google.com/~r/sidudun/~3/oKCAyAdrCOI/research-plan.html</link>
		<comments>http://arifn.web.id/blog/2010/01/18/research-plan.html#comments</comments>
		<pubDate>Mon, 18 Jan 2010 05:02:02 +0000</pubDate>
		<dc:creator>sidudun</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[Graduate Arc]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[Story]]></category>
		<category><![CDATA[GIS]]></category>
		<category><![CDATA[MapReduce]]></category>

		<guid isPermaLink="false">http://arifn.web.id/blog/?p=601</guid>
		<description><![CDATA[Howdy,
When I was in my college, I tried to implement Web Map Service (WMS) and Web Feature Service (WFS) as a foundation for a distributed Geographical Information Systems (or better known as GIS). My academic advisor at that time told me that this idea is not entirely new, but there are still a lot of [...]


Related posts:<ol><li><a href='http://arifn.web.id/blog/2009/04/04/another-new-theme.html' rel='bookmark' title='Permanent Link: Another New Theme..'>Another New Theme..</a></li>
<li><a href='http://arifn.web.id/blog/2009/11/18/not-on-th-same-page.html' rel='bookmark' title='Permanent Link: Not on the same page'>Not on the same page</a></li>
<li><a href='http://arifn.web.id/blog/2009/10/30/the-last-few-months.html' rel='bookmark' title='Permanent Link: The last few months'>The last few months</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Howdy,</p>
<p>When I was in my college, I tried to implement <a title="Web Map Service: Wikipedia" href="http://en.wikipedia.org/wiki/Web_map_service" target="_blank">Web Map Service (WMS)</a> and <a title="Web Feature Service: Wikipedia" href="http://en.wikipedia.org/wiki/Web_Feature_Service" target="_blank">Web Feature Service (WFS)</a> as a foundation for a distributed Geographical Information Systems (or better known as GIS). My academic advisor at that time told me that this idea is not entirely new, but there are still a lot of people didn&#8217;t know about it yet. So with this topic as my thesis, he wished that one day people will know about this technology.</p>
<p>The implementation that I made was quite simple actually. But let me tell you the complete story. At first, I was thinking about develop a geographical operation that can be operated via web service in the clouds. After some weeks of analyzing and gathering informations, I found out that this work could be really hard and time consuming. I didn&#8217;t have background in geography&#8211;I&#8217;m a computer science student&#8211;and I didn&#8217;t have much time before the next graduation. Finally, I just created a spatial data repository and make it accessible across the network using <a title="GeoServer" href="http://geoserver.org/" target="_blank">GeoServer</a>,an Open Source implementation of WMS and WFS. I, then, created a simple web application to pull the spatial data and display it to the browser. I also provided a simple data update feature, utilizing one of the feature of WFS. I used <a title="OpenLayers" href="http://openlayers.org/" target="_blank">OpenLayers</a> to create the application. It&#8217;s really simple actually.</p>
<p><a href="http://arifn.web.id/blog/wp-content/uploads/2010/01/800px-EDSAC_25.jpg"><img class="aligncenter size-full wp-image-606" title="800px-EDSAC_(25)" src="http://arifn.web.id/blog/wp-content/uploads/2010/01/800px-EDSAC_25.jpg" alt="computers" width="400" height="286" /></a><br />
In my graduate study, right now, I want to try something entirely different. I want to explore <a title="MapReduce: Wikipedia" href="http://en.wikipedia.org/wiki/Mapreduce" target="_blank">MapReduce</a>, a programming model for processing a large scale of data in a distributed environment. I heard about this model from some mailing lists and websites, surprised that the <a title="MapReduce: Google" href="http://labs.google.com/papers/mapreduce.html" target="_blank">paper</a> <a title="MapReduce Paper" href="http://labs.google.com/papers/mapreduce-osdi04.pdf" target="_blank">[pdf]</a>, the lecture notes and videos are easy to get. So, for the time being, I decided to do some experiments in order to learn something about it.</p>
<p>It&#8217;s still a plan in my head actually. I never talked about it to my thesis advisor (because I have none yet). But I can predict some problems that I will be dealing with if I do this research plan. They are:</p>
<ul>
<li>The case. I don&#8217;t have any idea about the case that I should solve with this research. My college&#8217;s advisor told me about doing something in bioinformatics like genome assembling. I think I will cosider it. But I&#8217;m open for an idea.</li>
<li>The machine and its network. The lab are always busy with the other graduate student. Fortunately, one friend of mine told me that there is another place that I can use in the campus to do experiments. But I should create a permission letter first. Okay, I&#8217;ll do it.</li>
</ul>
<p>In the mean time, I&#8217;ll focus myself to learn about MapReduce. Maybe I&#8217;ll post something about it in this blog. If you have a suggestion about what should I do with this programming model, let me know. I&#8217;d be really glad to hear it.</p>
<p><small><br />
Credits:</small></p>
<p><small> </small></p>
<p><small>EDSAC pictures, copyrighted Computer Laboratory, <a title="University of Cambridge" href="/wiki/University_of_Cambridge">University of Cambridge</a>, licensed under the <a title="w:en:Creative Commons" href="http://en.wikipedia.org/wiki/en:Creative_Commons">Creative Commons</a> <a rel="nofollow" href="http://creativecommons.org/licenses/by/2.0/deed.en">Attribution 2.0 Generic</a> license.</small></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://arifn.web.id/blog/2010/01/18/research-plan.html&amp;title=Research+Plan" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://arifn.web.id/blog/2010/01/18/research-plan.html&amp;title=Research+Plan" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Research+Plan+-+http://su.pr/24ELX2+(via+@sidudun)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://arifn.web.id/blog/2010/01/18/research-plan.html&amp;t=Research+Plan" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://arifn.web.id/blog/2010/01/18/research-plan.html&amp;title=Research+Plan" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://arifn.web.id/blog/2010/01/18/research-plan.html" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://arifn.web.id/blog/2010/01/18/research-plan.html&amp;title=Research+Plan&amp;summary=Howdy%2C%0D%0A%0D%0AWhen%20I%20was%20in%20my%20college%2C%20I%20tried%20to%20implement%20Web%20Map%20Service%20%28WMS%29%20and%20Web%20Feature%20Service%20%28WFS%29%20as%20a%20foundation%20for%20a%20distributed%20Geographical%20Information%20Systems%20%28or%20better%20known%20as%20GIS%29.%20My%20academic%20advisor%20at%20that%20time%20told%20me%20that%20this%20idea%20is%20not%20entirely%20new%2C%20but%20there%20are%20still%20a&amp;source=arifn" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://arifn.web.id/blog/2010/01/18/research-plan.html&amp;title=Research+Plan" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->



<p>Related posts:<ol><li><a href='http://arifn.web.id/blog/2009/04/04/another-new-theme.html' rel='bookmark' title='Permanent Link: Another New Theme..'>Another New Theme..</a></li>
<li><a href='http://arifn.web.id/blog/2009/11/18/not-on-th-same-page.html' rel='bookmark' title='Permanent Link: Not on the same page'>Not on the same page</a></li>
<li><a href='http://arifn.web.id/blog/2009/10/30/the-last-few-months.html' rel='bookmark' title='Permanent Link: The last few months'>The last few months</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://arifn.web.id/blog/2010/01/18/research-plan.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://arifn.web.id/blog/2010/01/18/research-plan.html</feedburner:origLink></item>
		<item>
		<title>It’s a New Year!!</title>
		<link>http://feedproxy.google.com/~r/sidudun/~3/QSGKP4l4Aq8/its-a-new-year.html</link>
		<comments>http://arifn.web.id/blog/2010/01/01/its-a-new-year.html#comments</comments>
		<pubDate>Fri, 01 Jan 2010 12:39:58 +0000</pubDate>
		<dc:creator>sidudun</dc:creator>
				<category><![CDATA[Graduate Arc]]></category>
		<category><![CDATA[Story]]></category>
		<category><![CDATA[Word]]></category>
		<category><![CDATA[registration]]></category>

		<guid isPermaLink="false">http://arifn.web.id/blog/?p=591</guid>
		<description><![CDATA[Howdy,
It has been a long time since my last post in this blog. I just wrote some posts in my old blog when suddenly it&#8217;s already 2010. Wow, time really waits for no one. So in this post I wanna sum up what has been happening in the last year. Well, I don&#8217;t actually do [...]


Related posts:<ol><li><a href='http://arifn.web.id/blog/2009/07/05/dang.html' rel='bookmark' title='Permanent Link: Dang!'>Dang!</a></li>
<li><a href='http://arifn.web.id/blog/2009/04/29/500-roundup-the-statistics.html' rel='bookmark' title='Permanent Link: 500 Roundup: the Statistics'>500 Roundup: the Statistics</a></li>
<li><a href='http://arifn.web.id/blog/2009/11/18/not-on-th-same-page.html' rel='bookmark' title='Permanent Link: Not on the same page'>Not on the same page</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Howdy,</p>
<p><a href="http://arifn.web.id/blog/wp-content/uploads/2010/01/750px-More_fireworks_in_perth.jpg"><img class="alignright size-medium wp-image-595" title="750px-More_fireworks_in_perth" src="http://arifn.web.id/blog/wp-content/uploads/2010/01/750px-More_fireworks_in_perth-300x240.jpg" alt="" width="300" height="240" /></a>It has been a long time since my last post in this blog. I just wrote some posts in <a href="http://arifn.wordpress.com">my old blog</a> when suddenly it&#8217;s already 2010. Wow, time really waits for no one. So in this post I wanna sum up what has been happening in the last year. Well, I don&#8217;t actually do anything big actually, but I made some progress in live, I guess.</p>
<p>Here I come. I spent my first months in 2009 in my homeland. I was recovering from my illness and successfully gained some weights. I did <a title="Theme" href="http://arifn.web.id/blog/?s=theme" target="_blank">some theme for this blog</a>, <a title="The Frog and the Hosting" href="http://arifn.web.id/blog/2009/07/28/the-frog-and-the-hosting.html" target="_blank">exploring with domain and paid-hosting</a>, maintaining my virtual social live in Facebook and <a title="Twitter sidudun" href="http://twitter.com/sidudun" target="_blank">Twitter</a>. Anything that can be done in the house, I&#8217;ve done it. Oh yeah, I also created <a title="Ilkomerz 41 Aggregator" href="http://ilkomerz41.co.cc" target="_blank">a simple blog aggregator</a> or usually called <em>planet</em> to lists all of my class&#8217;s blog posting.<span id="more-591"></span></p>
<p>I also have an opportunity to continue my study. <a title="Anxious" href="http://arifn.web.id/blog/2009/04/29/anxious.html" target="_blank">My college advisor gave me an opportunity to go abroad.</a> Sadly, because of my health concerns, I couldn&#8217;t accept his offer this time (although I really want to). So I registered to a national university, and for the administration necessity I went to my old university. I met some of my old friends and my advisors. When it&#8217;s done, I went back to complete my registration.</p>
<p>Then I was accepted in the university. I&#8217;m moving to a new city. Finding a new boarding room. Wandering around and found some cool books in the library. Leeching on the university&#8217;s software repositories. I like this one. Because the repositories hosted by the university, I could access them locally just by connecting to the university&#8217;s network. When I tried to download an Linux image, I couldn&#8217;t believe the download speed. I could download an image about 700 MB size in just 15 minutes. Wow!!</p>
<p>Okay, so it&#8217;s 2010 now. The new year is celebrated with an examination for the first semester. That&#8217;s tough. While everyone else went home to celebrate a new year with their families and beloved ones, I must went to the city to prepare my exam. Oh yeah, I also found a cool stuff. It&#8217;s <a title="Posterous" href="http://posterous.com" target="_blank">Posterous</a>. It&#8217;s just the same blog with different concept. You can post writing to the blog by writing an email to them. I know, Wordpress have post by email feature too. But in Wordpress, that&#8217;s not the main posting method. In Posterous, post by email is the main method. You can also Autopost your writing to another (mainly social networking) sites, like Twitter, Facebook, Plurk, and many more. So I decided to <a title="Me at Posterous" href="http://arifn.posterous.com" target="_blank">create a blog there</a> and will have some fun with it in the future.</p>
<p>I can&#8217;t predict the future. That&#8217;s why I can wake up in the morning and get excited about what should I do today. Like Steve Jobs said, &#8220;let&#8217;s invent tomorrow!&#8221;</p>
<p>Credits:</p>
<p><a title="Fireworks in Perth" href="http://commons.wikimedia.org/wiki/File:More_fireworks_in_perth.jpg" target="_blank">Fireworks in Perth</a> picture by Chris Johnson, licensed <a title="Creative Commons Attribution 2.0" href="http://creativecommons.org/licenses/by/2.0/" target="_blank">Creative Commons Attribution 2.0</a></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://arifn.web.id/blog/2010/01/01/its-a-new-year.html&amp;title=It%27s+a+New+Year%21%21" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://arifn.web.id/blog/2010/01/01/its-a-new-year.html&amp;title=It%27s+a+New+Year%21%21" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=It%27s+a+New+Year%21%21+-+http://su.pr/9cYiwG+(via+@sidudun)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://arifn.web.id/blog/2010/01/01/its-a-new-year.html&amp;t=It%27s+a+New+Year%21%21" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://arifn.web.id/blog/2010/01/01/its-a-new-year.html&amp;title=It%27s+a+New+Year%21%21" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://arifn.web.id/blog/2010/01/01/its-a-new-year.html" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://arifn.web.id/blog/2010/01/01/its-a-new-year.html&amp;title=It%27s+a+New+Year%21%21&amp;summary=Howdy%2C%0D%0A%0D%0AIt%20has%20been%20a%20long%20time%20since%20my%20last%20post%20in%20this%20blog.%20I%20just%20wrote%20some%20posts%20in%20my%20old%20blog%20when%20suddenly%20it%27s%20already%202010.%20Wow%2C%20time%20really%20waits%20for%20no%20one.%20So%20in%20this%20post%20I%20wanna%20sum%20up%20what%20has%20been%20happening%20in%20the%20last%20year.%20Well%2C%20I%20don%27t%20actually%20do%20anything%20big%20actually%2C%20but%20&amp;source=arifn" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://arifn.web.id/blog/2010/01/01/its-a-new-year.html&amp;title=It%27s+a+New+Year%21%21" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->



<p>Related posts:<ol><li><a href='http://arifn.web.id/blog/2009/07/05/dang.html' rel='bookmark' title='Permanent Link: Dang!'>Dang!</a></li>
<li><a href='http://arifn.web.id/blog/2009/04/29/500-roundup-the-statistics.html' rel='bookmark' title='Permanent Link: 500 Roundup: the Statistics'>500 Roundup: the Statistics</a></li>
<li><a href='http://arifn.web.id/blog/2009/11/18/not-on-th-same-page.html' rel='bookmark' title='Permanent Link: Not on the same page'>Not on the same page</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://arifn.web.id/blog/2010/01/01/its-a-new-year.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://arifn.web.id/blog/2010/01/01/its-a-new-year.html</feedburner:origLink></item>
		<item>
		<title>Past, Present, Future</title>
		<link>http://feedproxy.google.com/~r/sidudun/~3/RyDy8U9YFpc/past-present-future.html</link>
		<comments>http://arifn.web.id/blog/2009/11/22/past-present-future.html#comments</comments>
		<pubDate>Sun, 22 Nov 2009 05:22:22 +0000</pubDate>
		<dc:creator>sidudun</dc:creator>
				<category><![CDATA[Word]]></category>

		<guid isPermaLink="false">http://arifn.web.id/blog/?p=585</guid>
		<description><![CDATA[There was once a man who went on a journey to correct his regrets. He tried his best to change the past. Unfortunately, the door to miracles never opened for him. He realized at the end of his journey, no matter how hard he tries to change his past, he cannot change himself. That is [...]


Related posts:<ol><li><a href='http://arifn.web.id/blog/2009/01/08/ads-or-no-ads.html' rel='bookmark' title='Permanent Link: Ads or No Ads'>Ads or No Ads</a></li>
<li><a href='http://arifn.web.id/blog/2008/12/19/alternative-softwares.html' rel='bookmark' title='Permanent Link: Alternative Softwares'>Alternative Softwares</a></li>
<li><a href='http://arifn.web.id/blog/2009/02/14/stop-it.html' rel='bookmark' title='Permanent Link: Stop It'>Stop It</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<blockquote><p>There was once a man who went on a journey to correct his regrets. He tried his best to change the past. Unfortunately, the door to miracles never opened for him. He realized at the end of his journey, no matter how hard he tries to change his past, he cannot change himself. That is why he tought, instead of regretting about the past, what&#8217;s most important is to change the present for the future.</p>
</blockquote>
<p>(taken from one of my favorite movie series)</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://arifn.web.id/blog/2009/11/22/past-present-future.html&amp;title=Past%2C+Present%2C+Future" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://arifn.web.id/blog/2009/11/22/past-present-future.html&amp;title=Past%2C+Present%2C+Future" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Past%2C+Present%2C+Future+-++(via+@sidudun)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://arifn.web.id/blog/2009/11/22/past-present-future.html&amp;t=Past%2C+Present%2C+Future" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://arifn.web.id/blog/2009/11/22/past-present-future.html&amp;title=Past%2C+Present%2C+Future" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://arifn.web.id/blog/2009/11/22/past-present-future.html" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://arifn.web.id/blog/2009/11/22/past-present-future.html&amp;title=Past%2C+Present%2C+Future&amp;summary=There%20was%20once%20a%20man%20who%20went%20on%20a%20journey%20to%20correct%20his%20regrets.%20He%20tried%20his%20best%20to%20change%20the%20past.%20Unfortunately%2C%20the%20door%20to%20miracles%20never%20opened%20for%20him.%20He%20realized%20at%20the%20end%20of%20his%20journey%2C%20no%20matter%20how%20hard%20he%20tries%20to%20change%20his%20past%2C%20he%20cannot%20change%20himself.%20That%20is%20why%20he%20tought%2C%20i&amp;source=arifn" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://arifn.web.id/blog/2009/11/22/past-present-future.html&amp;title=Past%2C+Present%2C+Future" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->



<p>Related posts:<ol><li><a href='http://arifn.web.id/blog/2009/01/08/ads-or-no-ads.html' rel='bookmark' title='Permanent Link: Ads or No Ads'>Ads or No Ads</a></li>
<li><a href='http://arifn.web.id/blog/2008/12/19/alternative-softwares.html' rel='bookmark' title='Permanent Link: Alternative Softwares'>Alternative Softwares</a></li>
<li><a href='http://arifn.web.id/blog/2009/02/14/stop-it.html' rel='bookmark' title='Permanent Link: Stop It'>Stop It</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://arifn.web.id/blog/2009/11/22/past-present-future.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://arifn.web.id/blog/2009/11/22/past-present-future.html</feedburner:origLink></item>
		<item>
		<title>Not on the same page</title>
		<link>http://feedproxy.google.com/~r/sidudun/~3/k1gXL7rV1Dk/not-on-th-same-page.html</link>
		<comments>http://arifn.web.id/blog/2009/11/18/not-on-th-same-page.html#comments</comments>
		<pubDate>Tue, 17 Nov 2009 23:35:41 +0000</pubDate>
		<dc:creator>sidudun</dc:creator>
				<category><![CDATA[Graduate Arc]]></category>
		<category><![CDATA[Story]]></category>

		<guid isPermaLink="false">http://arifn.web.id/blog/?p=575</guid>
		<description><![CDATA[Howdy..
Okay, I just got this first assignment. Me (and all the other students) must submit a paper about some topics provided by the teacher. Because this is my first time, I just do what I can. I wrote it like I used to write in blog. By the end of the day, I finally finished [...]


Related posts:<ol><li><a href='http://arifn.web.id/blog/2009/01/12/blogroll-on-a-page.html' rel='bookmark' title='Permanent Link: Blogroll on a Page'>Blogroll on a Page</a></li>
<li><a href='http://arifn.web.id/blog/2008/10/19/just-a-little-bit.html' rel='bookmark' title='Permanent Link: Just a Little Bit..'>Just a Little Bit..</a></li>
<li><a href='http://arifn.web.id/blog/2009/01/02/breadcrumbs-and-permalink.html' rel='bookmark' title='Permanent Link: Breadcrumbs and Permalink'>Breadcrumbs and Permalink</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-577" href="http://arifn.web.id/blog/2009/11/18/not-on-th-same-page.html/book"><img class="alignright size-medium wp-image-577" title="Book" src="http://arifn.web.id/blog/wp-content/uploads/2009/11/Book-300x250.jpg" alt="Book" width="300" height="250" /></a>Howdy..</p>
<p>Okay, I just got this first assignment. Me (and all the other students) must submit a paper about some topics provided by the teacher. Because this is my first time, I just do what I can. I wrote it like I used to write in blog. By the end of the day, I finally finished about seven pages of them. I printed it out, booked it, and submitted it to the academic. Then, I sent the pdf version to the teacher by email.</p>
<p>On the next day, I met my classmate. He asked me about the paper. I told him that I have sent the pdf version of the paper to the teacher email and have submitted the &#8220;real&#8221; paper at the academic. He told me that he&#8217;s using chm format for the paper. <span id="more-575"></span></p>
<p>I said, &#8220;I think that&#8217;s okay, as long as you submitted the paper on the academic.&#8221;</p>
<p>He asked, &#8220;What do you submit to the academic? I mean in what form?&#8221;</p>
<p>I replied, &#8220;I printed it out.&#8221;</p>
<p>&#8220;You printed it out? I thought it was burnt on a CD&#8221;, he said it again.</p>
<p>&#8220;Huh? If you submitted a CD, then why we should submitted to the email?&#8221;, I asked him.</p>
<p>&#8220;Yeah, but you see. I&#8217;ve created a program to brute-force attack on Word&#8217;s encryption. Just to prove that it could be attacked&#8221;, he told me.</p>
<p>I was stunned for a moment. &#8220;So you created a program?&#8221;, I asked him just to make sure.</p>
<p>&#8220;I did&#8221;, he said. &#8220;If I printed all the source code, that could cost a lot of paper&#8221;, he added.</p>
<p>&#8220;And the code worked?&#8221;, I asked him again, disbelieved.</p>
<p>&#8220;Yeah, it worked&#8221;, he replied as if it&#8217;s nothing special.</p>
<p>&#8220;Well, I think you could printed your chm version. And then submitted the source code in CD&#8221;, I advised him.</p>
<p>&#8220;Yeah, that should work&#8221;, he said again.</p>
<p>Until now, I still surprised about what he was doing. I mean we&#8217;re not on the same page. Even, we&#8217;re not in the same book. It&#8217;s kinda like I&#8217;m still on the first page of the first episode of long going trilogy novels, while he was already at the beginning of the last episode.</p>
<p>I must be better than this. Seriously.</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://arifn.web.id/blog/2009/11/18/not-on-th-same-page.html&amp;title=Not+on+the+same+page" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://arifn.web.id/blog/2009/11/18/not-on-th-same-page.html&amp;title=Not+on+the+same+page" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Not+on+the+same+page+-++(via+@sidudun)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://arifn.web.id/blog/2009/11/18/not-on-th-same-page.html&amp;t=Not+on+the+same+page" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://arifn.web.id/blog/2009/11/18/not-on-th-same-page.html&amp;title=Not+on+the+same+page" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://arifn.web.id/blog/2009/11/18/not-on-th-same-page.html" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://arifn.web.id/blog/2009/11/18/not-on-th-same-page.html&amp;title=Not+on+the+same+page&amp;summary=Howdy..%0D%0A%0D%0AOkay%2C%20I%20just%20got%20this%20first%20assignment.%20Me%20%28and%20all%20the%20other%20students%29%20must%20submit%20a%20paper%20about%20some%20topics%20provided%20by%20the%20teacher.%20Because%20this%20is%20my%20first%20time%2C%20I%20just%20do%20what%20I%20can.%20I%20wrote%20it%20like%20I%20used%20to%20write%20in%20blog.%20By%20the%20end%20of%20the%20day%2C%20I%20finally%20finished%20about%20seven%20pages%20&amp;source=arifn" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://arifn.web.id/blog/2009/11/18/not-on-th-same-page.html&amp;title=Not+on+the+same+page" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->



<p>Related posts:<ol><li><a href='http://arifn.web.id/blog/2009/01/12/blogroll-on-a-page.html' rel='bookmark' title='Permanent Link: Blogroll on a Page'>Blogroll on a Page</a></li>
<li><a href='http://arifn.web.id/blog/2008/10/19/just-a-little-bit.html' rel='bookmark' title='Permanent Link: Just a Little Bit..'>Just a Little Bit..</a></li>
<li><a href='http://arifn.web.id/blog/2009/01/02/breadcrumbs-and-permalink.html' rel='bookmark' title='Permanent Link: Breadcrumbs and Permalink'>Breadcrumbs and Permalink</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://arifn.web.id/blog/2009/11/18/not-on-th-same-page.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://arifn.web.id/blog/2009/11/18/not-on-th-same-page.html</feedburner:origLink></item>
		<item>
		<title>The last few months</title>
		<link>http://feedproxy.google.com/~r/sidudun/~3/oqpjFqmc6YY/the-last-few-months.html</link>
		<comments>http://arifn.web.id/blog/2009/10/30/the-last-few-months.html#comments</comments>
		<pubDate>Fri, 30 Oct 2009 14:27:25 +0000</pubDate>
		<dc:creator>sidudun</dc:creator>
				<category><![CDATA[Graduate Arc]]></category>
		<category><![CDATA[Story]]></category>

		<guid isPermaLink="false">http://arifn.web.id/blog/?p=569</guid>
		<description><![CDATA[Dear blog,
Today is the last week before the mid term exam. Life is fast, right? I still remember when I got attached by this WSD, and now it&#8217;s already a year after that. Six months after that, I finally be able to recover. And got into this graduate study.
It&#8217;s a new city, you know? This [...]


Related posts:<ol><li><a href='http://arifn.web.id/blog/2009/11/18/not-on-th-same-page.html' rel='bookmark' title='Permanent Link: Not on the same page'>Not on the same page</a></li>
<li><a href='http://arifn.web.id/blog/2010/01/01/its-a-new-year.html' rel='bookmark' title='Permanent Link: It&#8217;s a New Year!!'>It&#8217;s a New Year!!</a></li>
<li><a href='http://arifn.web.id/blog/2009/08/18/write-free.html' rel='bookmark' title='Permanent Link: Write Free'>Write Free</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Dear blog,</p>
<p>Today is the last week before the mid term exam. Life is fast, right? I still remember when I got attached by this WSD, and now it&#8217;s already a year after that. Six months after that, I finally be able to recover. And got into this graduate study.</p>
<p>It&#8217;s a new city, you know? This city is totally different with the one from the old days. I can still found cultural politeness such as say hi and smile to older people. The great thing is, they all do it sincerely. The city itself is exotic. There were so many tourist attractions here, make me feel no boring.<span id="more-569"></span></p>
<p>The grad study itself is far different from before. You know, most of the people who took this degree are employed. They are older than mine, and they are busier. Thinking about myself doing nothing just made me feel bad about the time I&#8217;ve been wasting. But learning from an older guy sometimes can be really entertaining and inspiring. Adapting to new crowds with different ages is difficult, I know that. But I&#8217;m, doing my best. And yeah, I also practicing this book authored by Dale Carnegie about how to make friends.</p>
<p>Yeah, I&#8217;m reading a book about how to make friends. I know that I&#8217;ve been a little anti-social lately. I just can&#8217;t handle in the middle of crowds, especially when I became the point of attention. It just scared the hell out of me. I know I&#8217;m not good at making friends. Worse, I&#8217;m also not good at keeping friends. Feeling high and mighty, sometimes I could treat my friends really really bad. Although that&#8217;s not really my intention, but with this I also say sorry for everyone. I&#8217;m really sorry if I made mistakes toward you. I&#8217;m sorry if I made you mad. I&#8217;m really sorry.</p>
<p>Back to the main line. I also found some inspiring teachers here. Like this teacher. Up until this mid term, he just showed up four times. And I just came to his course twice. Hey, it&#8217;s not my fault. The first one because I didn&#8217;t know about the course. And the second was because his schedule is overlapping with another schedule. But, with just two class, he inspires me a lot. He reads the book I read. One day, he talked about a research by a PhD student. The research itself wasn&#8217;t so special because the products is already used in the real world created by foreign countries. But he stood with the student. He said that if we don&#8217;t wanna start innovate by ourselves, we&#8217;ll keep depend on others product. So he encourages us to do research, not necessarily a magical things that can change the world, but at least to make us can stand on our own feet.</p>
<p>The second teacher is still young, just got back from his PhD. At first, it looked like he&#8217;s kinda textbooks, you know like someone talks like the book says. But after some class, I just realized that his knowledge is huge. I bet he&#8217;s reading a lot of books, that explains how he knows a lot. His vast knowledge inspires me to work harder, because there&#8217;re so many things in the world that I don&#8217;t know yet.</p>
<p>Well, I think that&#8217;s enough now. I got something to do too. Wish me luck for the mid term exam. Thanks for reading..</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://arifn.web.id/blog/2009/10/30/the-last-few-months.html&amp;title=The+last+few+months" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://arifn.web.id/blog/2009/10/30/the-last-few-months.html&amp;title=The+last+few+months" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=The+last+few+months+-++(via+@sidudun)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://arifn.web.id/blog/2009/10/30/the-last-few-months.html&amp;t=The+last+few+months" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://arifn.web.id/blog/2009/10/30/the-last-few-months.html&amp;title=The+last+few+months" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://arifn.web.id/blog/2009/10/30/the-last-few-months.html" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://arifn.web.id/blog/2009/10/30/the-last-few-months.html&amp;title=The+last+few+months&amp;summary=Dear%20blog%2C%0D%0A%0D%0AToday%20is%20the%20last%20week%20before%20the%20mid%20term%20exam.%20Life%20is%20fast%2C%20right%3F%20I%20still%20remember%20when%20I%20got%20attached%20by%20this%20WSD%2C%20and%20now%20it%27s%20already%20a%20year%20after%20that.%20Six%20months%20after%20that%2C%20I%20finally%20be%20able%20to%20recover.%20And%20got%20into%20this%20graduate%20study.%0D%0A%0D%0AIt%27s%20a%20new%20city%2C%20you%20know%3F%20This%20city&amp;source=arifn" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://arifn.web.id/blog/2009/10/30/the-last-few-months.html&amp;title=The+last+few+months" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->



<p>Related posts:<ol><li><a href='http://arifn.web.id/blog/2009/11/18/not-on-th-same-page.html' rel='bookmark' title='Permanent Link: Not on the same page'>Not on the same page</a></li>
<li><a href='http://arifn.web.id/blog/2010/01/01/its-a-new-year.html' rel='bookmark' title='Permanent Link: It&#8217;s a New Year!!'>It&#8217;s a New Year!!</a></li>
<li><a href='http://arifn.web.id/blog/2009/08/18/write-free.html' rel='bookmark' title='Permanent Link: Write Free'>Write Free</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://arifn.web.id/blog/2009/10/30/the-last-few-months.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://arifn.web.id/blog/2009/10/30/the-last-few-months.html</feedburner:origLink></item>
		<item>
		<title>The Coolest Moment</title>
		<link>http://feedproxy.google.com/~r/sidudun/~3/FG2Iv0DwvJw/the-coolest-moment.html</link>
		<comments>http://arifn.web.id/blog/2009/10/15/the-coolest-moment.html#comments</comments>
		<pubDate>Thu, 15 Oct 2009 01:58:56 +0000</pubDate>
		<dc:creator>sidudun</dc:creator>
				<category><![CDATA[Story]]></category>
		<category><![CDATA[Word]]></category>

		<guid isPermaLink="false">http://arifn.web.id/blog/?p=547</guid>
		<description><![CDATA[The coolest moment here means the very moment you felt you are the coolest person on earth. Do you ever experience it? Because this is my blog, so I guess I&#8217;ll take the first turn to tell you about my coolest moment, at least up until now. I know that it could be a little [...]


Related posts:<ol><li><a href='http://arifn.web.id/blog/2009/09/03/scheduling.html' rel='bookmark' title='Permanent Link: Scheduling'>Scheduling</a></li>
<li><a href='http://arifn.web.id/blog/2008/12/19/alternative-softwares.html' rel='bookmark' title='Permanent Link: Alternative Softwares'>Alternative Softwares</a></li>
<li><a href='http://arifn.web.id/blog/2009/01/22/wireless-at-home.html' rel='bookmark' title='Permanent Link: Wireless at Home'>Wireless at Home</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>The coolest moment here means the very moment you felt you are the coolest person on earth. Do you ever experience it? Because this is my blog, so I guess I&#8217;ll take the first turn to tell you about my coolest moment, at least up until now. I know that it could be a little narcissistic, but I hope you don&#8217;t mind.  Okay, fasten your seat belt, here we go..</p>
<p>It happened in the third year of my college. We were having parallel programming course. In the middle of the course, our teacher gave us some cases that we had to solve using parallel principles. The class was divided into some groups with their own cases to solve. Every group must presents the solution twice. The first presentation tells the parallel principle used to solve the case. While in the second, the group must shows the implementation of the solution they presented earlier. There were some weeks range between the first and the second presentation.<span id="more-547"></span></p>
<div id="attachment_549" class="wp-caption alignright" style="width: 210px"><a rel="attachment wp-att-549" href="http://arifn.web.id/blog/2009/10/15/the-coolest-moment.html/dijkstra"><img class="size-full wp-image-549" title="dijkstra" src="http://arifn.web.id/blog/wp-content/uploads/2009/10/dijkstra.png" alt="Dijkstra shortest-path algorithm ilustration" width="200" height="169" /></a><p class="wp-caption-text">Dijkstra shortest-path algorithm ilustration</p></div>
<p>I was considered lucky as my group got <a href="http://en.wikipedia.org/wiki/Dijkstra's_algorithm">Dijkstra&#8217;s shortest-path algorithm</a>. The aim of this algorithm is to find the shortest path between two places using weighted graph. The hardest part is we must paralellized it, so that it can be implemented in more than one processor. So we begin our search at Google. Luckily, some researchers were already implemented it. Well, it took some times for us to understand it. But we&#8217;re ready for the first presentation.</p>
<p>So, we presented it. The main idea of the parallelization is to divide the graph into some grids. Each grid consists of some nodes. Then, each processor handle the distance measurement for each grids. I don&#8217;t really remember about the details, but I hope my explanation is enough.</p>
<p>At the end of the presentations, one friend of mine asked a question. This man is one of the top-geek persons in our class. He said that our idea will be hard to implement. He said that we couldn&#8217;t ensure that every nodes is evenly distributed on every processors. And here it comes my coolest moment.</p>
<p>I didn&#8217;t know what I&#8217;m thinking at that time. But I must say a word to defend our group. And the words unconsciously came from my mouth.</p>
<p>&#8220;Well, we don&#8217;t know unless we&#8217;re trying. Besides, we&#8217;re still students that in the learning progress. It doesn&#8217;t matter if it will be failed, but at least we try to do it.&#8221;</p>
<p>It looked like every single person in that room astonished by my talk. To be frank, me too. I never thought that I could say something like that. I&#8217;m still smiling if I remember that moment. This might be subjective, but I think that was the coolest moment in my life. At least up until now.</p>
<p>So, what is your coolest moment? I&#8217;ll be happy to read it.</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://arifn.web.id/blog/2009/10/15/the-coolest-moment.html&amp;title=The+Coolest+Moment" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://arifn.web.id/blog/2009/10/15/the-coolest-moment.html&amp;title=The+Coolest+Moment" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=The+Coolest+Moment+-++(via+@sidudun)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://arifn.web.id/blog/2009/10/15/the-coolest-moment.html&amp;t=The+Coolest+Moment" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://arifn.web.id/blog/2009/10/15/the-coolest-moment.html&amp;title=The+Coolest+Moment" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://arifn.web.id/blog/2009/10/15/the-coolest-moment.html" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://arifn.web.id/blog/2009/10/15/the-coolest-moment.html&amp;title=The+Coolest+Moment&amp;summary=The%20coolest%20moment%20here%20means%20the%20very%20moment%20you%20felt%20you%20are%20the%20coolest%20person%20on%20earth.%20Do%20you%20ever%20experience%20it%3F%20Because%20this%20is%20my%20blog%2C%20so%20I%20guess%20I%27ll%20take%20the%20first%20turn%20to%20tell%20you%20about%20my%20coolest%20moment%2C%20at%20least%20up%20until%20now.%20I%20know%20that%20it%20could%20be%20a%20little%20narcissistic%2C%20but%20I%20hope%20yo&amp;source=arifn" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://arifn.web.id/blog/2009/10/15/the-coolest-moment.html&amp;title=The+Coolest+Moment" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->



<p>Related posts:<ol><li><a href='http://arifn.web.id/blog/2009/09/03/scheduling.html' rel='bookmark' title='Permanent Link: Scheduling'>Scheduling</a></li>
<li><a href='http://arifn.web.id/blog/2008/12/19/alternative-softwares.html' rel='bookmark' title='Permanent Link: Alternative Softwares'>Alternative Softwares</a></li>
<li><a href='http://arifn.web.id/blog/2009/01/22/wireless-at-home.html' rel='bookmark' title='Permanent Link: Wireless at Home'>Wireless at Home</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://arifn.web.id/blog/2009/10/15/the-coolest-moment.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://arifn.web.id/blog/2009/10/15/the-coolest-moment.html</feedburner:origLink></item>
		<item>
		<title>Why are you blogging?</title>
		<link>http://feedproxy.google.com/~r/sidudun/~3/B7Goefg00C8/why-are-you-blogging.html</link>
		<comments>http://arifn.web.id/blog/2009/10/06/why-are-you-blogging.html#comments</comments>
		<pubDate>Tue, 06 Oct 2009 14:25:17 +0000</pubDate>
		<dc:creator>sidudun</dc:creator>
				<category><![CDATA[Word]]></category>
		<category><![CDATA[blogging]]></category>

		<guid isPermaLink="false">http://arifn.web.id/blog/?p=524</guid>
		<description><![CDATA[ So, why am I blogging you are asking?
I still remember the old days when I started to write blog. Like a child who found a new toy, I showed it off to all of the people. Not just showed off, but also tempted my friends to start their own blog. And I still remembered [...]


Related posts:<ol><li><a href='http://arifn.web.id/blog/2009/05/12/the-copy-paste-tale.html' rel='bookmark' title='Permanent Link: The Copy Paste Tale'>The Copy Paste Tale</a></li>
<li><a href='http://arifn.web.id/blog/2009/09/04/the-catcher-in-the-rye.html' rel='bookmark' title='Permanent Link: The Catcher in The Rye'>The Catcher in The Rye</a></li>
<li><a href='http://arifn.web.id/blog/2009/05/24/short-break.html' rel='bookmark' title='Permanent Link: Short Break'>Short Break</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-526" href="http://arifn.web.id/blog/2009/10/06/why-are-you-blogging.html/writing"><img class="alignright size-full wp-image-526" title="writing" src="http://arifn.web.id/blog/wp-content/uploads/2009/10/writing.png" alt="writing" width="200" height="200" /></a> So, why am I blogging you are asking?</p>
<p>I still remember the old days when I started to write blog. Like a child who found a new toy, I showed it off to all of the people. Not just showed off, but also tempted my friends to start their own blog. And I still remembered it clearly as day, one of my pals said these things. He said that what are blog used for? It&#8217;s just a narcissistic writing by some dudes, telling about their lives and bla bla bla. But you know that I don&#8217;t buy it, because you&#8217;re reading mine, right? And I don&#8217;t think I am a narcissist (0kay, maybe a little).</p>
<p>I&#8217;ll give you my story. It started some years ago. I was thinking it was cool to have a place where I can write some and access it from everywhere. Yes, I&#8217;m talking about writing on the clouds. At that time, I wasn&#8217;t thinking about what should I wrote. I just wanna write, that&#8217;s all.<span id="more-524"></span></p>
<p>Then I stumbled in this tech-paper. It has special page on them, featured some great blogs to visit. At the end of the page, they wrote an article about <a title="Wordpress.com" href="http://wordpress.com" target="_blank">Wordpress</a>, one of blog engines on the clouds. After read it, I did some research about what this blog things. What is it? How this thing works? And as soon as I finished my preliminary research, I was ready to start a blog.</p>
<p>Back to the main question, why am I blogging? The reason might be weird. I love to read. And as I read, these words suddenly appear in my mind. Every now and then, all the books and materials I&#8217;ve read transformed into words stream that almost take over my head. One thing that I know, I should pour these words into something to keep me sane.</p>
<p>At my early blogging days, I arranged these words into something like association maps. I associated one word to another. I tried to find the ideas that can collect these words into a single post. Almost anytime, everywhere, I was always thinking, what I should write next. And here&#8217;s the funny part. Sometimes I got a good idea when I was taking a bath or (sorry) defecate.</p>
<p>So here comes the social networks. The microblogging (or status updates) has changed the blogosphere. Now, you do not need to write a number of paragraph to tell other people. At one side it&#8217;s good because you can read the main idea quickly. The bad thing, because of its limitation, sometimes you missed the writer&#8217;s points.</p>
<p>So, to sum it up:<br />
Why am I blogging? <strong>To keep me sane</strong>.<br />
Why I wrote this post? <strong>I wanna get these words out of my head</strong>.<br />
Why are you blogging? <strong>Write it down at the comment section</strong>. I&#8217;ll be glad to hear it.</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://arifn.web.id/blog/2009/10/06/why-are-you-blogging.html&amp;title=Why+are+you+blogging%3F" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://arifn.web.id/blog/2009/10/06/why-are-you-blogging.html&amp;title=Why+are+you+blogging%3F" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Why+are+you+blogging%3F+-++(via+@sidudun)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://arifn.web.id/blog/2009/10/06/why-are-you-blogging.html&amp;t=Why+are+you+blogging%3F" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://arifn.web.id/blog/2009/10/06/why-are-you-blogging.html&amp;title=Why+are+you+blogging%3F" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://arifn.web.id/blog/2009/10/06/why-are-you-blogging.html" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://arifn.web.id/blog/2009/10/06/why-are-you-blogging.html&amp;title=Why+are+you+blogging%3F&amp;summary=%20So%2C%20why%20am%20I%20blogging%20you%20are%20asking%3F%0D%0A%0D%0AI%20still%20remember%20the%20old%20days%20when%20I%20started%20to%20write%20blog.%20Like%20a%20child%20who%20found%20a%20new%20toy%2C%20I%20showed%20it%20off%20to%20all%20of%20the%20people.%20Not%20just%20showed%20off%2C%20but%20also%20tempted%20my%20friends%20to%20start%20their%20own%20blog.%20And%20I%20still%20remembered%20it%20clearly%20as%20day%2C%20one%20of%20my%20&amp;source=arifn" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://arifn.web.id/blog/2009/10/06/why-are-you-blogging.html&amp;title=Why+are+you+blogging%3F" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->



<p>Related posts:<ol><li><a href='http://arifn.web.id/blog/2009/05/12/the-copy-paste-tale.html' rel='bookmark' title='Permanent Link: The Copy Paste Tale'>The Copy Paste Tale</a></li>
<li><a href='http://arifn.web.id/blog/2009/09/04/the-catcher-in-the-rye.html' rel='bookmark' title='Permanent Link: The Catcher in The Rye'>The Catcher in The Rye</a></li>
<li><a href='http://arifn.web.id/blog/2009/05/24/short-break.html' rel='bookmark' title='Permanent Link: Short Break'>Short Break</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://arifn.web.id/blog/2009/10/06/why-are-you-blogging.html/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		<feedburner:origLink>http://arifn.web.id/blog/2009/10/06/why-are-you-blogging.html</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 2.437 seconds. --><!-- Cached page generated by WP-Super-Cache on 2010-03-12 09:37:50 -->
