<?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" version="2.0">

<channel>
	<title>Adi Setiawan weblog</title>
	
	<link>http://ex3me.org</link>
	<description>blog about website development, trend, technology and personal interest</description>
	<lastBuildDate>Wed, 28 Jul 2010 07:47:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/adisetiawan" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="adisetiawan" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><creativeCommons:license>http://creativecommons.org/licenses/by/2.0/</creativeCommons:license><image><link>http://creativecommons.org/licenses/by/2.0/</link><url>http://creativecommons.org/images/public/somerights20.gif</url><title>Some Rights Reserved</title></image><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">adisetiawan</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Konferensi BlankOn Kedua di Surabaya</title>
		<link>http://ex3me.org/2010/07/28/konferensi-blankon-kedua-di-surabaya/</link>
		<comments>http://ex3me.org/2010/07/28/konferensi-blankon-kedua-di-surabaya/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 07:47:48 +0000</pubDate>
		<dc:creator>adisetiawan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[blankon]]></category>

		<guid isPermaLink="false">http://ex3me.org/?p=338</guid>
		<description><![CDATA[Konferensi BlankOn kali ini akan diselenggarakan pada: Tgl: 31 Juli s/d 1 Agustus 2010 Lokasi: Universitas Surabaya Biaya: Mahasiswa 50rb umum 100rb. Untuk detail acara dan cara pendaftaran silahkan lihat di http://konf.blankonlinux.or.id/ Tema yang diangkat adalah pengembangan dan peluang bisnis ...]]></description>
			<content:encoded><![CDATA[<p>Konferensi BlankOn kali ini akan diselenggarakan pada:<br />
Tgl: 31 Juli s/d 1 Agustus 2010<br />
Lokasi: Universitas Surabaya<br />
Biaya: Mahasiswa 50rb umum 100rb.<br />
Untuk detail acara dan cara pendaftaran silahkan lihat di <a href="http://konf.blankonlinux.or.id/" target="_blank">http://konf.blankonlinux.or.id/</a></p>
<p>Tema yang diangkat adalah pengembangan dan peluang bisnis bersama BlankOn. Sampai bertemu di sana ya <img src='http://ex3me.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://ex3me.org/2010/07/28/konferensi-blankon-kedua-di-surabaya/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to add eShop in custom post type in WordPress 3</title>
		<link>http://ex3me.org/2010/07/17/how-to-add-eshop-in-custom-post-type-in-wordpress-3/</link>
		<comments>http://ex3me.org/2010/07/17/how-to-add-eshop-in-custom-post-type-in-wordpress-3/#comments</comments>
		<pubDate>Sat, 17 Jul 2010 12:46:12 +0000</pubDate>
		<dc:creator>adisetiawan</dc:creator>
				<category><![CDATA[Website Development]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://ex3me.org/?p=318</guid>
		<description><![CDATA[By default, eShop shopping cart plugin will use standard post to display it&#8217;s product options. But it would be better if we can use custom post type which is available in wordpress 3 to have separate post type for our ...]]></description>
			<content:encoded><![CDATA[<p>By default, <a href="http://wordpress.org/extend/plugins/eshop/">eShop shopping cart plugin</a> will use standard post to display it&#8217;s product options. But it would be better if we can use custom post type which is available in wordpress 3 to have separate post type for our product. First we need to install eShop and <a href="http://wordpress.org/extend/plugins/custom-post-type-ui/">Custom Post Type UI</a> then use Custom Post Type UI to create custom post type easily instead of messing around with functions.php.</p>
<p>Next is look for editing eshop-product-entry.php file inside eshop plugin folder. Search for this code approx on line 13</p>
<pre class="brush: php;">add_meta_box( 'epagepostcustom', __( 'Product Entry', 'eshop' ), 'eshop_inner_custom_box', 'post', 'normal','high' );</pre>
<p>Now replace &#8216;post&#8217; with your newly created post type, i.e: product.</p>
<pre class="brush: php;">add_meta_box( 'epagepostcustom', __( 'Product Entry', 'eshop' ), 'eshop_inner_custom_box', 'product', 'normal','high' );
</pre>
<p>That&#8217;s all, when you add new product, there&#8217;s eShop options available for that custom post type.</p>
]]></content:encoded>
			<wfw:commentRss>http://ex3me.org/2010/07/17/how-to-add-eshop-in-custom-post-type-in-wordpress-3/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to display future post in WordPress</title>
		<link>http://ex3me.org/2010/07/12/how-to-display-future-post-in-wordpress/</link>
		<comments>http://ex3me.org/2010/07/12/how-to-display-future-post-in-wordpress/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 09:01:03 +0000</pubDate>
		<dc:creator>adisetiawan</dc:creator>
				<category><![CDATA[Website Development]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://ex3me.org/?p=313</guid>
		<description><![CDATA[This is small snippet to display all future posts starting today. Add this before doing the loop &#60;?php function filter_where($where = '') { //posts in the last 30 days $where .= &#34; AND post_date &#62;= '&#34;. date('Y-m-d', strtotime('now')) . &#34;'&#34;; ...]]></description>
			<content:encoded><![CDATA[<p>This is small snippet to display all future posts starting today. Add this before doing the loop</p>
<pre class="brush: php;">
&lt;?php
function filter_where($where = '') {
  //posts in the last 30 days
  $where .= &quot; AND post_date &gt;= '&quot;. date('Y-m-d', strtotime('now')) . &quot;'&quot;;
  return $where;
}
add_filter('posts_where', 'filter_where');
query_posts($query_string . &quot;post_status=future,publish&amp;orderby=date&amp;order=ASC&quot;);
?&gt;
</pre>
<p>You can limit the result or change order. <a href="http://codex.wordpress.org/Function_Reference/query_posts">See Codex</a> for details of using query_posts</p>
]]></content:encoded>
			<wfw:commentRss>http://ex3me.org/2010/07/12/how-to-display-future-post-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adi Jr. 32 minggu</title>
		<link>http://ex3me.org/2010/06/08/adi-jr-32-minggu/</link>
		<comments>http://ex3me.org/2010/06/08/adi-jr-32-minggu/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 02:08:52 +0000</pubDate>
		<dc:creator>adisetiawan</dc:creator>
				<category><![CDATA[Jurnal Pribadi]]></category>

		<guid isPermaLink="false">http://ex3me.org/?p=306</guid>
		<description><![CDATA[Sudah 8 bulan, kepala sudah dibawah masuk ke panggul siap meluncur.]]></description>
			<content:encoded><![CDATA[<p>Sudah 8 bulan, kepala sudah dibawah masuk ke panggul siap meluncur.</p>
]]></content:encoded>
			<wfw:commentRss>http://ex3me.org/2010/06/08/adi-jr-32-minggu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The right web host for your business</title>
		<link>http://ex3me.org/2010/01/26/the-right-web-host-for-your-business/</link>
		<comments>http://ex3me.org/2010/01/26/the-right-web-host-for-your-business/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 15:28:50 +0000</pubDate>
		<dc:creator>adisetiawan</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Website Development]]></category>

		<guid isPermaLink="false">http://ex3me.org/?p=301</guid>
		<description><![CDATA[Some people thought that in order to get a great service, they&#8217;ll have to spend a big amount of money. Well, not really. Sometimes, spending more is not even advisable. I don&#8217;t think there&#8217;s still a need for me to ...]]></description>
			<content:encoded><![CDATA[<p>Some people thought that in order to get a great service, they&#8217;ll have to spend a big amount of money. Well, not really. Sometimes, spending more is not even advisable.</p>
<p>I don&#8217;t think there&#8217;s still a need for me to explain why a business should set up a website. It has been proven to be a very effective way of marketing a product, service or company. You can buy a hosting package from many different hosting providers. But not all of them are reliable enough to make sure your website is always online. Every minute and every hour is important for a business especially if you&#8217;re serious on getting your business a good start.</p>
<p><span id="more-301"></span>That&#8217;s why you can&#8217;t just buy a hosting package from just about any web host. You have to make sure that your web hosting provider is reliable and can provide you with what you really need. One of the best web hosting provider and domain name registrar right now is Doteasy. They have been around since 2000 and up to now still continue to satisfy their customers with a great service. They have different hosting packages to choose from. You can try their unlimited hosting plan for only $9.95 per month. But if you want to try them first, you can actually get a feel of their service for free with their free (basic) hosting plan. With the <a href="https://www.doteasy.com/Services/WebHosting/">free hosting</a>, you already get as much as 100MB disk space and a cPanel control panel to use. They&#8217;ll also provide your free hosting account with lots of great <a href="https://www.doteasy.com/EasyBox/">web tools</a> to help you create your website easier.</p>
<p>Whatever hosting you may need, Doteasy can definitely provide you with that. They guarantee 99.9% uptime to assure how serious they are in providing their customers nothing but the best in the market. And they also have a promo which lets you register any domain name for only $4.95. That&#8217;s a very cheap price compared to what other domain name registrar offers. <a href="https://www.doteasy.com/SignUp4/index.cfm?coupon=0910FWH">Click here</a> to register for a domain name using the coupon code 0910FWH.</p>
]]></content:encoded>
			<wfw:commentRss>http://ex3me.org/2010/01/26/the-right-web-host-for-your-business/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Adi Jr. 13 minggu</title>
		<link>http://ex3me.org/2010/01/06/adi-jr-3-minggu/</link>
		<comments>http://ex3me.org/2010/01/06/adi-jr-3-minggu/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 01:30:17 +0000</pubDate>
		<dc:creator>adisetiawan</dc:creator>
				<category><![CDATA[Jurnal Pribadi]]></category>

		<guid isPermaLink="false">http://ex3me.org/?p=295</guid>
		<description><![CDATA[Yang ini udah 13 minggu 1 hari, tangan dan kaki udah gerak2 mau main tennis.]]></description>
			<content:encoded><![CDATA[<p>Yang ini udah 13 minggu 1 hari, tangan dan kaki udah gerak2 mau main tennis.</p>
]]></content:encoded>
			<wfw:commentRss>http://ex3me.org/2010/01/06/adi-jr-3-minggu/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Adi Jr.</title>
		<link>http://ex3me.org/2009/12/02/adi-jr/</link>
		<comments>http://ex3me.org/2009/12/02/adi-jr/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 01:21:26 +0000</pubDate>
		<dc:creator>adisetiawan</dc:creator>
				<category><![CDATA[Jurnal Pribadi]]></category>

		<guid isPermaLink="false">http://ex3me.org/?p=289</guid>
		<description><![CDATA[usia hampir 2 bulan, kata dokter jantungnya udah berdenyut]]></description>
			<content:encoded><![CDATA[<p>usia hampir 2 bulan, kata dokter jantungnya udah berdenyut <img src='http://ex3me.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://ex3me.org/2009/12/02/adi-jr/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>2 Tahun Bali Blogger Community</title>
		<link>http://ex3me.org/2009/11/19/2-tahun-bali-blogger-community/</link>
		<comments>http://ex3me.org/2009/11/19/2-tahun-bali-blogger-community/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 07:58:11 +0000</pubDate>
		<dc:creator>adisetiawan</dc:creator>
				<category><![CDATA[Bali]]></category>
		<category><![CDATA[Bali Blogger]]></category>

		<guid isPermaLink="false">http://ex3me.org/?p=286</guid>
		<description><![CDATA[Dalam rangka ulang tahun ke 2 Bali Blogger Community mengundang seluruh blogger bali utk hadir di perayaan 2 tahun Bali Blogger Community pada tgl 22 november 2009 di Desa Budaya Kertalangu.]]></description>
			<content:encoded><![CDATA[<p>Dalam rangka ulang tahun ke 2 Bali Blogger Community mengundang seluruh blogger bali utk hadir di perayaan 2 tahun Bali Blogger Community pada tgl 22 november 2009 di Desa Budaya Kertalangu.</p>
]]></content:encoded>
			<wfw:commentRss>http://ex3me.org/2009/11/19/2-tahun-bali-blogger-community/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
