<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Bakawan Web Design</title>
	
	<link>http://www.bakawan.com/log</link>
	<description>Bandung Blogger</description>
	<lastBuildDate>Thu, 18 Feb 2010 17:54:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/bakawan/wkTg" /><feedburner:info uri="bakawan/wktg" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/3.0/</creativeCommons:license><image><link>http://creativecommons.org/licenses/by-nc-nd/3.0/</link><url>http://creativecommons.org/images/public/somerights20.gif</url><title>Some Rights Reserved</title></image><feedburner:emailServiceId>bakawan/wkTg</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Howto Wordpress Redirect based on Post ID</title>
		<link>http://feedproxy.google.com/~r/bakawan/wkTg/~3/lFD-BYB0PTo/</link>
		<comments>http://www.bakawan.com/log/howto-wordpress-redirect-based-on-post-id/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 17:54:31 +0000</pubDate>
		<dc:creator>uwiuw</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.bakawan.com/log/?p=2775</guid>
		<description><![CDATA[This is another stupid custom i have create for my self. Sometimes you now the feeling when you feel the urge to create something just for you self. It&#8217;s not for any client or web project. Just for yourself and the ultimate goal for all this bla bli blu just to make you feel live [...]]]></description>
			<content:encoded><![CDATA[<p>This is another stupid custom i have create for my self. Sometimes you now the feeling when you feel the urge to create something just for you self. It&#8217;s not for any client or web project. Just for yourself and the ultimate goal for all this bla bli blu just to make you feel live sometimes. Maybe this what the devil feel when he try to be god. Maybe this is the urge before any great scientist scream  <strong>uereka!</strong>. </p>
<p><P><strong>WHAT</strong> : This code just create strange input box in the head of any theme (you can custom its css appearance as you please ). <br/><strong>HOW </strong> :  The input box accept non negative number of any post ID. When you push submit, then you will be redirect to post. <br/><strong>WHY</strong> : i don&#8217;t know. But i have problem with my own blog where i often change its permalink rule and make any post[guid] information has no use. So, the last thing will never change it any wordpress post is its ID</p>
<p>function baka_show_form_redirect() {<br />
  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$form_search =&#8217;&lt;form action=&quot;&quot; method=&quot;post&quot; name=&quot;redirect_to_post_id&quot;  class=&quot;description&quot;  style=&quot;color:#fff;font-size:10px;text-align:left;position:fixed;top:40px;&quot;&gt;<br />
  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;h4&gt;Theme Feature&lt;/h4&gt;<br />
  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;ol&gt; <br />
  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;label for=&quot;post_id&quot; title=&quot;Put numerical value of existing post ID&quot;&gt;Redirect to ID (numerical) : &lt;/label&gt;<br />
  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;input name=&quot;post_id&quot; type=&quot;text&quot; maxlength=&quot;4&quot; class=&quot;description&quot; <br />
  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;style=&quot;width:30px;display:inline;border:none;color:#000&quot; /&gt;&lt;/li&gt;<br />
  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/ol&gt;<br />
  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;input name=&quot;_redirect_to&quot; type=&quot;hidden&quot; value=&quot;&#8217; . get_permalink() . &#8216;&quot; /&gt;<br />
  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/form&gt;&#8217;; </p>
<p>  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;echo $form_search;<br />
  }</p>
<p>function baka_validasi_post_id() { <br />
  &nbsp;&nbsp;&nbsp;&nbsp;if( $_POST[ 'post_id' ] &amp;&amp; $_POST[ 'post_id' ] != &#8221; ) {<br />
  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$post_id = $_POST[ 'post_id' ];<br />
  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (absint($post_id)) { //must be integer and not negative </p>
<p>  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$url = get_permalink($post_id);</p>
<p>  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if ($url) { <br />
  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;wp_redirect($url); echo &quot;&amp;nbsp;&quot;;<br />
  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} else {<br />
  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$_redirect_to = $_POST[ '_redirect_to' ];<br />
  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;wp_die(&quot;ID can not be found &#8230; &lt;a href =&#8217;&quot; . $_redirect_to . &quot;&#8217;&gt;Back&lt;/a&gt;&quot;);<br />
  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />
  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />
  &nbsp;&nbsp;} <br />
  }</p>
<p>add_action(&#8216;wp_head&#8217;, &#8216;baka_show_form_redirect&#8217;); <br />
add_action(&#8216;init&#8217;, &#8216;baka_validasi_post_id&#8217;); <br />
  ?&gt;</p>
<img src="http://feeds.feedburner.com/~r/bakawan/wkTg/~4/lFD-BYB0PTo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bakawan.com/log/howto-wordpress-redirect-based-on-post-id/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.bakawan.com/log/howto-wordpress-redirect-based-on-post-id/</feedburner:origLink></item>
		<item>
		<title>Howto Show All Post on Wordpress MU Blogs</title>
		<link>http://feedproxy.google.com/~r/bakawan/wkTg/~3/_XGjcfCw94o/</link>
		<comments>http://www.bakawan.com/log/howto-show-all-post-on-wordpress-mu-blogs/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 09:16:18 +0000</pubDate>
		<dc:creator>uwiuw</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Template Page]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress MU]]></category>

		<guid isPermaLink="false">http://www.bakawan.com/log/?p=2768</guid>
		<description><![CDATA[I have create wordpress mu in my localhost. I put there all my code / work project / tutorial. I seperate them into several sub domain blog. Thanks to wordpress MU, i can make them on single domain. But sometimes, i have problem seek the information i need. So i create this code to help [...]]]></description>
			<content:encoded><![CDATA[<p>I have create wordpress mu in my localhost. I put there all my code / work project / tutorial. I seperate them into several sub domain blog. Thanks to wordpress MU, i can make them on single domain. But sometimes, i have problem seek the information i need. So i create this code to help me populate all post in the blog. </p>
<p>You have to put this on a <a href ="http://codex.wordpress.org/Pages#Page_Templates">template page</a> in your theme.</p>
<p>This code has ability to sort post based on post_title. Thanks to msort function which has ability to sort array. By the way, msort function from <a href ="http://php.net/manual/en/function.sort.php">php.net</a> and <a href ="http://blog.jachim.be/2009/09/php-msort-multidimensional-array-sort/">jachim</a>.</p>
<p>&nbsp;</p>
<p>//sorting double array based on key alphabet<br />
function msort($array, $id=&quot;id&quot;, $sort_ascending=true) {<br />
&nbsp;&nbsp;&nbsp;$temp_array = array();<br />&nbsp;&nbsp;&nbsp;while(count($array)&gt;0) {<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$lowest_id = 0;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$index=0;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; foreach ($array as $item) {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (isset($item[$id])) {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if ($array[$lowest_id][$id]) {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (strtolower($item[$id]) &lt; strtolower($array[$lowest_id][$id])) {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$lowest_id = $index;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$index++;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$temp_array[] = $array[$lowest_id];<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$array = array_merge(array_slice($array, 0,$lowest_id), array_slice($array, $lowest_id+1));<br />&nbsp; }</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if ($sort_ascending) {<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return $temp_array;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} else {<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return array_reverse($temp_array);<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />
}</p>
<p>&nbsp;</p>
<p>function get_blog_post_mimic ($blog_id) {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;global $wpdb; </p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$table_blog_id = &quot;{$wpdb-&gt;base_prefix}{$blog_id}_posts &quot;;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$query = &quot;SELECT guid, post_title FROM &quot; . $table_blog_id . &quot; WHERE post_type = &#8216;post&#8217; ORDER BY post_title&quot;; </p>
<p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$posts = $wpdb-&gt;get_results($query, ARRAY_A ); <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return $posts;</p>
<p>}</p>
<p>&nbsp;</p>
<p>/*	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;FOR : &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;merge all query result of existing blog in wpmu database<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;WHY : &nbsp;&nbsp;&nbsp;To post all posting into one blog<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;HOW :&nbsp;&nbsp;&nbsp; get all blog id, ilumerate $listblogs, <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;get array contain all post on each blog<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;merge each array into single array ($allpost)<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;sort $allpost based on post_title array key<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;show all single post and its permalink<br />
*/<br />
function show_all_post_in_WPMU($do_sorting = FALSE){<br />
&nbsp;&nbsp;&nbsp;global $wpdb; </p>
<p>&nbsp;&nbsp;&nbsp;$listblogs = get_blog_list(0,0);<br />
&nbsp;&nbsp;&nbsp;$listblogs = msort( $listblogs, &quot;blog_id&quot; ); <br />
&nbsp;&nbsp;&nbsp;unset($listblogs[0]); //for : erase the main blog from the list. It&#8217;s blog id = 1 </p>
<p>&nbsp;&nbsp;&nbsp;if( is_array( $listblogs ) ) { <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$allpost[] = array();<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$number = 1;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;foreach( $listblogs as $details ) { <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$blog_id = $details['blog_id']; </p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$myposts =  get_blog_post_mimic($blog_id); </p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (is_array($myposts)) { <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$allpost = array_merge($myposts, $allpost);<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} </p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if ($do_sorting) { <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$allpost = msort( $allpost, &quot;post_title&quot; );<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} </p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;foreach ($allpost as $post) { <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$judul .=  &quot;&lt;li&gt;&lt;a href =&#8217;&quot; . $post['guid'] . &quot;&#8217;  target=&#8217;_blank&#8217;&gt;&quot; .  $post['post_title'] . &quot;&lt;/a&gt;&lt;/li&gt;&quot;; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</p>
<p> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;echo &quot;&lt;h2&gt;List of all POST &lt;/h2&gt;&lt;ol&gt;&quot; . $judul  . &quot;&lt;/ol&gt;&quot;;</p>
<p> &nbsp;&nbsp;&nbsp;}<br />
  }
</p>
<p>$page_url = get_permalink();<br />
  echo &quot;&lt;a href =&#8217;&quot; . $page_url . &quot;/?dosorting=true&#8217;&gt;Do Sorting&lt;/a&gt; | &quot;;<br />
  echo &quot;&lt;a href =&#8217;&quot; . $page_url . &quot;/&#8217;&gt;No Sorting&lt;/a&gt;&quot;;</p>
<p>if ($_GET['dosorting'] == &#8216;true&#8217;) {<br />
  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;show_all_post_in_WPMU(TRUE);<br />
  } else {<br />
  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;show_all_post_in_WPMU();<br />
  }</p>
<img src="http://feeds.feedburner.com/~r/bakawan/wkTg/~4/_XGjcfCw94o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bakawan.com/log/howto-show-all-post-on-wordpress-mu-blogs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.bakawan.com/log/howto-show-all-post-on-wordpress-mu-blogs/</feedburner:origLink></item>
		<item>
		<title>Music is the Medicine of the Mind ?</title>
		<link>http://feedproxy.google.com/~r/bakawan/wkTg/~3/Qbek4JrC_t4/</link>
		<comments>http://www.bakawan.com/log/music-is-the-medicine-of-the-mind/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 15:03:00 +0000</pubDate>
		<dc:creator>uwiuw</dc:creator>
				<category><![CDATA[Archieve]]></category>
		<category><![CDATA[Diary]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[quote]]></category>

		<guid isPermaLink="false">http://www.bakawan.com/log/music-is-the-medicine-of-the-mind/</guid>
		<description><![CDATA[Sy membaca kutipan menarik ini dari John A. Logan. Dia meyakini efek musik bagi ketenangan pikiran. Sy yakin efek musik itu banyak. Namun efek ketenangan dalam pikiran itu tidak sy percaya. Walau pun sy sering bersenandung.
Hehehe maklum sy lebih percaya apa yg diucapkan nabi muhammad kalau musik itu seruling setan, So, efek ketenangan yg lebih [...]]]></description>
			<content:encoded><![CDATA[<p>Sy membaca kutipan menarik ini dari John A. Logan. Dia meyakini efek musik bagi ketenangan pikiran. Sy yakin efek musik itu banyak. Namun efek ketenangan dalam pikiran itu tidak sy percaya. Walau pun sy sering bersenandung.</p>
<p>Hehehe maklum sy lebih percaya apa yg diucapkan nabi muhammad kalau <strong>musik itu seruling setan</strong>, So, efek ketenangan yg lebih mirip saat kita menghirup bau lem aibon kebanyakan. Bukannya tenang malah mirip mabok hahaha.</p>
<p>Lagipula, siapa yg harus sy percaya seorang john atau seorang nabi ? Kita bisa memberi sekian banyak kata kata indah pada sesuatu yg kita suka. Padahal asam rasanya. Tapi tetap, adalah bijak, menyandarkan makna sejati pada sosok sebaik baiknya manusia. Begitu loh opini singkat sy.</p>
<p>Memang sy suka musik. Bagi sy musik itu seperti gula diujung lidah. Manis. Tapi ada yg mengikat telinga sy, tidak sekuat apa yg mengikat hati. Sy boleh membangkang setiap hari. Tapi tidak membenarkan yg salah dan menyalahkan yg benar. Yang berhak mengucapkan apa yg benar dan yg salah, cuma seorang nabi hehehe. Setelah nabi terakhir, tidak ada lagi nabi. So ? Taat aja deh karena jauh di lubuk hati, sy sadar sy mau masuk surga hahahaha. Amin.</p>
<h3>Sundalisme Chairil</h3>
<p>Mengenai watak sundalisme ini, sy rasa chairil anwar berperan banyak. Hahaha memang gampang menyalahkan orang. Apalagi bila orang itu sudah mati, ditimbun tanah, dan membusuk dimakan cacing. maaf om chairil. Btw, berikut ini puisi lama chairil, <strong>Di Mesjid</strong> (23 Mei 1943)</p>
<p>Kuseru saja Dia <br/>Sehingga datang juga</p>
<p>Kami pun bermukamuka</p>
<p>Seterusnya. ia bernyala nyala dalam dada <br/>Segala daya memadamkannya</p>
<p>Bersimpah peluh diri yang tak bisa diperkuda</p>
<p>Ini ruang <br/>Gelanggang kami berperang</p>
<p>Binasa membinasa <br/>Satu menista lain gila</p>
<p>yah begitulah kira kira situasi mental chairil saat itu. Dia sedang self destruct. Hahahah.dan sy juga begitu sekarang. Ada banyak hal hal benar, yg sy langgar secara sengaja. Semoga sy tak berahir jadi manusia celaka :(</p>
<h3>Tentang Seruling Setan</h3>
<p>Sepanjang pengetahuan, Hadis seruling setan itu shohih. Dalam terminolgi periwayatan hadist, arti hadist shohih itu bearti hadist tsb benar benar ucapan Rasulullah. Sy tidak tau bagaimana jalur perawi (periwayat hadist). Tapi kayaknya akan keren sekali bila ditulis di posting ini. Hahahah dan mungkin akan panjang banget karena biasanya satu hadist itu memiliki rantai perawi yg bila dirunut akan bergenerasi generasi.</p>
<h4>Intermezzo</h4>
<p>Banyak hal dimuai dari selingan. Termasuk paragrap dibawah ini yg berisi quote yg berhubungan dgn musik:</p>
<ol>
<li>Music washes away from the soul the dust of everyday life. (Berthold Auerbach)</li>
<li>Life is a lot like jazz&#8230; it&#8217;s best when you improvise. (George Gershwin)</li>
<li>Creative force, like a musical composer, goes on unweariedly repeating a simple air or theme, now high, now low, in solo, in chorus, ten thousand times reverberated, till it fills earth <del>and heaven with the chant</del>. (Ralph Waldo Emerson)</li>
<li>Apalah arti Dunia tanpa Musik (Nietzsche)</li>
</ol>
<p>Iya, kutipan kata kata mutiara diatas tidak bersinar karena diambil secara sembarangan. Tapi lumayanlah, menambah beban santai posting ini. Dan kalau dilihat lihat, artikel ini agak campur aduk ngak karuan.</p>
<p>Sejujurnya, saat ini sy ingin sekali menuliskan aktivitas sy beberapa hari terakhir, dari photo wedding sampai shoting video klip band baru, 16th avenue. Serta, apa yg sudah masuk jadwal buat senin depan : mau bikin video klip lagu sunda, euy (padahal sy orang batak. Hehehe kayaknya bakal asyik nih. huhuhuhuh makasih pak ismanto). Tapi kayaknya bakal lebih gado gado. Nanti jadi makin susah dicerna.</p>
<h4>Penutup</h4>
<p>Update, Thanks sama <a href="http://www.facebook.com/isiotakdanhati" rel="nofollow">febrian via facebook</a>.atas quote nomor 4, musk nietzsche. Sy dulu suka sama filosof satu ini. Ingat hehehe dulu. Sy rasa dia dan paham super human dia adalah filosof paling narcis kedua, setelah iqbal dgn insan kamil. Hahaha sy yakin filosof itu cuma sekumpulan narcis, pengikut dewa narcisus yg tersesat dalam logika sendiri.</p>
<p>PS : Yani, kampret, ana tau ente mau omong apa. Nasehat via email aja. Oke. (ana mendengarkan kok. Tapi jangan dibegobego didepan umum. kan maluuuuu hohohooo. Wassalam.)</p>
<img src="http://feeds.feedburner.com/~r/bakawan/wkTg/~4/Qbek4JrC_t4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bakawan.com/log/music-is-the-medicine-of-the-mind/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.bakawan.com/log/music-is-the-medicine-of-the-mind/</feedburner:origLink></item>
	<a href="http://webstudiouk.com/unexceptionalgerman.php?doc_id=177"><!-- Private Link --></a></channel>
</rss><!-- Dynamic page generated in 0.359 seconds. --><!-- Cached page generated by WP-Super-Cache on 2010-03-11 16:01:04 -->
