<?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>Nglangut</title>
	<atom:link href="http://phil.yusenda.or.id/feed/" rel="self" type="application/rss+xml" />
	<link>http://phil.yusenda.or.id</link>
	<description>Segala yang melintas dalam angan yang meronta</description>
	<lastBuildDate>Thu, 23 Feb 2012 10:15:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Installing Fedena 2.2 on Ubuntu Lucid 10.04.4 Server</title>
		<link>http://phil.yusenda.or.id/2012/technomage/installing-fedena-2-2-on-ubuntu-lucid-10-04-4-server/</link>
		<comments>http://phil.yusenda.or.id/2012/technomage/installing-fedena-2-2-on-ubuntu-lucid-10-04-4-server/#comments</comments>
		<pubDate>Thu, 23 Feb 2012 10:15:51 +0000</pubDate>
		<dc:creator>Philip</dc:creator>
				<category><![CDATA[technomage]]></category>

		<guid isPermaLink="false">http://phil.yusenda.or.id/?p=69</guid>
		<description><![CDATA[My school, Campuhan College in Ubud, is in need of a more effective student management software. The school has grown a lot, and hand written excel sheet is not enough anymore. So I tested 2 open source solution available, SchoolTool and Fedena. Due to Zope&#8217;s dependency hell, I failed to install SchoolTool. Even adding SchoolTool [...]]]></description>
			<content:encoded><![CDATA[<p>My school, <a href="http://campuhancollege.com">Campuhan College</a> in Ubud, is in need of a more effective student management software. The school has grown a lot, and hand written excel sheet is not enough anymore.</p>
<p>So I tested 2 open source solution available, <a href="http://www.schooltool.org">SchoolTool</a> and <a href="http://www.projectfedena.org">Fedena</a>. </p>
<p>Due to Zope&#8217;s dependency hell, I failed to install SchoolTool. Even adding SchoolTool PPA does not help, since the specifically recommended to upgrade Ubuntu to the latest. Since I believe that servers should run LTS versions instead of the shorter support version, this solution does not work for me.</p>
<p>Next come Fedena.</p>
<p><span id="more-69"></span></p>
<p>Fedena runs on Ruby on Rails, so I need to add Rubygems PPA in order to get the latest Rubygems:</p>
<p><code></p>
<p>sudo add-apt-repository ppa:maco.m/ruby</p>
<p>sudo apt-get update</p>
<p></code></p>
<p>Next, install all the dependencies.</p>
<p><code></p>
<p>sudo apt-get install irb libopenssl-ruby libreadline-ruby rdoc ri ruby ruby-dev build-essential libmysqlclient-dev mysql-server rubygems wkhtml2pdf</p>
<p></code></p>
<p>Do remember the mysql password you set during this step, it is required later on.</p>
<p>Then, deal with the gems</p>
<p><code></p>
<p>sudo gem install rails -v 2.3.5</p>
<p>sudo gem install declarative_authorization -v 0.5.1"</p>
<p>sudo gem install searchlogic -v 2.4.27"</p>
<p>sudo gem install i18n -v 0.4.2"</p>
<p></code></p>
<p>There&#8217;s a bit of snag when the incompatibility with rake version >> .0.9 rear up.</p>
<p>To deal with this, we need to to this:</p>
<p><code></p>
<p>sudo gem install rake -v 0.8.7</p>
<p>sudo ln -s /var/lib/gems/1.8/gems/rake-0.8.7/bin/rake /usr/bin/rake</p>
<p></code></p>
<p>Download Fedena source code from GitHub. Extract the downloaded .zip archive to a convenient location where you would be running fedena . Let us say we extracted it to a directory named fedena in my home(~) directory.</p>
<p><code></p>
<p>wget -c http://projectfedena.org/download/fedena-github</p>
<p>unzip [name_of_file_downloaded].zip</p>
<p>mv [extracted_directory_name] fedena</p>
<p></code></p>
<p>Open the file database.yml in the config folder of the fedena source.</p>
<p><code></p>
<p>cd fedena</p>
<p>sudo nano config/database.yml</p>
<p></code></p>
<p>Change the following details:</p>
<p>database: fedena &#8211; The name of the database you want to use for fedena</p>
<p>username: root &#8211; Mysql username for fedena</p>
<p>password: mypass &#8211; The password for the above mysql user </p>
<p>Now we set up Fedena databases. From the Fedena source directory in terminal run,</p>
<p><code></p>
<p>rake db:create</p>
<p>rake db:migrate</p>
<p></code></p>
<p>There will be a lot of warning error at this point, ignore it.</p>
<p>Change permissions for scripts</p>
<p>From the same directory grant executable permissions for the files in script directory by,</p>
<p><code></p>
<p>chmod +x script/*</p>
<p></code></p>
<p>Run the inbuilt server</p>
<p>If everything went fine till now, you are ready to run fedena server by running the following from fedena source folder</p>
<p><code></p>
<p>script/server</p>
<p></code></p>
<p>if it runs, then</p>
<p><code></p>
<p>sudo nano /usr/bin/fedena-server</p>
<p></code></p>
<p>fill it with:</p>
<p><code></p>
<p>#########</p>
<p>#!/bin/bash</p>
<p>cd /home/karuna/fedena/fedena-2.2</p>
<p>script/server -d</p>
<p>#######</p>
<p></code></p>
<p>To start at boot , add</p>
<p><code></p>
<p>sudo ln -s /usr/bin/fedena-server /etc/init.d/fedena-server</p>
<p>sudo ln -s /etc/init.d/fedena-server /etc/rc2.d/S20fedena-server</p>
<p>sudo ln -s /etc/init.d/fedena-server /etc/rc3.d/S20fedena-server</p>
<p>sudo ln -s /etc/init.d/fedena-server /etc/rc4.d/S20fedena-server</p>
<p>sudo ln -s /etc/init.d/fedena-server /etc/rc5.d/S20fedena-server</p>
<p></code></p>
<p>That&#8217;s it!<br />
Fedena is running happily, ready to be tested out !</p>
]]></content:encoded>
			<wfw:commentRss>http://phil.yusenda.or.id/2012/technomage/installing-fedena-2-2-on-ubuntu-lucid-10-04-4-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On Reputation and Honor</title>
		<link>http://phil.yusenda.or.id/2012/42/on-reputation-and-honor/</link>
		<comments>http://phil.yusenda.or.id/2012/42/on-reputation-and-honor/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 09:29:17 +0000</pubDate>
		<dc:creator>Philip</dc:creator>
				<category><![CDATA[42]]></category>
		<category><![CDATA[wisecrack]]></category>
		<category><![CDATA[baen books]]></category>
		<category><![CDATA[miles vorkosigan]]></category>

		<guid isPermaLink="false">http://phil.yusenda.or.id/?p=64</guid>
		<description><![CDATA[&#8220;Reputation is what other people know about you. Honor is what you know about yourself. The friction tends to arise when the two are not the same. There is no more hollow feeling than to stand with your honor shattered at your feet while soaring public reputation wraps you in rewards. That&#8217;s soul-destroying. The other [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;Reputation is what other people know about you. Honor is what you know about yourself. The friction tends to arise when the two are not the same. There is no more hollow feeling than to stand with your honor shattered at your feet while soaring public reputation wraps you in rewards. That&#8217;s soul-destroying. The other way around is merely very, very irritating.&#8221;<br />
&#8220;Can I offer you some consoling reflections?<br />
First, this too shall pass. Despite the undoubted charms of sex, murder, conspiracy, and more sex, people will eventually grow bored with the tale, and some other poor fellow will make some other ghastly public mistake, and their attention will go haring off after the new game.&#8221;<br />
Secondly, given this accusation, no charge against you that&#8217;s less exciting will ruffle anyone&#8217;s sensibilities in the future. The near future, anyway.<br />
Third, there is no thought control—or I&#8217;d certainly have put it to use before this. Trying to shape, or respond to, what every idiot on the street believes—on the basis of little logic and less information—would only serve to drive you mad.&#8221;</p>
<p>Miles stared away for a minute into the middle distance. &#8220;So what you&#8217;re telling me boils down to the same thing Galeni said. I have to stand here and eat this, and smile.&#8221;</p>
<p>&#8220;No,&#8221; said his father, &#8220;you don&#8217;t have to smile. But if you&#8217;re really asking for advice from my accumulated experience, I&#8217;m saying, Guard your honor. Let your reputation fall where it will. And outlive the bastards.&#8221;</p>
<p>Aral and Miles Vorkosigan &#8211; <a href="http://www.baenebooks.com/p-702-miles-in-love.aspx"><em>Miles In Love &#8211; A Civil Campaign </em> &#8211; Lois McMaster Bujold</a></p>
]]></content:encoded>
			<wfw:commentRss>http://phil.yusenda.or.id/2012/42/on-reputation-and-honor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On Avenging, Retribution, and Evil</title>
		<link>http://phil.yusenda.or.id/2011/wisecrack/on-avenging-retribution-and-evil/</link>
		<comments>http://phil.yusenda.or.id/2011/wisecrack/on-avenging-retribution-and-evil/#comments</comments>
		<pubDate>Wed, 09 Nov 2011 08:05:21 +0000</pubDate>
		<dc:creator>Philip</dc:creator>
				<category><![CDATA[wisecrack]]></category>

		<guid isPermaLink="false">http://phil.yusenda.or.id/?p=62</guid>
		<description><![CDATA[Retribution might taste sweet, and she was prepared to admit that sometimes the victims of evil required avengers more than they did simple justice, but that sweet taste was also a deadly poison. A corrosive brew which truly could—and all too often did—eat away the moral distinctions between the avenger and those she punished. Honor [...]]]></description>
			<content:encoded><![CDATA[<p>Retribution might taste sweet, and she was prepared to admit that sometimes the victims of evil required avengers more than they did simple justice, but that sweet taste was also a deadly poison. A corrosive brew which truly could—and all too often did—eat away the moral distinctions between the avenger and those she punished.<br />
Honor Harrington &#8211; <a href="http://www.webscription.net/p-1314-in-fire-forged-worlds-of-honor-v.aspx">&#8220;Let&#8217;s Dance&#8221; in &#8220;In Fire Forged&#8221;</a></p>
<p>“When that happens,” he said, “when there’s no choice but to kill evil, then kill it. It’s your responsibility, your duty, and if you flinch, you fail—not just yourself, but everything important in your life. But if it must be done, if there truly is no choice, then do it because you must, not because you want to, and never, ever exult in the doing. That’s the priceof your soul, Honor—the ability to do what has to be done without turning yourself into the very thing it is that you’re fighting against.”<br />
Alfred Harrington, <a href="http://www.webscription.net/p-1314-in-fire-forged-worlds-of-honor-v.aspx">&#8220;Let&#8217;s Dance&#8221; in &#8220;In Fire Forged&#8221;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://phil.yusenda.or.id/2011/wisecrack/on-avenging-retribution-and-evil/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sungha Jung dan script youtube-dl di Ubuntu Lucid</title>
		<link>http://phil.yusenda.or.id/2010/technomage/sungha-jung-dan-script-youtube-dl-di-ubuntu-lucid/</link>
		<comments>http://phil.yusenda.or.id/2010/technomage/sungha-jung-dan-script-youtube-dl-di-ubuntu-lucid/#comments</comments>
		<pubDate>Sun, 14 Nov 2010 06:48:50 +0000</pubDate>
		<dc:creator>Philip</dc:creator>
				<category><![CDATA[technomage]]></category>

		<guid isPermaLink="false">http://phil.yusenda.or.id/?p=59</guid>
		<description><![CDATA[Gara-gara Iful Spock, aku jadi kecanduan dengerin Sungha Jung, bocah 14 tahun dari Korea Selatan yang permainan gitarnya sudah kelas maestro. Cek di channelnya Sungha Jung di Youtube, ternyata dia sudah posting lebih dari 200 video musiknya. Wah, dengerin yang mana duluan nih? Setelah dipilih-pilih, ada sekitar 30 video yang ingin aku lihat. Masalahnya, kalau [...]]]></description>
			<content:encoded><![CDATA[<p>Gara-gara <a href="http://www.facebook.com/iful.bahri">Iful Spock</a>, aku jadi kecanduan dengerin <a href="http://www.sunghajung.com/">Sungha Jung</a>, bocah 14 tahun dari Korea Selatan yang permainan gitarnya sudah kelas maestro.<br />
Cek di <a href="http://www.youtube.com/user/jwcfree">channelnya Sungha Jung di Youtube</a>, ternyata dia sudah posting lebih dari 200 video musiknya. Wah, dengerin yang mana duluan nih? Setelah dipilih-pilih, ada sekitar 30 video yang ingin aku lihat.<br />
Masalahnya, kalau distreaming satu-satu, bisa 2 hari dengan koneksi di rumah. Tanya ama mbah google, ternyata ada script youtube-dl.<br />
Pertama kucoba yang di repo Ubuntu:<br />
<code><br />
sudo apt-get install youtube-dl<br />
</code><br />
Sesudah terinstall, kucoba dengan salah satu video tadi. Eh ternyata yang ada di repo Ubuntu versi yang sudah agak lama (April 2010), dan Youtube sudah merubah banyak hal sejak April, jadi downloadnya gagal.<br />
<span id="more-59"></span><br />
Ya sudah, kuhapus yang dari repo tadi, dan kuinstall langsung dari <a href="http://rg3.github.com/youtube-dl/">github</a>.<br />
<code><br />
sudo apt-get remove youtube-dl --purge<br />
wget -c https://github.com/rg3/youtube-dl/raw/2010.10.24/youtube-dl --no-check-certificate<br />
chmod +x youtube-dl<br />
sudo cp youtube-dl /usr/bin<br />
</code><br />
OK, script youtube-dl udah siap, sekarang siapkan satu folder khusus untuk download ini.<br />
<code><br />
mkdir 'Videos/music/Sungha-Jung'<br />
cd 'Videos/music/Sungha-Jung'<br />
</code><br />
Trus siapkan daftar link Youtube yang sudah dipilih tadi, masukkan dalam satu file, disini aku pake nama &#8220;todl.txt&#8221;<br />
<code><br />
gedit todl.txt<br />
</code><br />
Sekarang mulai mendownload. Berhubung fakir spes dan benwit, maka aku pilih videonya yang tipe 18 (MP4, AAC, 480&#215;360) sesuai dengan <a href="http://en.wikipedia.org/wiki/YouTube#Quality_and_codecs">daftar format Youtube</a><br />
Perintahnya seperti ini:<br />
<code><br />
youtube-dl -f 18 -o '%(stitle)s.%(ext)s'  -a todl.txt -c<br />
</code><br />
Yes!<br />
Ditinggal tidur, dan paginya playlist Sungha Jung sudah siap!</p>
]]></content:encoded>
			<wfw:commentRss>http://phil.yusenda.or.id/2010/technomage/sungha-jung-dan-script-youtube-dl-di-ubuntu-lucid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Penipuan episode 2</title>
		<link>http://phil.yusenda.or.id/2010/technomage/penipuan-episode-2/</link>
		<comments>http://phil.yusenda.or.id/2010/technomage/penipuan-episode-2/#comments</comments>
		<pubDate>Wed, 29 Sep 2010 12:44:49 +0000</pubDate>
		<dc:creator>Philip</dc:creator>
				<category><![CDATA[technomage]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[timor]]></category>
		<category><![CDATA[UN]]></category>

		<guid isPermaLink="false">http://phil.yusenda.or.id/?p=57</guid>
		<description><![CDATA[Baru kemarin kuposting email aslinya, eh si penipu yang berkedok sebagai &#8220;John Raymond&#8221; mengirim lagi email yang sama persis padaku. Bedanya, dia mengirim menggunakan SMTP server yang berbeda, dan kali ini &#8220;To:&#8221; nya langsung ditujukan padaku. Ancene jaman edan! Ini emailnya: Delivered-To: p*****@s*******.or.id Received: by 10.220.185.201 with SMTP id cp9cs76038vcb; Wed, 29 Sep 2010 00:58:42 [...]]]></description>
			<content:encoded><![CDATA[<p>Baru kemarin kuposting email aslinya, eh si penipu yang berkedok sebagai &#8220;John Raymond&#8221; mengirim lagi email yang sama persis padaku.<br />
Bedanya, dia mengirim menggunakan SMTP server yang berbeda, dan kali ini &#8220;To:&#8221; nya langsung ditujukan padaku.</p>
<p>Ancene jaman edan!</p>
<p>Ini emailnya:</p>
<blockquote>
<p>Delivered-To: p*****@s*******.or.id<br />
Received: by 10.220.185.201 with SMTP id cp9cs76038vcb;<br />
        Wed, 29 Sep 2010 00:58:42 -0700 (PDT)<br />
Received: by 10.114.190.20 with SMTP id n20mr1445843waf.126.1285747120715;<br />
        Wed, 29 Sep 2010 00:58:40 -0700 (PDT)<br />
Return-Path: <Johnraymond@un.org><br />
Received: from un2378.com ([202.179.186.6])<br />
        by mx.google.com with SMTP id b20si19019191wam.81.2010.09.29.00.58.39;<br />
        Wed, 29 Sep 2010 00:58:40 -0700 (PDT)<br />
Received-SPF: fail (google.com: domain of Johnraymond@un.org does not designate 202.179.186.6 as permitted sender) client-ip=202.179.186.6;<br />
Authentication-Results: mx.google.com; spf=hardfail (google.com: domain of Johnraymond@un.org does not designate 202.179.186.6 as permitted sender) smtp.mail=Johnraymond@un.org<br />
Message-Id: <4ca2f1b0.1463730a.4b73.1122SMTPIN_ADDED@mx.google.com><br />
From: Mr.John Raymond <Johnraymond@un.org><br />
To: p*****@s*******.or.id<br />
Reply-To: johnray@blumail.org<br />
Subject: invitation<br />
Date: Wed, 29 Sep 2010 14:58:30 +0700<br />
MIME-Version: 1.0<br />
Content-Type: multipart/mixed; boundary=&#8221;cff5904e-3701-4e44-acb1-4fae4959bbf5&#8243;</p>
<p>This is a multi-part message in MIME format<br />
&#8211;cff5904e-3701-4e44-acb1-4fae4959bbf5<br />
Content-Type: text/plain; charset=iso-8859-1<br />
Content-Transfer-Encoding: quoted-printable</p>
<p>This email message is addressed to you and contains privileged information =<br />
intended for your urgent consideration. It is very important you reply =<br />
immediately to confirm to me that this letter have been received by you.<br />
I am Mr.John Raymond, staff member of United Nations Department for Delivery =<br />
Services,attached to United Integrated Mission in Timore -Leste(UNMIT). My =<br />
Department  is responsible for providing operational support and oversight =<br />
for the security of diplomatic baggages to ensure efficient delivery of =<br />
materials for United Nations mission in Timore -Leste.<br />
I want to use this medium to draw your attention to an unclaimed trunk box at =<br />
our diplomatic  vault in Jakarta.This box contains Five Million($5M) Dollars  =<br />
and was delivered to Indonesia on behalf of a highly placed politician from =<br />
Timore -Leste.This box was to be claimed by a foreign beneficiary to be named =<br />
after the box arrived in Jakarta.<br />
Recently,during  routine analysis of the registry of the department,i =<br />
discovered that the box was yet to be claimed and politician failed to =<br />
provide the name of the beneficiary in Indonesia.The man died from a heart =<br />
attack he sufferred after learning about the departure of the box.<br />
Consequently, nobody in his family knew about this bulk of cash which was =<br />
secured at a diplomatic vault in Indonesia.It is in this light that i write =<br />
to request to present you as the beneficiary of this box in Indonesia.<br />
If you want this box delivered to you,contact me immediately for information =<br />
about the formalities necessary for submission of your names receiving =<br />
beneficiary. reply: johnray@blumail.org </p>
<p>Yours faithfully,<br />
Mr.John Raymond</p>
<p>&#8211;cff5904e-3701-4e44-acb1-4fae4959bbf5&#8211;</p>
</blockquote>
<p>Kalau begini enaknya dilaporin kemana yah?<br />
Blumail.org ketika di whois, hasilnya :</p>
<blockquote>
<p>Domain ID:D152063372-LROR<br />
Domain Name:BLUMAIL.ORG<br />
Created On:19-Mar-2008 23:33:58 UTC<br />
Last Updated On:13-Jul-2009 00:31:35 UTC<br />
Expiration Date:19-Mar-2011 23:33:58 UTC<br />
Sponsoring Registrar:Network Solutions LLC (R63-LROR)<br />
Status:CLIENT TRANSFER PROHIBITED<br />
Registrant ID:38628359-NSI<br />
Registrant Name:Women with 2020 Vision<br />
Registrant Organization:Women with 2020 Vision<br />
Registrant Street1:309 East 49th<br />
Registrant Street2:#2C<br />
Registrant Street3:<br />
Registrant City:New York<br />
Registrant State/Province:NY<br />
Registrant Postal Code:10017<br />
Registrant Country:US<br />
Registrant Phone:+1.2022368400<br />
Registrant Phone Ext.:<br />
Registrant FAX:<br />
Registrant FAX Ext.:<br />
Registrant Email: womenwith2020vision@gmail.com<br />
Admin ID:38628359-NSI<br />
Admin Name:Women with 2020 Vision<br />
Admin Organization:Women with 2020 Vision<br />
Admin Street1:309 East 49th<br />
Admin Street2:#2C<br />
Admin Street3:<br />
Admin City:New York<br />
Admin State/Province:NY<br />
Admin Postal Code:10017<br />
Admin Country:US<br />
Admin Phone:+1.2022368400<br />
Admin Phone Ext.:<br />
Admin FAX:<br />
Admin FAX Ext.:<br />
Admin Email: womenwith2020vision@gmail.com<br />
Tech ID:38628359-NSI<br />
Tech Name:Women with 2020 Vision<br />
Tech Organization:Women with 2020 Vision<br />
Tech Street1:309 East 49th<br />
Tech Street2:#2C<br />
Tech Street3:<br />
Tech City:New York<br />
Tech State/Province:NY<br />
Tech Postal Code:10017<br />
Tech Country:US<br />
Tech Phone:+1.2022368400<br />
Tech Phone Ext.:<br />
Tech FAX:<br />
Tech FAX Ext.:<br />
Tech Email: womenwith2020vision@gmail.com<br />
Name Server:NS21.WORLDNIC.COM<br />
Name Server:NS22.WORLDNIC.COM<br />
Name Server:<br />
Name Server:<br />
Name Server:<br />
Name Server:<br />
Name Server:<br />
Name Server:<br />
Name Server:<br />
Name Server:<br />
Name Server:<br />
Name Server:<br />
Name Server:<br />
DNSSEC:Unsigned</p>
</blockquote>
<p>Hmm, apa dilaporkan ke alamat itu aja yah?<br />
Coba ah&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://phil.yusenda.or.id/2010/technomage/penipuan-episode-2/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Penipuan (lagi-lagi)</title>
		<link>http://phil.yusenda.or.id/2010/humanitarian-worker/penipuan-lagi-lagi/</link>
		<comments>http://phil.yusenda.or.id/2010/humanitarian-worker/penipuan-lagi-lagi/#comments</comments>
		<pubDate>Mon, 27 Sep 2010 06:37:53 +0000</pubDate>
		<dc:creator>Philip</dc:creator>
				<category><![CDATA[humanitarian worker]]></category>
		<category><![CDATA[technomage]]></category>

		<guid isPermaLink="false">http://phil.yusenda.or.id/?p=53</guid>
		<description><![CDATA[Makin banyak media komunikasi, makin banyak aja cara orang untuk menipu. Baru seminggu lalu ibuku menerima sms yang bunyinya, Ini nomer baru mama. Tolong isikan pulsa. Cepat yah. Urusan penting nih! Jelas ibuku cuman senyum aja, soalnya kayaknya pulsa surga &#8211; dunia agak berbeda Kalau yang contoh di bawah ini via email, pura-puranya jadi orang [...]]]></description>
			<content:encoded><![CDATA[<p>Makin banyak media komunikasi, makin banyak aja cara orang untuk menipu.<br />
Baru seminggu lalu ibuku menerima sms yang bunyinya, </p>
<blockquote><p>Ini nomer baru mama. Tolong isikan pulsa. Cepat yah. Urusan penting nih!</p></blockquote>
<p>Jelas ibuku cuman senyum aja, soalnya kayaknya pulsa surga &#8211; dunia agak berbeda <img src='http://phil.yusenda.or.id/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  </p>
<p>Kalau yang contoh di bawah ini via email, pura-puranya jadi orang UN :</p>
<blockquote><p>
&#8212;&#8212;&#8211;<br />
Delivered-To: p*****@********.or.id<br />
Received: by 10.220.182.201 with SMTP id cd9cs210335vcb;<br />
Sat, 4 Sep 2010 09:52:35 -0700 (PDT)<br />
Received: by 10.114.53.1 with SMTP id b1mr937652waa.107.1283619154327;<br />
Sat, 04 Sep 2010 09:52:34 -0700 (PDT)<br />
Return-Path: <johnraymond@un.org><br />
Received: from mail1.bpfk.gov.my ([218.208.34.245])<br />
by mx.google.com with SMTP id w22si7515412wah.32.2010.09.04.09.52.32;<br />
Sat, 04 Sep 2010 09:52:34 -0700 (PDT)<br />
Received-SPF: fail (google.com: domain of johnraymond@un.org does not designate 218.208.34.245 as permitted sender) client-ip=218.208.34.245;<br />
Authentication-Results: mx.google.com; spf=hardfail (google.com: domain of johnraymond@un.org does not designate 218.208.34.245 as permitted sender) smtp.mail=johnraymond@un.org<br />
Received: from localhost (localhost.localdomain [127.0.0.1])<br />
by mail1.bpfk.gov.my (Postfix) with ESMTP id 34C3E2778F99;<br />
Sun, 5 Sep 2010 00:55:16 +0800 (MYT)<br />
X-Virus-Scanned: amavisd-new at bpfk.gov.my<br />
Received: from mail1.bpfk.gov.my ([127.0.0.1])<br />
by localhost (mail1.bpfk.gov.my [127.0.0.1]) (amavisd-new, port 10024)<br />
with ESMTP id iQvVn1wNTdA4; Sun, 5 Sep 2010 00:55:15 +0800 (MYT)<br />
Received: from User (unknown [202.179.186.98])<br />
by mail1.bpfk.gov.my (Postfix) with ESMTP id 5C3E72778F8E;<br />
Sun, 5 Sep 2010 00:55:11 +0800 (MYT)<br />
Reply-To: <johnray@blumail.org><br />
From: &#8220;John Raymond&#8221;<johnraymond@un.org><br />
Subject: invitation<br />
Date: Sat, 4 Sep 2010 23:51:27 +0700<br />
MIME-Version: 1.0<br />
Content-Type: text/plain;<br />
charset=&#8221;Windows-1251&#8243;<br />
Content-Transfer-Encoding: 7bit<br />
X-Priority: 3<br />
X-MSMail-Priority: Normal<br />
X-Mailer: Microsoft Outlook Express 6.00.2600.0000<br />
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000<br />
Message-Id: <20100904165511.5C3E72778F8E@mail1.bpfk.gov.my><br />
To: undisclosed-recipients:;</p>
<p>I am Mr.John Raymond, staff member of United Nations Department for Delivery Services,attached to United Integrated Mission in Timore –Leste(UNMIT). My Department is responsible for providing operational support and oversight for the security of diplomatic baggages to ensure efficient delivery of funds for United Nations mission in Timore –Leste.<br />
I want to use this medium to draw your attention to an unclaimed trunk box at our diplomatic vault in Jakarta.This box contains Five Million($5M) Dollars and was delivered to Indonesia on behalf of a highly placed politician from Timore –Leste.This box was to be claimed by a foreign beneficiary to be named after the box arrived in Jakarta.<br />
Recently,during routine analysis of the registry of the department,i discovered that the box was yet to be claimed and politician failed to provide the name of the beneficiary in Indonesia.The man died from a heart attack he sufferred after learning about the departure of the box.<br />
Consequently, nobody in his family knew about this bulk of cash which was secured at a diplomatic vault in Indonesia.It is in this light that i write to request to present you as the beneficiary of this box in Indonesia. I propose to share these fund equally with you and to receive more information about this offer,reply: johnray@blumail.org </p>
<p>Yours faithfully,<br />
Mr.John Raymond</p>
<p>&#8212;&#8212;&#8211;
</p></blockquote>
<p>Dear Mr John Raymond, you&#8217;ve been reported to UN Security !</p>
]]></content:encoded>
			<wfw:commentRss>http://phil.yusenda.or.id/2010/humanitarian-worker/penipuan-lagi-lagi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VirtualBox : No networking on copied/imported guests</title>
		<link>http://phil.yusenda.or.id/2010/technomage/virtualbox-no-networking-on-copiedimported-guests/</link>
		<comments>http://phil.yusenda.or.id/2010/technomage/virtualbox-no-networking-on-copiedimported-guests/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 08:05:13 +0000</pubDate>
		<dc:creator>Philip</dc:creator>
				<category><![CDATA[technomage]]></category>

		<guid isPermaLink="false">http://phil.yusenda.or.id/?p=50</guid>
		<description><![CDATA[Beberapa minggu ini lagi sibuk ngoprek website dengan MovableType yang jalan di Apache di salah satu virtual machine di VirtualBox. Kesulitan timbul ketika aku menyalin virtual machine ke VirtualBox milik klien. Ini langkah yang kulakukan: 1. copy file *.vdi dari /home/user/.VirtualBox/HardDisks ke laptop klien, di folder yang sama 2. Buat virtual machine baru di klien, [...]]]></description>
			<content:encoded><![CDATA[<p>Beberapa minggu ini lagi sibuk ngoprek website dengan <a href="http://movabletype.org">MovableType</a> yang jalan di Apache di salah satu virtual machine di VirtualBox.</p>
<p>Kesulitan timbul ketika aku menyalin virtual machine ke VirtualBox milik klien.<br />
Ini langkah yang kulakukan:<br />
1. copy file *.vdi dari /home/<em>user</em>/.VirtualBox/HardDisks ke laptop klien, di folder yang sama<br />
2. Buat virtual machine baru di klien, arahkan harddisknya ke file *.vdi yang disalin tadi<br />
3. Pastikan setting virtual machine yang baru sama dengan yang lama<br />
4. Boot virtual machine</p>
<p>Setelah virtual machine di laptop klien ku <em>boot</em> ternyata tidak ada network interface yang terdeteksi.<br />
Hasil ifconfig menunjukkan hanya lo saja yang up<br />
Perintah :<br />
<code>sudo ifconfig eth0 up</code><br />
malah menghasilkan error yang menyatakan interface tidak ditemukan</p>
<p>Googling dikit, ternyata ketemu ini: <a href="http://forums.virtualbox.org/viewtopic.php?f=7&#038;t=24383">No networking on copied/imported guests</a></p>
<p>Ternyata, virtual machine yang jalan di bawah VirtualBox (aku pakai Ubuntu Hardy 8.04.3 JEOS) dikunci network interfacesnya ke MAC Address tertentu saja di  /etc/udev/rules.d/70-persistent-net.rules . Gejalanya, kalau dijalankan :<br />
<code>dmesg | grep udev</code><br />
pasti ada baris macam ini:<br />
<code>udevd: renamed network interface eth0 to eth1</code></p>
<p>Jadi tinggal disamakan saja MAC Address yang dipakai di virtual machine di laptopku dengan yang di laptop klien, dan apache pun jalan lagi dengan lancar <img src='http://phil.yusenda.or.id/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://phil.yusenda.or.id/2010/technomage/virtualbox-no-networking-on-copiedimported-guests/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Wisata Pasar Tradisional</title>
		<link>http://phil.yusenda.or.id/2009/potpourri/wisata-pasar-tradisional/</link>
		<comments>http://phil.yusenda.or.id/2009/potpourri/wisata-pasar-tradisional/#comments</comments>
		<pubDate>Sat, 19 Sep 2009 07:57:32 +0000</pubDate>
		<dc:creator>Philip</dc:creator>
				<category><![CDATA[potpourri]]></category>

		<guid isPermaLink="false">http://phil.yusenda.or.id/?p=48</guid>
		<description><![CDATA[Seorang tour guide sedang menerangkan ke sekelompok turis Prancis tentang penggunaan daun salam dalam masakan Bali, sambil memetik dan meremas daun salam dari jualan salah satu pedagang. ]]></description>
			<content:encoded><![CDATA[<blockquote><p>pak choy, buncis, kacang panjang, sawi hijau&#8230;</p></blockquote>
<p>Pagi ini, seperti biasa aku bertugas belanja sayur ke pasar Ubud. FYI, yang kalian para turis lihat di siang hari adalah versi bersihnya, dimana yang dijual adalah barang kerajinan. Tepat di lapak yang sama, pagi hari (sebelum jam 09:00), pasar Ubud adalah pasar tradisional <em><strong>biasa</strong></em>, yang penuh sayur mayur, ikan, ayam, dan riuh rendahnya transaksi jual beli. Berbagai sayuran dijual disana, bahkan sayur mayur yang kurang umum di pasar tradisional lain macam bit, basil, dan selada merah, karena pasar Ubud juga melayani komunitas <em>expatriate</em> yang cukup besar.</p>
<blockquote><p>ikan tuna, pukis, lemper, telur ayam kampung&#8230;</p></blockquote>
<p>Pagi ini ada pemandangan yang agak lain. Seorang tour guide sedang menerangkan ke sekelompok turis Prancis tentang penggunaan daun salam dalam masakan Bali, sambil memetik dan meremas daun salam dari jualan salah satu pedagang. Di pojok sana, serombongan turis Taiwan terkagum-kagum melihat kecepatan seorang pedagang memotong ayam (atau mereka mengagumi tingkat kekotoran wilayah sekitarnya?). Di sudut sana, dua anak Jepang lari dari rombongannya dan sibuk mencolek-colek buah nangka.</p>
<blockquote><p>nangka, pisang, jambu, kecambah, bawang bombay&#8230;</p></blockquote>
<p>Pemandangan ini membuatku bertanya: apa menariknya pasar tradisional? Pasarnya becek, kotor, sumpek, dan riuh. Bagaimana bisa sampai ada biro wisata yang punya ide membuat paket macam ini?</p>
<blockquote><p>paduan suara ayam, teriakan menawarkan dagangan, bel truk sampah&#8230;</p></blockquote>
<p>Apa pendapatmu? </p>
]]></content:encoded>
			<wfw:commentRss>http://phil.yusenda.or.id/2009/potpourri/wisata-pasar-tradisional/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ngoprek MovableType: ImageDriver</title>
		<link>http://phil.yusenda.or.id/2009/technomage/ngoprek-movabletype-imagedriver/</link>
		<comments>http://phil.yusenda.or.id/2009/technomage/ngoprek-movabletype-imagedriver/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 05:13:12 +0000</pubDate>
		<dc:creator>Philip</dc:creator>
				<category><![CDATA[rotary]]></category>
		<category><![CDATA[technomage]]></category>

		<guid isPermaLink="false">http://phil.yusenda.or.id/?p=45</guid>
		<description><![CDATA[Akhirnya berhasil juga mengonlinekan websitenya Rotary Ubud Sunset. Waktu coba login ke enginenya (pake MovableType Open Source) , eh mendadak muncul warning : Image::Magick is either not present on your server or incorrectly configured. Due to that, you will not be able to use Movable Type&#8217;s userpics feature. If you wish to use that feature, [...]]]></description>
			<content:encoded><![CDATA[<p>Akhirnya berhasil juga mengonlinekan <a href="http://www.rotarybaliubudsunset.org">websitenya Rotary Ubud Sunset</a>. Waktu coba login ke enginenya (pake <a href="http://movabletype.org">MovableType Open Source</a>) , eh mendadak muncul warning :</p>
<blockquote><p>Image::Magick is either not present on your server or incorrectly configured. Due to that, you will not be able to use Movable Type&#8217;s userpics feature. If you wish to use that feature, please install Image::Magick or use an alternative image driver.</p>
</blockquote>
<p>Cek kiri-kanan ternyata hosting yang kupakai memang ndak memasang Image::Magick , dan berhubung males berdebat dengan adminnya, maka aku ganti saja image drivernya. Caranya mudah kok, tinggal tambahkan 1 baris ini :</p>
<p><code>ImageDriver GD</code></p>
<p>atau</p>
<p><code>ImageDriver NetPBM</code></p>
<p>di dalam mt-config.cgi .</p>
<p>Beres dah!</p>
<p><em>A thousand more bugs to squash! Fiuh!</em></p>
]]></content:encoded>
			<wfw:commentRss>http://phil.yusenda.or.id/2009/technomage/ngoprek-movabletype-imagedriver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert Video di Ubuntu</title>
		<link>http://phil.yusenda.or.id/2009/technomage/convert-video-di-ubuntu/</link>
		<comments>http://phil.yusenda.or.id/2009/technomage/convert-video-di-ubuntu/#comments</comments>
		<pubDate>Thu, 22 Jan 2009 09:24:16 +0000</pubDate>
		<dc:creator>Philip</dc:creator>
				<category><![CDATA[technomage]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[Youtube]]></category>

		<guid isPermaLink="false">http://phil.yusenda.or.id/?p=37</guid>
		<description><![CDATA[Skenarionya begini: Kolegamu memberikan sebuah file video (katakanlah blabla.avi), codecnya masih uncompressed AVI dengan audio PCM, hasil keluaran Adobe Premiere, besarnya 1,8 GB, lengkapÂ  dengan pesan, &#8220;Mas tolong uploadin ke Youtube yah, buat promosi kita.&#8221; Koneksi kantor pake Speedy Unlimited Office, yg berarti bandwith tidak terlalu lebar, kalau dipaksakan 1,8 GB diupload bisa mampus berhari-hari [...]]]></description>
			<content:encoded><![CDATA[<p>Skenarionya begini:</p>
<p>Kolegamu memberikan sebuah file video (katakanlah blabla.avi), codecnya masih uncompressed AVI dengan audio PCM, hasil keluaran Adobe Premiere, besarnya 1,8 GB, lengkapÂ  dengan pesan, &#8220;Mas tolong uploadin ke Youtube yah, buat promosi kita.&#8221;</p>
<p>Koneksi kantor pake Speedy Unlimited Office, yg berarti bandwith tidak terlalu lebar, kalau dipaksakan 1,8 GB diupload bisa mampus berhari-hari koneksinya. Plus, Youtube membatasi besar file hanya maksimal 1 GB. Berarti file video ini harus dikompresi habis-habisan, dan codecnya harus disesuaikan dengan ketentuan Youtube (H264/AAC)</p>
<p>Bagaimana caranya?</p>
<p><span id="more-37"></span></p>
<p>Asumsi : OS yang kau gunakan adalah Ubuntu Intrepid</p>
<p>Langkah yg perlu dilakukan (dimodifikasi dari <a href="http://www.brad-x.com/2007/05/19/yet-another-linuxnix-video-h264-howto">sini</a>:</p>
<ol>
<li>Pastikan paket yang diperlukan sudah terpasang</li>
<pre>sudo apt-get install mencoder mplayer faac gpac mpeg4ip-server x264 libdvdread libdvdcss</pre>
<li>Pisahkan aliran suara dari berkas aslinya, dan ubah ke format AAC. Perhatikan parameter -C 2 , ini untuk aliran suara 2 kanal (stereo), sesuaikan dengan jumlah kanal pada berkas asli</li>
<pre>mplayer -vc null -vo null -ao pcm -benchmark blabla.avi</pre>
<pre>faac --mpeg-vers 4 -q 100 -P -R 48000 -C 2 -I 5,6 -X audiodump.wav -o audio.aac</pre>
<li>Apabila videonya perlu dicropping, maka cari batas-batas peng-cropping-annya dengan perintah berikut:</li>
<pre>mplayer -vo null -vf cropdetect blabla.avi</pre>
<p>Hasil dari perintah di atas adalah ukuran pemotongan video yang terdeteksi. Hati-hati, nilai terdeteksi bisa bervariasi karena fluktuasi ukuran video. Ambillah nilai terbesar (pemotongan paling sedikit) agar tidak ada bagian video yang terbabat secara tidak sengaja. Nilai terdeteksi tersebut dimasukkan ke -vf crop=xxx:xxx:xx:xx  dalam perintah di bawah. Apabila tidak diperlukan pemotongan, hapus paramater -vf crop=xxx:xxx:xx:xx .</p>
<li>Berikutnya, pisahkan aliran gambar (video stream) dalam 2 pass, convert ke H264</li>
<pre>mencoder -nosound -of rawvideo -ovc x264 -vf crop=xxx:xxx:xx:xx,scale,harddup -x264encopts bitrate=1000:frameref=6:analyse=all:me=umh:subme=7:trellis=2:bframes=1:subq=7:brdo:mixed_refs:weight_b:bime:no_fast_pskip:direct_pred=auto:mixed_refs:nr=200:threads=auto:turbo=2:pass=1 -noskip blabla.avi -o /dev/null</pre>
<pre>mencoder -nosound -of rawvideo -ovc x264 -vf crop=xxx:xxx:xx:xx,scale,harddup -x264encopts bitrate=1000:frameref=6:analyse=all:me=umh:subme=7:trellis=2:bframes=1:subq=7:brdo:mixed_refs:weight_b:bime:no_fast_pskip:direct_pred=auto:mixed_refs:nr=200:threads=auto:pass=2 -noskip blabla.avi -o movie.264</pre>
<li>Lalu convert videonya ke container mp4. Perhatikan parameter -rate 25 , ubahlah menyesuaikan dengan parameter video aslinya (kebanyakan video PAL menggunakan frame rate 25)</li>
<pre>mp4creator -rate 25 -a movie.264 movie.mp4</pre>
<li>Sekarang satukan aliran suara dan gambarnya</li>
<pre>MP4Box -add audio.aac movie.mp4</pre>
</ol>
<p>Selesai!<br />
Tinggal mengupload movie.mp4 ke Youtube!</p>
<p>Fiuh!</p>
]]></content:encoded>
			<wfw:commentRss>http://phil.yusenda.or.id/2009/technomage/convert-video-di-ubuntu/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

