<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>kusut</title>
	<atom:link href="http://kusut.web.id/feed/" rel="self" type="application/rss+xml" />
	<link>http://kusut.web.id</link>
	<description></description>
	<lastBuildDate>Thu, 22 Jul 2010 08:25:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Unforgettable Tunes</title>
		<link>http://kusut.web.id/2010/07/unforgettable-tunes/</link>
		<comments>http://kusut.web.id/2010/07/unforgettable-tunes/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 08:25:42 +0000</pubDate>
		<dc:creator>kusut</dc:creator>
				<category><![CDATA[music]]></category>
		<category><![CDATA[ambient]]></category>
		<category><![CDATA[classic]]></category>
		<category><![CDATA[hans zimmer]]></category>
		<category><![CDATA[jackie chan]]></category>
		<category><![CDATA[jean michel jarre]]></category>
		<category><![CDATA[magic fly]]></category>
		<category><![CDATA[oxygene]]></category>
		<category><![CDATA[the lonely man]]></category>
		<category><![CDATA[the rain man]]></category>
		<category><![CDATA[trance]]></category>
		<category><![CDATA[tvri]]></category>

		<guid isPermaLink="false">http://kusut.web.id/?p=127</guid>
		<description><![CDATA[I have some songs stuck in my head for decades. Nowadays, you can immediately google something you casually find and quench the curiosity right away. We didnt have that kind of luxury. The Lonely Man Old TV series have very definite and distinctive soundtracks. Mostly they really came out with a bang in the opening [...]]]></description>
			<content:encoded><![CDATA[<p>I have some songs stuck in my head for decades. Nowadays, you can immediately google something you casually find and quench the curiosity right away. We didnt have that kind of luxury.</p>
<p><strong>The Lonely Man</strong><br />
Old TV series have very definite and distinctive soundtracks. Mostly they really came out with a bang in the opening title. If I am not mistaken, some today&#8217;s series omit the opening title completely. Anyway, the soundtrack that&#8217;s stuck in my head is the closing credits from The incredible Hulk series, a piano ballad, The Lonely Man. Hearing the piece with seeing Dr. Banner back on the road trying to hitch a ride is surely a difficult thing to forget.</p>
<p><strong>Weather Forecast</strong><br />
Do you guys remember <em>Dunia dalam Berita</em>? I still remember waiting eagerly for the news from Seoul 88 just to find that the Olympic was over. The main attractions for me were sport news and weather forecast. I didnt really understand about sport, I just liked seeing the athletes giving their best to win. As for the weather forecast, I thought it was kinda cool graphic, showing towns around the world with pictures of cloud, sun and so on. That was probably the earliest geography lesson I got.</p>
<p>What does weather forecast have to do with this topic you might say. One thing I particularly remembered is they put some soothing memorable songs in the background. These songs were almost forgotten, until somewhere in the 90s, a Jackie Chan classic made me remember. I heard some songs in The Snake in The Eagle Shadow, a Jackie Chan&#8217;s movie. My interest on those long lost songs were back. About a year ago, I watched a movie, The Rain Man. I am not sure but I think one of its soundtrack (by Hans Zimmer) was also played in weather forecast.</p>
<p>The songs are Oxygène Part II and IV by Jean Michel Jarre and Magic Fly by Space. They&#8217;re all in the Jackie Chan&#8217;s movie but I dont know whether all of them were played back then in weather forecast (but I am kinda sure that Part IV was). I seems like TVRI used a lot of these French, ambient, trance, whatever music in their programs so every time I hear them, I get the feeling that I&#8217;ve heard them before (like Part II and Magic Fly).</p>
<p>That being said, the search is not over. I am still looking for this one song, the song  that I most remember. It is definitely in the same genre.</p>
]]></content:encoded>
			<wfw:commentRss>http://kusut.web.id/2010/07/unforgettable-tunes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nested Archive Link in Django</title>
		<link>http://kusut.web.id/2010/06/nested-archive-links-in-django/</link>
		<comments>http://kusut.web.id/2010/06/nested-archive-links-in-django/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 18:25:49 +0000</pubDate>
		<dc:creator>kusut</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[archive]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://kusut.web.id/?p=99</guid>
		<description><![CDATA[Let&#8217;s say you have a blog in Django and want to have archive link on the sidebar. The link of course is matched to the date of your posts. You cant have a &#8216;June 2010&#8242; link if you never post on that month. This post will try to handle that, creating nested archive link yearly [...]]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s say you have a blog in Django and want to have archive link on the sidebar. The link of course is matched to the date of your posts. You cant have a &#8216;June 2010&#8242; link if you never post on that month. This post will try to handle that, creating nested archive link yearly and monthly. </p>
<pre><code>data = Post.objects.all()</code></pre>
<p>Here you got a QuerySet containing all your posts. Next is getting distinct year/month values from your posts grouped by year. To do this you need a set of distinct years.</p>
<pre><code>year = ([d.year for d in data.dates('publish', 'year', order='DESC')])</code></pre>
<p>Now that you have it, you can get what you want. I originally used a dict to contain the result,</p>
<pre><code>result = dict([(y, data.filter(publish__year=y).dates('publish', 'month', order='DESC')) for y in year])</code></pre>
<p>but dict is not sortable (you can sort the keys on an external data structure, though), so I put it on a nested tuple.</p>
<pre><code>result = ([([y, data.filter(publish__year=y).dates('publish', 'month', order='DESC')]) for y in year])</code></pre>
<p>I use date_based generic view, so I put this on extra_context for easier inclusion. All that remains is viewing it on the template with filters and stuff. I am pretty new with this, any better suggestions?</p>
]]></content:encoded>
			<wfw:commentRss>http://kusut.web.id/2010/06/nested-archive-links-in-django/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Detective Series</title>
		<link>http://kusut.web.id/2010/05/detective-series/</link>
		<comments>http://kusut.web.id/2010/05/detective-series/#comments</comments>
		<pubDate>Thu, 13 May 2010 08:50:12 +0000</pubDate>
		<dc:creator>kusut</dc:creator>
				<category><![CDATA[movies]]></category>
		<category><![CDATA[criminal minds]]></category>
		<category><![CDATA[detective]]></category>
		<category><![CDATA[monk]]></category>
		<category><![CDATA[sherlock holmes]]></category>
		<category><![CDATA[tv series]]></category>

		<guid isPermaLink="false">http://kusut.web.id/?p=90</guid>
		<description><![CDATA[I personally think that detective series writers could keep the series as long as they want without fear of the story being dragged on. TV series live off conflicts, but while you can keep adding conflicts to prolong the series, there is gonna be some point that, despite how good the conflict is, the viewers [...]]]></description>
			<content:encoded><![CDATA[<p>I personally think that detective series writers could keep the series as long as they want without fear of the story being dragged on. TV series live off conflicts, but while you can keep adding conflicts to prolong the series, there is gonna be some point that, despite how good the conflict is, the viewers will feel the show is unrealistic. This, IMO, wont happen on the detective series because they only need good cases. The protagonists live by solving other people &#8216;conflict&#8217; and some of their own. That is why it&#8217;s normal to see a lot of conflicts, since they&#8217;re not exclusively owned by protagonists. I guess this is enough for the opening paragraph.</p>
<p><strong>The Adventures of Sherlock Holmes (Granada Television)</strong><br />
This series was purely based on the book, mostly contains Sherlock&#8217;s deductive reasoning. I dont know much of Sherlock portrayal but this one I consider the best. Sharp looking (unlike Downey Jr), skinny Jeremy Brett made Sherlock Holmes came to life. His particulars are also portrayed well, since they really stayed true to the books. IMO, this lacks of entertainment value. You better read the book to follow Sherlock&#8217;s reasoning thoroughly. But this series serve really well if any of you just want to see Sherlock on screen.</p>
<p><strong>Monk</strong><br />
Another Sherlokian detective. The best part of this show is solely the characterization of its main character, Adrian Monk. Give a Sherlock Holmes hundreds (no, this is not a hyperbole) anxiety disorders (mostly known as phobias) and you get our main protagonist. He remembers everything (mostly but not limited to photographic). The case quality went worse as the seasons go by, but it&#8217;s still a decent comedy.</p>
<p><strong>Criminal Minds</strong><br />
This one took the cake. Combining my favorite genre, crime, with one of my interest, psychology (this I believe was begun in 2007 when I started listening to <a href="http://en.wikipedia.org/wiki/Tool_band">this band</a>, which led me to <a href="http://en.wikipedia.org/wiki/Carl_jung">him</a>). The story is revolving around an FBI Behavioral Analysis Unit team, solving serial killing cases. It also emphasizes on the criminals rather than the crimes. A guy with eidetic memory seems a must in a detective story, so a guy, Reid, just like Monk, has one (mostly remember what he read). It is a bit different from other detective shows, facts finding and deductive reasoning exist but also psychological things, like profiling or interrogation techniques. I always pay attention when they say any psychological babble. One good point about this show is they keep the team&#8217;s personal problems in the background. Funny thing I didnt notice Meredith Monroe on her first appearance(s), so I was like &#8220;did they change the cast?&#8221; when I finally noticed her. And Patinkin is gone, Mantegna to replace him. Patinkin looks like a lawful authoritative figure, and I dont think Mantegna does since I only saw him in a mob movie (he did a good job at it). I havent see him on the show yet, I bet it&#8217;s gonna be weird, we&#8217;ll see. Good show overall, added to that they always feature a quote or two (sometimes more) per episode.</p>
]]></content:encoded>
			<wfw:commentRss>http://kusut.web.id/2010/05/detective-series/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Trying OpenBSD</title>
		<link>http://kusut.web.id/2010/03/trying-openbsd/</link>
		<comments>http://kusut.web.id/2010/03/trying-openbsd/#comments</comments>
		<pubDate>Sun, 21 Mar 2010 09:21:34 +0000</pubDate>
		<dc:creator>kusut</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[openbsd]]></category>

		<guid isPermaLink="false">http://kusut.web.id/?p=70</guid>
		<description><![CDATA[The world doesn&#8217;t live off jam and fancy perfumes, it lives off bread and meat and potatoes. I decided to try another operating system while waiting eagerly for metad release. This video conviced me enough to give OpenBSD a try. Go here to know more about BSD and GNU/linux difference (if thats too long, just [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>The world doesn&#8217;t live off jam and fancy perfumes, it lives off bread and meat and potatoes.</p></blockquote>
<p>I decided to try another operating system while waiting eagerly for metad release. <a href="http://www.youtube.com/watch?v=i7pkyDUX5uM">This video</a> conviced me enough to give OpenBSD a try. Go <a href="http://www.over-yonder.net/~fullermd/rants/bsd4linux/bsd4linux1.php">here</a> to know more about BSD and GNU/linux difference (if thats too long, just read the base system and philosophy parts).</p>
<p>So, OpenBSD on my old computer. I highly doubt that my optical drive there is still working. Too often I cant boot my PC from it. I tried OpenBSD live usb and failed. Luckily, once in a blue moon I can boot from my cd rom. After setting up partitions (which made my PC unusable because I bailed out the first time LOL), my cd rom cant read the distribution sets, so I chose to get them via ftp (thankfully, it points to the closest mirror). It took 1-2 hours so I ended up watching English Premier League and Natalie Portman on TV. OpenBSD installer alocates a single partition for OpenBSD, and you get to choose your own layout (swap, /usr, /var and so on) <strong>inside</strong> that partition.</p>
<p>After installation, I relied heavily on lynx and man pages. I intended to make this computer a workstation so I went installing desktop, firefox, pidgin and mplayer. First, I tried to install gnome and decided that it wasnt worth it (lots of packages). I settled for a simple window manager, openbox. And then I continued installing pidgin, firefox (both are old packages) and emacs (22, not 23). I havent tried the ports tree.</p>
<p>I decided that was enough OpenBSD for this weekend. I went to bed after breakfast and now Im having a headache.</p>
]]></content:encoded>
			<wfw:commentRss>http://kusut.web.id/2010/03/trying-openbsd/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>This Theme</title>
		<link>http://kusut.web.id/2010/02/theme/</link>
		<comments>http://kusut.web.id/2010/02/theme/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 08:21:41 +0000</pubDate>
		<dc:creator>kusut</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[bitbucket]]></category>
		<category><![CDATA[emacs]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[wordpress theme]]></category>

		<guid isPermaLink="false">http://kusut.web.id/?p=64</guid>
		<description><![CDATA[I watched a lot of movies/TV series lately and had some writing materials. For now this suffices. This Theme I made a wordpress theme some years back. Well, actually, not me (japran did mostly). It is nowhere to be found now. You can find the release note here. To prevent that, I decided to put [...]]]></description>
			<content:encoded><![CDATA[<p>I watched a lot of movies/TV series lately and had some writing materials. For now this suffices.</p>
<p><strong>This Theme</strong><br />
I made a wordpress theme some years back. Well, actually, not me (japran did mostly). It is nowhere to be found now. You can find the release note <a href="http://web.archive.org/web/20060102162104/tino.csui02.net/?p=3">here</a>. To prevent that, I decided to put this blog theme publicly available. Get it <a href="http://bitbucket.org/kusut/emacs-wordpress-theme">here</a>. I actually wanted to host it on github (just for learning git in the process), but they dont allow write access via http, and I cant connect to them via ssh from my machine.</p>
<p><strong>Emacs Rant</strong><br />
It has been a few months since I started using emacs. I am getting familiar with a <a href="http://kusut.web.id/2009/07/new-keyboard-habit/">new habit</a> but still having difficulty since I also use vi and regular editor. It is quite annoying and funny to misuse key bindings on a different environment. The version control integration is nice but I still have some problems. Kill ring and system clipboard separation is unusual, GNU coding convention is rarely used outside GNU project, and many more. Actually they are not much of troubles, we can customize everything on Emacs. I am just too lazy to fix those things.</p>
<p>Anyway there is <a href="http://github.com/technomancy/emacs-starter-kit">a kit</a> around to help emacs newbie (WARNING: it is HUGE and makes you feel comfortable). I also put my emacs setup <a href="http://bitbucket.org/kusut/emacs">under version control</a>, just in case.</p>
]]></content:encoded>
			<wfw:commentRss>http://kusut.web.id/2010/02/theme/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>rms</title>
		<link>http://kusut.web.id/2009/10/rms/</link>
		<comments>http://kusut.web.id/2009/10/rms/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 03:33:36 +0000</pubDate>
		<dc:creator>kusut</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[free software]]></category>
		<category><![CDATA[gnu]]></category>
		<category><![CDATA[rms]]></category>

		<guid isPermaLink="false">http://kusut.web.id/?p=55</guid>
		<description><![CDATA[Yesterday, I got the opportunity to meet rms. He was scheduled to give a speech here. Thanks to the organizer. He brought a small black netbook with him. I immediately guessed that it must be the portable dragon. I sneaked to confirm it while he was busy doing photos. This hardware is going to be [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday, I got the opportunity to meet rms. He was scheduled to give a speech here. Thanks to the <a href="http://poss.ui.ac.id">organizer</a>.</p>
<p>He brought a small black netbook with him. I immediately guessed that it must be the <a href="http://www.lemote.com/english/yeeloong.html">portable dragon</a>. I sneaked to confirm it while he was busy doing photos. This hardware is going to be the first complete 100% free software compatible (yes, that includes the bios). There is a heavy effort to port gnewsense into that machine. I wonder if he got <a href="http://kusut.web.id/2009/10/metad-news/">next release</a> of gnewsense on that.</p>
<p>His talked about the free software movement, its history and so on. Most software enthusiasts already know this stuff via <a href="http://www.gnu.org/philosophy/">this page</a> but still can get a few new things from it. The beginning of GNU project, recursive acronyms, Swindle (LOL, he mentioned 1984 too) and open source practical approach are part of his talk about software freedom.</p>
<p>Funnily, that&#8217;s not what he supposed to talk about. It supposed to be &#8220;copyright vs community&#8221;. Well, in my opinion, this is a difficult topic to cover. Most Indonesians confuse the copyright (hak cipta), patent, and maybe even trademark (merk dagang), all thanks to the term &#8216;kekayaan intelektual&#8217;. Yes, that term helps us to combine those mumbo jumbo into one single word. But just like removing GNU from GNU/linux, people won&#8217;t get to know that &#8216;kekayaan intelektual&#8217; consists of many totally different things. rms apologized for talking about the wrong topic and took some extra minutes to talk about copyright issue (mainly how copyright nowadays tends to prevent inventions). </p>
<p>He talked about copyright in the middle of QA session. I got my questions answered too. I asked about pirate parties (I actually understood his stance and solution on this, but forgot LOL) and AGPL. I asked about the AGPL question cause his unending hatred towards &#8216;software as service&#8217;. I didnt really get his answer, but I think despite AGPL or whatever license, &#8216;software as services&#8217; makes him uncomfortable (ethically not right). I would love to hear his answer again (video from the organizer?). <a href="http://rahmatm.samik-ibrahim.vlsm.org/">Pak Ibam</a> also ask some interesting questions (after having a few words in Bahasa Indonesia with rms. &#8216;tidak boleh&#8217; LOL), one of them is why Linus refuse GPL3.</p>
<p>Just before QA session, he transformed himself for a moment into his alter ego, St Ignucius form the church of emacs. Too bad, not much of emacs user in this country. One thing I forgot, rms speaks a little Bahasa Indonesia. He&#8217;s pretty good at it and without his american tongue (it&#8217;s really clear, most foreigners have difficulties with pronunciation). His fluency in our language is really great, the crowd really liked when he used any local words, or even talked in it for some sentences.  After QA, there was a photo session and everyone went home happy. </p>
]]></content:encoded>
			<wfw:commentRss>http://kusut.web.id/2009/10/rms/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>metad news</title>
		<link>http://kusut.web.id/2009/10/metad-news/</link>
		<comments>http://kusut.web.id/2009/10/metad-news/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 07:50:39 +0000</pubDate>
		<dc:creator>kusut</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[free software]]></category>
		<category><![CDATA[gnewsense]]></category>
		<category><![CDATA[metad]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://kusut.web.id/?p=50</guid>
		<description><![CDATA[It seems that next version of gnewsense will be based on Debian. This means we&#8217;ll get some interesting stuff. Things like debian installer (lean and mean, yay), eglibc, and even FreeBSD kernel. This news really surprised me (in a good way) since it was just told casually on the list without any formal announcement whatsoever. [...]]]></description>
			<content:encoded><![CDATA[<p>It seems that next version of gnewsense will be based on Debian. This means we&#8217;ll get some interesting stuff. Things like debian installer (lean and mean, yay), eglibc, and even FreeBSD kernel. This news really surprised me (in a good way) since it was just told casually on the list without any formal announcement whatsoever. They probably announced it on the channel.</p>
<p>I kinda think that the new Debian release policy played an important part on switching base from Ubuntu to Debian (there is no certainty on this. Purely my presumption). Well let us hope that with this new Debian release policy, the packages will be as latest as possible (not as latest as Ubuntu but still). And of course, I also hope that <a href="http://kambing.ui.ac.id/gnewsense/">my favorite mirror</a> will host this.</p>
]]></content:encoded>
			<wfw:commentRss>http://kusut.web.id/2009/10/metad-news/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Merantau</title>
		<link>http://kusut.web.id/2009/07/merantau/</link>
		<comments>http://kusut.web.id/2009/07/merantau/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 02:48:32 +0000</pubDate>
		<dc:creator>kusut</dc:creator>
				<category><![CDATA[movies]]></category>
		<category><![CDATA[iko uwais]]></category>
		<category><![CDATA[merantau]]></category>
		<category><![CDATA[silat]]></category>
		<category><![CDATA[sisca jessica]]></category>

		<guid isPermaLink="false">http://kusut.web.id/?p=35</guid>
		<description><![CDATA[This is a review for a movie called Merantau. I got the chance to watch its workshop not so long ago and got free tickets to Press Screening from it. My friend is even luckier (is he?), he got free tickets to the Gala Premier. I&#8217;m still waiting to hear from him. Lucky bastard hung [...]]]></description>
			<content:encoded><![CDATA[<p>This is a review for a movie called Merantau. I got the chance to watch <a href="http://kusut.web.id/2009/05/merantau-movie-workshop/">its workshop</a> not so long ago and got free tickets to Press Screening from it. My friend is even luckier <del datetime="2009-07-31T02:58:51+00:00">(is he?)</del>, he got free tickets to the Gala Premier.<del datetime="2009-07-31T02:58:51+00:00"> I&#8217;m still waiting to hear from him.</del> Lucky bastard hung out with celebrities (<a href="http://cacianqalbukunderemp.blogspot.com/2009/08/merantau-2009.html">his take</a> on the movie).</p>
<p>Okay, if you uninformed readers never heard about this movie, I suggest to take a look at that link above. I will jump right to the review without any introduction.</p>
<p><strong>Plot/Story</strong><br />
The story is simple. I can&#8217;t talk much about it. It simply reminded me the story of my late grandfather (I don&#8217;t think he had the luxury of an address and money when he started his journey before his teens). What I really like is they really show the whole <em>merantau</em> tradition. They told it with his mother&#8217;s monologue, stories from his brother and Eric, and the scene where the whole village sends him off. They also told the audience a bit of <em>silat</em> philosophy. I think I should thank Bapak Bule again for not just picking the martial arts. Is it just me, or the last scene was really great. It made me accept the movie as it is.</p>
<p><strong>Directing</strong><br />
Landscape exploited. They really took the advantage of <em>Bukittinggi</em>. Most outdoor scenes showed how beautiful the landscape is. My favorite was the <em>Bukittinggi</em> bus stop scene, when the camera slowly zooms out. The chasing scenes were pretty good. And I really respect the decision to take the fighting scenes wide-angle (and in one take IIRC). It&#8217;s definitely harder to pull off but this is the best approach if the fighters are numerous (IMO close up fighting is only applicable if it&#8217;s only a duel). I was quite surprised when they used a long take (the camera was a bit shaky though) on a scene where Eric walks to &#8216;<em>malamar karajo</em>&#8216; (that was the best line, caught me out of the blue).</p>
<p><strong>Casts</strong><br />
Iko and Yayan were not actors before but did pretty good aside from the accent (but that&#8217;s okay, it is hard). Yusuf had the curious and innocent looks needed. Sisca was a bit loud and annoying, I guess that means her act was pretty convincing. Mats Koudal was perfect for the insensitive European clod. Laurent Buson still got his Shaolin moves. Alex was doing well as a pimp-wannabe. Donny didn&#8217;t have enough screen time. Christine Hakim got less scene time but still delivered great (my fave were Iko&#8217;s departure and the last scene).</p>
<p><strong>Fight</strong><br />
It&#8217;s less flashy and more practical. You won&#8217;t see a somersault kick here. There were still choreographed maneuvers showed, but thankfully, not much (and for the observant, there are some &#8216;waiting times&#8217;). Overall, I&#8217;m pretty satisfied.</p>
<p><strong>Music</strong><br />
I was too distracted. I only remembered opening music, the guitar and the violin(?), and some upbeat percussion during the action scene (it&#8217;s pretty much upbeat during the action scenes, but not limited to percussion).</p>
<p><strong>Conclusion</strong><br />
For Indonesians, this is a must watch. We didn&#8217;t have action movie for so long (this one is drama-action). Thanks to the management who served me. For once, I thought I lost it for good.</p>
]]></content:encoded>
			<wfw:commentRss>http://kusut.web.id/2009/07/merantau/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>New Keyboard Habit</title>
		<link>http://kusut.web.id/2009/07/new-keyboard-habit/</link>
		<comments>http://kusut.web.id/2009/07/new-keyboard-habit/#comments</comments>
		<pubDate>Sat, 18 Jul 2009 04:34:47 +0000</pubDate>
		<dc:creator>kusut</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[emacs]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[free software]]></category>
		<category><![CDATA[habit]]></category>
		<category><![CDATA[keyboard]]></category>

		<guid isPermaLink="false">http://kusut.web.id/?p=27</guid>
		<description><![CDATA[Changing our habit is considered to be one of the unwanted things. Even if it will be better, we still cling to our old habit which is placed perfectly in our comfort zone. I guess I don&#8217;t need to give some examples here because we rarely see new habits, ours or other people&#8217;s, emerging. Why [...]]]></description>
			<content:encoded><![CDATA[<p>Changing our habit is considered to be one of the unwanted things. Even if it will be better, we still cling to our old habit which is placed perfectly in our comfort zone. I guess I don&#8217;t need to give some examples here because we rarely see new habits, ours or other people&#8217;s, emerging. Why is that? That&#8217;s right. What&#8217;s the point of leaving our comfort zone to pursue bewilderment, some might say.</p>
<p>Currently, I try to give <a href="http://www.gnu.org/software/emacs/emacs.html">Editor for Most Adorable Computer Scientists</a> a chance (since it&#8217;s installed by default in my OS). The consequence is pretty hard, changing my keyboard habit. I don&#8217;t have any idea which one is worse, getting yourself familiar with Emacs key binding or changing from qwerty to dvorak/colemak/whatever.</p>
<p>First, put your left control key into the caps-lock key (replace or swap, your choice). This is easy on Gnome. In Windows, you have to do some registry hacks. &#8220;Why?&#8221; you might ask. Emacs use control keys heavily. You have to put it in a more accessible place or your wrist will go bad like Stallman or Gosling. I&#8217;d rather recommend getting rid of your caps-lock key than swapping it with left control. In most cases, your muscle memory will make your left pinky immediately go to the bottom-left of your keyboard as soon as you think &#8216;Ctrl&#8217;. Try your best to change that while using Emacs. Love your wrist.</p>
<p>Second, the key bindings and the environment. This is not easier than the former. I am really familiar with normal key bindings. Cut, copy, paste, save, undo, redo and find have different key bindings on Emacs, or worse, different mechanism. Well, mechanism aside (that&#8217;s the one you must learn), you can customize Emacs to your liking, so that&#8217;s not much of a problem except that you have to write some lisp code.</p>
<p>That&#8217;s the purpose of <a href="http://www.gnu.org/fun/jokes/gnuemacs.acro.exp.html">Emacs</a>, you get to learn functional programming naturally. Being able to use the <del datetime="2009-07-18T03:46:12+00:00">editor</del> operating system front end is just a bonus.</p>
<p>ADD : <a href="http://www.youtube.com/watch?v=oWxtBVT9C_s">A band used Katy Perry&#8217;s &#8220;I kissed a girl&#8221; on Emacs</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kusut.web.id/2009/07/new-keyboard-habit/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Rise Up</title>
		<link>http://kusut.web.id/2009/06/rise-up/</link>
		<comments>http://kusut.web.id/2009/06/rise-up/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 01:07:38 +0000</pubDate>
		<dc:creator>kusut</dc:creator>
				<category><![CDATA[interesting]]></category>
		<category><![CDATA[consumer rights]]></category>
		<category><![CDATA[fail]]></category>
		<category><![CDATA[RS Omni]]></category>
		<category><![CDATA[UU ITE]]></category>

		<guid isPermaLink="false">http://kusut.web.id/?p=23</guid>
		<description><![CDATA[This is not much but the only thing I can do I dont have much credibility on this, so here&#8217;s my friends&#8217; blogs. Happy reading. http://cacianqalbukunderemp.blogspot.com/ (a lot of articles and references) http://staff.blog.ui.ac.id/jp/2009/06/04/an-act-of-solidarity/ (nice summary and insight)]]></description>
			<content:encoded><![CDATA[<p>This is not much but the only thing I can do<br />
<a href="http://ibuprita.suatuhari.com/" target="_blank"><img src="http://ibuprita.suatuhari.com/wp-content/uploads/2009/06/banner-prita-468x601.gif" alt="" /></a></p>
<p>I dont have much credibility on this, so here&#8217;s my friends&#8217; blogs. Happy reading.</p>
<p>http://cacianqalbukunderemp.blogspot.com/ (a lot of articles and references)<br />
http://staff.blog.ui.ac.id/jp/2009/06/04/an-act-of-solidarity/ (nice summary and insight)</p>
]]></content:encoded>
			<wfw:commentRss>http://kusut.web.id/2009/06/rise-up/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
