<?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 &#187; computer</title>
	<atom:link href="http://kusut.web.id/category/computer/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>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>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>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>gNewSense and Icecat</title>
		<link>http://kusut.web.id/2009/04/gnewsense-and-icecat/</link>
		<comments>http://kusut.web.id/2009/04/gnewsense-and-icecat/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 04:13:51 +0000</pubDate>
		<dc:creator>kusut</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[uncategorized]]></category>
		<category><![CDATA[free software]]></category>
		<category><![CDATA[gnewsense]]></category>
		<category><![CDATA[icecat]]></category>

		<guid isPermaLink="false">http://kusut.web.id/?p=21</guid>
		<description><![CDATA[gNewSense 2.2 is now available. And add these lines into your source list if you want to try IceCat. deb http://gnuzilla.gnu.org/download/debian deltah-icecat universe main deb-src http://gnuzilla.gnu.org/download/debian deltah-icecat universe main I need a new hard drive&#8230;]]></description>
			<content:encoded><![CDATA[<p>gNewSense 2.2 is now <a href="http://lists.nongnu.org/archive/html/gnewsense-users/2009-04/msg00028.html">available</a>.</p>
<p>And add these lines into your source list if you want to try IceCat.<br />
<code>deb http://gnuzilla.gnu.org/download/debian deltah-icecat universe main<br />
deb-src http://gnuzilla.gnu.org/download/debian deltah-icecat  universe main<br />
</code></p>
<p>I need a new hard drive&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://kusut.web.id/2009/04/gnewsense-and-icecat/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Free Software Foundation Files Suit Against Cisco For GPL Violations</title>
		<link>http://kusut.web.id/2008/12/free-software-foundation-files-suit-against-cisco-for-gpl-violations/</link>
		<comments>http://kusut.web.id/2008/12/free-software-foundation-files-suit-against-cisco-for-gpl-violations/#comments</comments>
		<pubDate>Fri, 12 Dec 2008 15:04:43 +0000</pubDate>
		<dc:creator>kusut</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[fsf]]></category>
		<category><![CDATA[gpl]]></category>
		<category><![CDATA[violation]]></category>

		<guid isPermaLink="false">http://kusut.web.id/?p=13</guid>
		<description><![CDATA[This is just too big. Press release Detailed background The complaint Now, now. You call copyright violation &#8220;piracy&#8221;. What should we call copyleft violation?]]></description>
			<content:encoded><![CDATA[<p>This is just too big.</p>
<p><a href="http://www.fsf.org/news/2008-12-cisco-suit">Press release</a><br />
<a href="http://www.fsf.org/blogs/licensing/2008-12-cisco-complaint">Detailed background</a><br />
<a href="http://www.fsf.org/licensing/complaint-2008-12-11.pdf">The complaint</a></p>
<p>Now, now. You call copyright violation &#8220;piracy&#8221;. What should we call copyleft violation?</p>
]]></content:encoded>
			<wfw:commentRss>http://kusut.web.id/2008/12/free-software-foundation-files-suit-against-cisco-for-gpl-violations/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>gNewSense 2.1</title>
		<link>http://kusut.web.id/2008/08/gnewsense-21/</link>
		<comments>http://kusut.web.id/2008/08/gnewsense-21/#comments</comments>
		<pubDate>Mon, 25 Aug 2008 14:24:40 +0000</pubDate>
		<dc:creator>kusut</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[free software]]></category>
		<category><![CDATA[freedom]]></category>
		<category><![CDATA[gnewsense]]></category>
		<category><![CDATA[gnu]]></category>

		<guid isPermaLink="false">http://kusut.web.id/?p=7</guid>
		<description><![CDATA[Changes since 2.0 include: - Linux-ubuntu-modules cleared of non-free blobs - Usplash added, thanks to Jean - New theme and artwork, thanks to Patricio, Briareoh and Leo - Readded fix for module-init-tools for eepro100 - Builder: LiveCD no longer asks for password on sudo - Builder: Added support for extra repositories in python-apt - Builder: [...]]]></description>
			<content:encoded><![CDATA[<p>Changes since 2.0 include:<br />
- Linux-ubuntu-modules cleared of non-free blobs<br />
- Usplash added, thanks to Jean<br />
- New theme and artwork, thanks to Patricio, Briareoh and Leo<br />
- Readded fix for module-init-tools for eepro100<br />
- Builder: LiveCD no longer asks for password on sudo<br />
- Builder: Added support for extra repositories in python-apt<br />
- Builder: Various tweaks, fixes and improvements from Karl</p>
<p>Here&#8217;s a few words from the chief</p>
<blockquote><p>I&#8217;ve just realised that tomorrow will mark the 2 year anniversary of our first release.<br />
Accordingly, it&#8217;s somewhat appropriate that our 10th LiveCD is released today.</p>
<p>It&#8217;s strange to think that it&#8217;s well over 2 years since Paul and I started gNewSense. While I remain the main developer; many other people have contributed code, and many many more time and effort, to ensure that this distribution stays free and usable. We were the first for example to remove all non-free blobs from the kernel and also the first to remove GLX. Through all this work we have produced what is, to the best of my knowledge, the freest GNU/Linux distribution in existence.</p>
<p>I&#8217;d like to thank everyone for their help and support thus far, and look forward to the future of gNewSense.</p></blockquote>
<p>Heh&#8230;the most &#8220;hated&#8221; removal  had to be linux-ubuntu-modules. Glad to see it back.</p>
]]></content:encoded>
			<wfw:commentRss>http://kusut.web.id/2008/08/gnewsense-21/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Crisis</title>
		<link>http://kusut.web.id/2008/08/crisis/</link>
		<comments>http://kusut.web.id/2008/08/crisis/#comments</comments>
		<pubDate>Sun, 10 Aug 2008 15:58:02 +0000</pubDate>
		<dc:creator>kusut</dc:creator>
				<category><![CDATA[computer]]></category>

		<guid isPermaLink="false">http://kusut.web.id/?p=5</guid>
		<description><![CDATA[tino@kusut:~$ df -lh Filesystem            Size  Used Avail Use% Mounted on /dev/sda6             5.8G  2.8G  2.8G  50% / varrun                506M  108K  506M   1% /var/run varlock               506M     0  506M   0% /var/lock udev                  506M   72K  506M   1% /dev devshm                506M  288K  506M   1% /dev/shm gvfs-fuse-daemon      5.8G  2.8G  2.8G  50% /home/tino/.gvfs /dev/sda1              21G   17G  3.3G  84% /media/a0 /dev/sda5             9.4G  7.9G  [...]]]></description>
			<content:encoded><![CDATA[<p><code><br />
tino@kusut:~$ df -lh<br />
Filesystem            Size  Used Avail Use% Mounted on<br />
/dev/sda6             5.8G  2.8G  2.8G  50% /<br />
varrun                506M  108K  506M   1% /var/run<br />
varlock               506M     0  506M   0% /var/lock<br />
udev                  506M   72K  506M   1% /dev<br />
devshm                506M  288K  506M   1% /dev/shm<br />
gvfs-fuse-daemon      5.8G  2.8G  2.8G  50% /home/tino/.gvfs<br />
/dev/sda1              21G   17G  3.3G  84% /media/a0<br />
/dev/sda5             9.4G  7.9G  1.5G  85% /media/a1<br />
/dev/sdb1              21G   21G  211M 100% /media/b0<br />
/dev/sdb2              98G   95G  2.9G  98% /media/b1<br />
/dev/sdb3              98G   97G  1.1G  99% /media/b2<br />
/dev/sdb4              82G   81G  1.1G  99% /media/b3<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://kusut.web.id/2008/08/crisis/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
