<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>what do you expect</title>
	<atom:link href="http://arsakurakura.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://arsakurakura.wordpress.com</link>
	<description>arsakura&#039;s blog</description>
	<lastBuildDate>Tue, 21 Feb 2012 03:47:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='arsakurakura.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>what do you expect</title>
		<link>http://arsakurakura.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://arsakurakura.wordpress.com/osd.xml" title="what do you expect" />
	<atom:link rel='hub' href='http://arsakurakura.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Perbedaan Engine MyISAM dan InnoDB</title>
		<link>http://arsakurakura.wordpress.com/2012/02/21/perbedaan-engine-myisam-dan-innodb/</link>
		<comments>http://arsakurakura.wordpress.com/2012/02/21/perbedaan-engine-myisam-dan-innodb/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 03:47:43 +0000</pubDate>
		<dc:creator>arsakura</dc:creator>
				<category><![CDATA[blablabla]]></category>
		<category><![CDATA[InnoDB]]></category>
		<category><![CDATA[MyISAM]]></category>

		<guid isPermaLink="false">http://arsakurakura.wordpress.com/?p=258</guid>
		<description><![CDATA[Ketika membuat suatu tabel, sering kali kita tidak peduli engine apakah yang digunakan untuk tabel tersebut, biasanya sih tidak disertakan parameter engine=blablabla, langsung create table, nama kolom, tipe data. Ternyata pemilihan jenis engine MySQL ini berpengaruh ketika kita menggunakan relasi antar table dengan foreign key yang berasal dari tabel lain. Misalnya ketika membuat tabel komentar [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsakurakura.wordpress.com&amp;blog=16034340&amp;post=258&amp;subd=arsakurakura&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ketika membuat suatu tabel, sering kali kita tidak peduli engine apakah yang digunakan untuk tabel tersebut, biasanya sih tidak disertakan parameter engine=blablabla, langsung create table, nama kolom, tipe data. Ternyata pemilihan jenis engine MySQL ini berpengaruh ketika kita menggunakan relasi antar table dengan foreign key yang berasal dari tabel lain. Misalnya ketika membuat tabel komentar menggunakan foreign key yang berasal dari tabel postingan yang mengindikasikan bahwa komentar tersebut milik postingan itu. Untuk keperluan ini digunakan engine InnoDB daripada MyISAM. Lalu apa sih perbedaan engine InnoDB dan MyISAM?</p>
<ul>
<li>InnoDB menerapkan penguncian tingkat baris untuk insert dan update baris, sementara MyISAM menerapkan penguncian tingkat tabel.</li>
<li>InnoDB memiliki transaksi, sementara MyISAM tidak.</li>
<li>InnoDB memiliki kunci asing (Foreign Key) dan contraints sementara MyISAM tidak.</li>
<li>InnoDB memiliki sistem revovery lebih baik dari pada MyISAM.</li>
<li>MyISAM memiliki indeks pencarian teks penuh (full text search) sementara InnoDB tidak.</li>
</ul>
<p>Mengingat perbedaan-perbedaan, InnoDB dan MyISAM memiliki kelebihan dan kekurangan yang unik terhadap satu sama lain.</p>
<p>Keuntungan dari InnoDB</p>
<ul>
<li>InnoDB cocok digunakan dimana integritas data lebih prioritas.</li>
<li>Lebih cepat dalam insert update tabel karena menggunakan tingkat penguncian baris.</li>
</ul>
<p>Kekurangan dari InnoDB</p>
<ul>
<li>Karena InnoDB harus menjaga hubungan yang berbeda antara tabel, database administrator dan pencipta skema harus mengambil lebih banyak waktu dalam mendesain model data yang lebih kompleks daripada MyISAM.</li>
<li>Mengkonsumsi sumber daya sistem yang lebih seperti RAM. Direkomendasikan bahwa engine InnoDB didisable jika tidak perlu substansial untuk itu, setelah instalasi MySQL.</li>
<li>Tidak adanya pengindeksan teks penuh (full text search).</li>
</ul>
<p>Keuntungan MyISAM</p>
<ul>
<li>Sederhana untuk dirancang dan dibuat, sehingga lebih baik untuk pemula. dan tidak perlu khawatir tentang hubungan antara tabel.</li>
<li>Lebih cepat dari InnoDB pada keseluruhan sebagai akibat dari struktur sederhana sehingga jauh lebih sedikit sumber daya server.</li>
<li>Pengindeksan teks lengkap (full text search).</li>
<li>Sangat baik untuk membaca-intensif (select) tabel.</li>
</ul>
<p>Kekurangan dari MyISAM</p>
<ul>
<li>Tidak ada integritas data(misalnya kendala hubungan), yang kemudian datang tanggung jawab dan overhead dari para administrator database dan pengembang aplikasi.</li>
<li>Tidak mendukung transaksi.</li>
<li>Lebih lambat dari InnoDB untuk tabel yang sering insert dan diupdate, karena seluruh tabel terkunci untuk insert dan update.</li>
<li>Perbandingan tersebut cukup sederhana. InnoDB lebih cocok untuk data situasi kritis dimana table sering dilakukan insert dan update.</li>
</ul>
<p>Disisi lain MyISAM, lebih cocok dengan aplikasi yang tidak cukup bergantung pada integritas data dan kebanyakan hanya memilih dan menampilkan data.</p>
<p>sumber:  http://sugengsuprayogi.wordpress.com/2010/04/14/myisam-vs-innodb/</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arsakurakura.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arsakurakura.wordpress.com/258/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arsakurakura.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arsakurakura.wordpress.com/258/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arsakurakura.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arsakurakura.wordpress.com/258/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arsakurakura.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arsakurakura.wordpress.com/258/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arsakurakura.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arsakurakura.wordpress.com/258/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arsakurakura.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arsakurakura.wordpress.com/258/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arsakurakura.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arsakurakura.wordpress.com/258/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsakurakura.wordpress.com&amp;blog=16034340&amp;post=258&amp;subd=arsakurakura&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arsakurakura.wordpress.com/2012/02/21/perbedaan-engine-myisam-dan-innodb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9adea8c8d0ad6a90e485e57137800b12?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">arkura</media:title>
		</media:content>
	</item>
		<item>
		<title>Ghaida Farisya</title>
		<link>http://arsakurakura.wordpress.com/2012/02/07/ghaida-farisya/</link>
		<comments>http://arsakurakura.wordpress.com/2012/02/07/ghaida-farisya/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 18:36:06 +0000</pubDate>
		<dc:creator>arsakura</dc:creator>
				<category><![CDATA[blablabla]]></category>
		<category><![CDATA[ghaida]]></category>
		<category><![CDATA[jkt48]]></category>

		<guid isPermaLink="false">http://arsakurakura.wordpress.com/?p=255</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsakurakura.wordpress.com&amp;blog=16034340&amp;post=255&amp;subd=arsakurakura&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://arsakurakura.files.wordpress.com/2012/02/ghaida-farisya.jpg"><img src="http://arsakurakura.files.wordpress.com/2012/02/ghaida-farisya.jpg?w=627&#038;h=2033" alt="" title="Ghaida Farisya" width="627" height="2033" class="aligncenter size-full wp-image-256" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arsakurakura.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arsakurakura.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arsakurakura.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arsakurakura.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arsakurakura.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arsakurakura.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arsakurakura.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arsakurakura.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arsakurakura.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arsakurakura.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arsakurakura.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arsakurakura.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arsakurakura.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arsakurakura.wordpress.com/255/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsakurakura.wordpress.com&amp;blog=16034340&amp;post=255&amp;subd=arsakurakura&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arsakurakura.wordpress.com/2012/02/07/ghaida-farisya/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9adea8c8d0ad6a90e485e57137800b12?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">arkura</media:title>
		</media:content>

		<media:content url="http://arsakurakura.files.wordpress.com/2012/02/ghaida-farisya.jpg" medium="image">
			<media:title type="html">Ghaida Farisya</media:title>
		</media:content>
	</item>
		<item>
		<title>Badge indoGT</title>
		<link>http://arsakurakura.wordpress.com/2012/02/06/badge-indogt/</link>
		<comments>http://arsakurakura.wordpress.com/2012/02/06/badge-indogt/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 11:53:44 +0000</pubDate>
		<dc:creator>arsakura</dc:creator>
				<category><![CDATA[blablabla]]></category>
		<category><![CDATA[indoGT]]></category>

		<guid isPermaLink="false">http://arsakurakura.wordpress.com/?p=249</guid>
		<description><![CDATA[http://arsakurakura.files.wordpress.com/2012/02/badge.png<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsakurakura.wordpress.com&amp;blog=16034340&amp;post=249&amp;subd=arsakurakura&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>http://arsakurakura.files.wordpress.com/2012/02/badge.png</p>
<p><a href="http://arsakurakura.files.wordpress.com/2012/02/badge.png"><img src="http://arsakurakura.files.wordpress.com/2012/02/badge.png?w=627&#038;h=391" alt="" title="badge" width="627" height="391" class="aligncenter size-full wp-image-250" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arsakurakura.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arsakurakura.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arsakurakura.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arsakurakura.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arsakurakura.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arsakurakura.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arsakurakura.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arsakurakura.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arsakurakura.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arsakurakura.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arsakurakura.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arsakurakura.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arsakurakura.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arsakurakura.wordpress.com/249/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsakurakura.wordpress.com&amp;blog=16034340&amp;post=249&amp;subd=arsakurakura&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arsakurakura.wordpress.com/2012/02/06/badge-indogt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9adea8c8d0ad6a90e485e57137800b12?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">arkura</media:title>
		</media:content>

		<media:content url="http://arsakurakura.files.wordpress.com/2012/02/badge.png" medium="image">
			<media:title type="html">badge</media:title>
		</media:content>
	</item>
		<item>
		<title>Vintage di gimp dan install font helvetica di crunchbang</title>
		<link>http://arsakurakura.wordpress.com/2012/02/03/vintage-di-gimp-dan-install-font-helvetica-di-crunchbang/</link>
		<comments>http://arsakurakura.wordpress.com/2012/02/03/vintage-di-gimp-dan-install-font-helvetica-di-crunchbang/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 23:32:43 +0000</pubDate>
		<dc:creator>arsakura</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[gimp]]></category>
		<category><![CDATA[helvetica]]></category>
		<category><![CDATA[vintage]]></category>

		<guid isPermaLink="false">http://arsakurakura.wordpress.com/?p=239</guid>
		<description><![CDATA[Jadi ini ceritanya mau ikut-ikutan bikin foto vintage yang dikasih tulisan font helvetica, biar gahoel kayak hipster-hipster dengan kamera mahal. Tapi gimana caranya pake gimp, di crunchbang pula? gampang! lebih mudah dari photoshop malahan. Pertama install scriptfu vintage di gimp, caranya, download dulu scriptnya disini, unzip file-nya ke /usr/share/gimp/2.0/scripts . Nah sekarang gimana cara make-nya? [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsakurakura.wordpress.com&amp;blog=16034340&amp;post=239&amp;subd=arsakurakura&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Jadi ini ceritanya mau ikut-ikutan bikin foto vintage yang dikasih tulisan font helvetica, biar gahoel kayak hipster-hipster dengan kamera mahal. Tapi gimana caranya pake gimp, di crunchbang pula? gampang! lebih mudah dari photoshop malahan. Pertama install scriptfu vintage di gimp, caranya, download dulu scriptnya <a title="disini" href="http://gimp-tutorials.net/downloads/Filters/vintage-look.zip">disini</a>, unzip file-nya ke /usr/share/gimp/2.0/scripts . Nah sekarang gimana cara make-nya? buka aja poto yang mau diedit terus: Scripts-fu &gt; Vintage-look, done!</p>
<p>Oke sekarang gimana caranya install font di crunchbang. Bitch, please., kata siapa susah, kopi aja file *.ttf-nya ke folder .fonts di home folder, tapi folder .fonts ini hidden, untuk menampilkan tekan aja ctrl+h, setelah dikopi, buka terminal dan jalankan perintah:<br />
<code>sudo fc-cache -f -v</code></p>
<p>done! berikut hasil editan saya, hehe</p>
<p><a href="http://arsakurakura.files.wordpress.com/2012/02/image39.jpg"><img class="aligncenter size-large wp-image-240" title="Image39" src="http://arsakurakura.files.wordpress.com/2012/02/image39.jpg?w=1024&#038;h=597" alt="" width="1024" height="597" /></a></p>
<p><a href="http://arsakurakura.files.wordpress.com/2012/02/image34.jpg"><img class="aligncenter size-full wp-image-242" title="image34" src="http://arsakurakura.files.wordpress.com/2012/02/image34.jpg?w=627&#038;h=878" alt="" width="627" height="878" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arsakurakura.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arsakurakura.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arsakurakura.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arsakurakura.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arsakurakura.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arsakurakura.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arsakurakura.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arsakurakura.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arsakurakura.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arsakurakura.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arsakurakura.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arsakurakura.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arsakurakura.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arsakurakura.wordpress.com/239/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsakurakura.wordpress.com&amp;blog=16034340&amp;post=239&amp;subd=arsakurakura&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arsakurakura.wordpress.com/2012/02/03/vintage-di-gimp-dan-install-font-helvetica-di-crunchbang/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9adea8c8d0ad6a90e485e57137800b12?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">arkura</media:title>
		</media:content>

		<media:content url="http://arsakurakura.files.wordpress.com/2012/02/image39.jpg?w=1024" medium="image">
			<media:title type="html">Image39</media:title>
		</media:content>

		<media:content url="http://arsakurakura.files.wordpress.com/2012/02/image34.jpg" medium="image">
			<media:title type="html">image34</media:title>
		</media:content>
	</item>
		<item>
		<title>Just Ghaida</title>
		<link>http://arsakurakura.wordpress.com/2012/02/01/just-ghaida/</link>
		<comments>http://arsakurakura.wordpress.com/2012/02/01/just-ghaida/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 15:44:05 +0000</pubDate>
		<dc:creator>arsakura</dc:creator>
				<category><![CDATA[blablabla]]></category>
		<category><![CDATA[ghaida]]></category>
		<category><![CDATA[jkt48]]></category>

		<guid isPermaLink="false">http://arsakurakura.wordpress.com/?p=235</guid>
		<description><![CDATA[Akhir-akhir ini lagi nge-hype banget JKT48, yak sister group resmi dari AKB48 yang pertama di luar Jepang. Dan sejak saya adalah seorang #foreveralone dan juga #fanboy tentunya gak bakal ketinggalan tentang isu ini, Whuahahaha mulai lah aktifitas save image as dan stalking timeline serta berharap di mention dari sang idola. Mengenai musik, apa sih yang [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsakurakura.wordpress.com&amp;blog=16034340&amp;post=235&amp;subd=arsakurakura&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Akhir-akhir ini lagi nge-hype banget JKT48, yak sister group resmi dari AKB48 yang pertama di luar Jepang. Dan sejak saya adalah seorang #foreveralone dan juga #fanboy tentunya gak bakal ketinggalan tentang isu ini, Whuahahaha mulai lah aktifitas save image as dan stalking timeline serta berharap di mention dari sang idola.</p>
<p>Mengenai musik, apa sih yang bisa diharapkan dari anak-anak idol ini? beberapa waktu lalu saya nanya ke @dhiekeJKT48 mengenai band jepang yang dia sukai selain AKB48, dibales mention saya: &#8220;hmm..arashi&#8221;. Well as expected gak jauh-jauh dari boyband, Jpop, dan musik populer di kalangan anak-anak seusianya.</p>
<p>Tapi&#8230;, ada 1 anak yang sejak lihat profil video-nya di youtube sudah membuat saya penasaran dan saya punya feeling nih anak beda sama yang lain, dan ternyata sodara-sodara.., tanpa diduga pagi ini beliau nge-tweet sesuatu yang menguncyangkan dunia per-postrock-an</p>
<p><a href="http://arsakurakura.files.wordpress.com/2012/02/ghaida.jpg"><img class="aligncenter size-full wp-image-236" title="ghaida" src="http://arsakurakura.files.wordpress.com/2012/02/ghaida.jpg?w=627" alt=""   /></a>Seorang idol berumur 16 tahun mendengarkan Burgerkill dan suka MONO!! my life is complete now, mungkin nanti klo MONO jadi konser lagi di jakarta dengan orkestra mau saya spik-spik ajak kencan nonton bareng #siapague. Well sudah diputuskan mulai saat itu juga saya mendedikasikan koneksi internet saya untuk Ghaida, heuheuhuhue #fanboy kumat lagi</p>
<span style="text-align:center; display: block;"><a href="http://arsakurakura.wordpress.com/2012/02/01/just-ghaida/"><img src="http://img.youtube.com/vi/f8nnqtsm8fk/2.jpg" alt="" /></a></span>
<p><img src="http://i1185.photobucket.com/albums/z358/oprekhape/ghaidafm.jpg" alt="" /></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arsakurakura.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arsakurakura.wordpress.com/235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arsakurakura.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arsakurakura.wordpress.com/235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arsakurakura.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arsakurakura.wordpress.com/235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arsakurakura.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arsakurakura.wordpress.com/235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arsakurakura.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arsakurakura.wordpress.com/235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arsakurakura.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arsakurakura.wordpress.com/235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arsakurakura.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arsakurakura.wordpress.com/235/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsakurakura.wordpress.com&amp;blog=16034340&amp;post=235&amp;subd=arsakurakura&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arsakurakura.wordpress.com/2012/02/01/just-ghaida/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9adea8c8d0ad6a90e485e57137800b12?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">arkura</media:title>
		</media:content>

		<media:content url="http://arsakurakura.files.wordpress.com/2012/02/ghaida.jpg" medium="image">
			<media:title type="html">ghaida</media:title>
		</media:content>

		<media:content url="http://i1185.photobucket.com/albums/z358/oprekhape/ghaidafm.jpg" medium="image" />
	</item>
		<item>
		<title>Just nerd</title>
		<link>http://arsakurakura.wordpress.com/2012/01/31/just-nerd/</link>
		<comments>http://arsakurakura.wordpress.com/2012/01/31/just-nerd/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 19:33:55 +0000</pubDate>
		<dc:creator>arsakura</dc:creator>
				<category><![CDATA[blablabla]]></category>
		<category><![CDATA[after school]]></category>
		<category><![CDATA[jooyeon]]></category>

		<guid isPermaLink="false">http://arsakurakura.wordpress.com/?p=231</guid>
		<description><![CDATA[why? because nerds love Asian girl in glasses #jooyeon #afterschool<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsakurakura.wordpress.com&amp;blog=16034340&amp;post=231&amp;subd=arsakurakura&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://arsakurakura.files.wordpress.com/2012/01/jooyeon20-20as01.jpg"><img class="aligncenter size-full wp-image-232" title="Jooyeon%20-%20as01" src="http://arsakurakura.files.wordpress.com/2012/01/jooyeon20-20as01.jpg?w=627&#038;h=785" alt="" width="627" height="785" /></a></p>
<p>why? because nerds love Asian girl in glasses</p>
<p>#jooyeon #afterschool</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arsakurakura.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arsakurakura.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arsakurakura.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arsakurakura.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arsakurakura.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arsakurakura.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arsakurakura.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arsakurakura.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arsakurakura.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arsakurakura.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arsakurakura.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arsakurakura.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arsakurakura.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arsakurakura.wordpress.com/231/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsakurakura.wordpress.com&amp;blog=16034340&amp;post=231&amp;subd=arsakurakura&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arsakurakura.wordpress.com/2012/01/31/just-nerd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9adea8c8d0ad6a90e485e57137800b12?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">arkura</media:title>
		</media:content>

		<media:content url="http://arsakurakura.files.wordpress.com/2012/01/jooyeon20-20as01.jpg" medium="image">
			<media:title type="html">Jooyeon%20-%20as01</media:title>
		</media:content>
	</item>
		<item>
		<title>Goodbye toe.</title>
		<link>http://arsakurakura.wordpress.com/2012/01/29/goodbye-toe/</link>
		<comments>http://arsakurakura.wordpress.com/2012/01/29/goodbye-toe/#comments</comments>
		<pubDate>Sat, 28 Jan 2012 18:55:26 +0000</pubDate>
		<dc:creator>arsakura</dc:creator>
				<category><![CDATA[music]]></category>
		<category><![CDATA[toe]]></category>

		<guid isPermaLink="false">http://arsakurakura.wordpress.com/?p=229</guid>
		<description><![CDATA[Invasi band-band post-rock tak kunjung henti-henti juga, setelah tahun lalu MONO, dan di penghujung tahun ada Mogwai, besok maret toe akan konser juga ke jakarta, promotornya sama kayak #MONOjkt. But unfortunately kali ini sepertinya saya gak bisa menghadirinya, huhu. Segala sesuatu ada skala prioritas-nya, dan kali ini #toeJKT bukan menjadi prioritas utama saya. Selamat tinggal [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsakurakura.wordpress.com&amp;blog=16034340&amp;post=229&amp;subd=arsakurakura&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Invasi band-band post-rock tak kunjung henti-henti juga, setelah tahun lalu MONO, dan di penghujung tahun ada Mogwai, besok maret toe akan konser juga ke jakarta, promotornya sama kayak #MONOjkt. But unfortunately kali ini sepertinya saya gak bisa menghadirinya, huhu. Segala sesuatu ada skala prioritas-nya, dan kali ini #toeJKT bukan menjadi prioritas utama saya. Selamat tinggal toe, mungkin suatu saat di lain kesempatan saya bisa nonton.</p>
<p><img class="aligncenter" src="http://toe.jakartaconcerts.com/head.gif" alt="toejkt" /></p>
<p>toe, band instrumental post-rock, math, psychedelic dari jepang. Pertama kali nonton dvd-nya gusi saya sampe berdarah</p>
<p>&nbsp;</p>
<blockquote><p>There is no one can understand me truly<br />
I do not go out and I will keep silence<br />
Everyone is mania in general<br />
You don&#8217;t have time to sleep<br />
For to know others</p>
<p>It&#8217;s more complex than how I used to thought<br />
But already I know<br />
The start is living life to the end<br />
Everyone is mania in general<br />
You don&#8217;t have time to sleep<br />
For to know others</p>
<p>&nbsp;</p>
<p>toe &#8211; goodbye</p></blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arsakurakura.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arsakurakura.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arsakurakura.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arsakurakura.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arsakurakura.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arsakurakura.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arsakurakura.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arsakurakura.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arsakurakura.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arsakurakura.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arsakurakura.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arsakurakura.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arsakurakura.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arsakurakura.wordpress.com/229/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsakurakura.wordpress.com&amp;blog=16034340&amp;post=229&amp;subd=arsakurakura&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arsakurakura.wordpress.com/2012/01/29/goodbye-toe/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9adea8c8d0ad6a90e485e57137800b12?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">arkura</media:title>
		</media:content>

		<media:content url="http://toe.jakartaconcerts.com/head.gif" medium="image">
			<media:title type="html">toejkt</media:title>
		</media:content>
	</item>
		<item>
		<title>i have a song for you</title>
		<link>http://arsakurakura.wordpress.com/2012/01/27/i-have-a-song-for-you/</link>
		<comments>http://arsakurakura.wordpress.com/2012/01/27/i-have-a-song-for-you/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 20:40:18 +0000</pubDate>
		<dc:creator>arsakura</dc:creator>
				<category><![CDATA[pikiran gila]]></category>

		<guid isPermaLink="false">http://arsakurakura.wordpress.com/?p=226</guid>
		<description><![CDATA[i have a song for you when you are so sad i have a song for you when you got a broken heart i have a song for you when you are so lonely i have a song for you when you need someone to talk with i have a song for you when you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsakurakura.wordpress.com&amp;blog=16034340&amp;post=226&amp;subd=arsakurakura&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>i have a song for you when you are so sad<br />
i have a song for you when you got a broken heart<br />
i have a song for you when you are so lonely<br />
i have a song for you when you need someone to talk with<br />
i have a song for you when you are adoring someone<br />
i have a song for you when you get mad<br />
i have a song for you when you miss your mom<br />
i have a song for you when you are so scare<br />
i have a song for you when you are so tired, sick of this world<br />
i have a song for you when you are falling in love<br />
i have a song for you when you are happy<br />
i have a song for you when you want to dance<br />
i always have a song for you even it&#8217;s not my favourite song</p>
<p>i don&#8217;t know why the hell i&#8217;m writing this, just another insomnia night, can&#8217;t sleep because i&#8217;m so starving to the death, and suddenly this words just come across my mind. shit</p>
<p>#np Danur by Sarasvatī</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arsakurakura.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arsakurakura.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arsakurakura.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arsakurakura.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arsakurakura.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arsakurakura.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arsakurakura.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arsakurakura.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arsakurakura.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arsakurakura.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arsakurakura.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arsakurakura.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arsakurakura.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arsakurakura.wordpress.com/226/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsakurakura.wordpress.com&amp;blog=16034340&amp;post=226&amp;subd=arsakurakura&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arsakurakura.wordpress.com/2012/01/27/i-have-a-song-for-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9adea8c8d0ad6a90e485e57137800b12?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">arkura</media:title>
		</media:content>
	</item>
		<item>
		<title>just another quote</title>
		<link>http://arsakurakura.wordpress.com/2012/01/01/just-another-quote/</link>
		<comments>http://arsakurakura.wordpress.com/2012/01/01/just-another-quote/#comments</comments>
		<pubDate>Sun, 01 Jan 2012 16:36:32 +0000</pubDate>
		<dc:creator>arsakura</dc:creator>
				<category><![CDATA[blablabla]]></category>

		<guid isPermaLink="false">http://arsakurakura.wordpress.com/?p=216</guid>
		<description><![CDATA[im afraid that no one will ever love me as much as my mom does<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsakurakura.wordpress.com&amp;blog=16034340&amp;post=216&amp;subd=arsakurakura&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<blockquote><p>im afraid that no one will ever love me as much as my mom does</p></blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arsakurakura.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arsakurakura.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arsakurakura.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arsakurakura.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arsakurakura.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arsakurakura.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arsakurakura.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arsakurakura.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arsakurakura.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arsakurakura.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arsakurakura.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arsakurakura.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arsakurakura.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arsakurakura.wordpress.com/216/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsakurakura.wordpress.com&amp;blog=16034340&amp;post=216&amp;subd=arsakurakura&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arsakurakura.wordpress.com/2012/01/01/just-another-quote/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9adea8c8d0ad6a90e485e57137800b12?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">arkura</media:title>
		</media:content>
	</item>
		<item>
		<title>Paris Match &#8211; To The Nines</title>
		<link>http://arsakurakura.wordpress.com/2011/12/16/paris-match-to-the-nines/</link>
		<comments>http://arsakurakura.wordpress.com/2011/12/16/paris-match-to-the-nines/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 02:15:11 +0000</pubDate>
		<dc:creator>arsakura</dc:creator>
				<category><![CDATA[music]]></category>
		<category><![CDATA[bossa nova]]></category>
		<category><![CDATA[jazz]]></category>
		<category><![CDATA[paris match]]></category>

		<guid isPermaLink="false">http://arsakurakura.wordpress.com/?p=210</guid>
		<description><![CDATA[Paris match (パリス・マッチ) is a Japanese pop-jazz band, consisting of Mari Mizuno (vocals) and Yosuke Sugiyama (music). Their name is based on a track from an Album by The Style Council, Café Bleu. The band was formed in 1998 by Tai Furusawa and Yosuke Sugiyama. Both had already experiences in the music business &#8211; Furusawa [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsakurakura.wordpress.com&amp;blog=16034340&amp;post=210&amp;subd=arsakurakura&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://arsakurakura.files.wordpress.com/2011/12/cover.jpg"><img class="aligncenter size-full wp-image-211" title="Paris Match" src="http://arsakurakura.files.wordpress.com/2011/12/cover.jpg?w=627" alt="Paris Match to the nine"   /></a></p>
<p style="text-align:justify;">Paris match (パリス・マッチ) is a Japanese pop-jazz band, consisting of <a href="http://www.last.fm/music/Mari+Mizuno">Mari Mizuno</a> (vocals) and <a href="http://www.last.fm/music/Yosuke+Sugiyama">Yosuke Sugiyama</a> (music). Their name is based on a track from an Album by <a href="http://www.last.fm/music/The+Style+Council">The Style Council</a>, <a title="The Style Council - Café Bleu" href="http://www.last.fm/music/The+Style+Council/Caf%C3%A9+Bleu">Café Bleu</a>. The band was formed in 1998 by Tai Furusawa and <a href="http://www.last.fm/music/Yosuke+Sugiyama">Yosuke Sugiyama</a>. Both had already experiences in the music business &#8211; Furusawa as a DJ and composer and he organized club events; Sugiyama was an experienced producer, arranger and remixer. They met singer <a href="http://www.last.fm/music/Mari+Mizuno">Mari Mizuno</a> when she and Sugiyama worked for a radio station in Nagoya at the same time. They released their first full album, <a title="Paris Match - volume one" href="http://www.last.fm/music/Paris+Match/volume+one">volume one</a>, in 2000.</p>
<p>The music they make can be best described as a mix of <a href="http://www.last.fm/tag/pop" rel="tag">pop</a>, <a href="http://www.last.fm/tag/r%2526amp%253Bb" rel="tag">r&amp;amp;b</a>, <a href="http://www.last.fm/tag/jazz" rel="tag">jazz</a> and <a href="http://www.last.fm/tag/bossa%20nova" rel="tag">bossa nova</a>.</p>
<p style="text-align:justify;">http://www.last.fm/music/Paris+Match</p>
<p style="text-align:justify;">http://www.mediafire.com/?vdviuj121q7fuq3</p>
<p style="text-align:justify;">
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arsakurakura.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arsakurakura.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arsakurakura.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arsakurakura.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arsakurakura.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arsakurakura.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arsakurakura.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arsakurakura.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arsakurakura.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arsakurakura.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arsakurakura.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arsakurakura.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arsakurakura.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arsakurakura.wordpress.com/210/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arsakurakura.wordpress.com&amp;blog=16034340&amp;post=210&amp;subd=arsakurakura&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arsakurakura.wordpress.com/2011/12/16/paris-match-to-the-nines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9adea8c8d0ad6a90e485e57137800b12?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">arkura</media:title>
		</media:content>

		<media:content url="http://arsakurakura.files.wordpress.com/2011/12/cover.jpg" medium="image">
			<media:title type="html">Paris Match</media:title>
		</media:content>
	</item>
	</channel>
</rss>
