<?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>Feelinc.Me</title>
	<atom:link href="http://www.feelinc.me/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.feelinc.me</link>
	<description>It&#039;s All About Me</description>
	<lastBuildDate>Wed, 10 Mar 2010 17:32:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Create a WordPress Options Panel Using CodeIgniter</title>
		<link>http://www.feelinc.me/experience/create-a-wordpress-options-panel-using-codeigniter/</link>
		<comments>http://www.feelinc.me/experience/create-a-wordpress-options-panel-using-codeigniter/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 11:53:05 +0000</pubDate>
		<dc:creator>Feelinc</dc:creator>
				<category><![CDATA[Experience]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[create]]></category>
		<category><![CDATA[options]]></category>
		<category><![CDATA[panel]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.feelinc.me/?p=232</guid>
		<description><![CDATA[The first thing that we all think about when we want to start to create a WordPress Options Panel is the code structure. How the code structure is quite clean and easy to enhance.
WordPress is one of the most popular Content Management Software (CMS) systems out there.So how we would like integrate CodeIgniter into our [...]]]></description>
			<content:encoded><![CDATA[<p>The first thing that we all think about when we want to start to create a WordPress Options Panel is the code structure. How the code structure is quite clean and easy to enhance.<br />
WordPress is one of the most popular Content Management Software (CMS) systems out there.So how we would like integrate CodeIgniter into our WordPress Options Panel.<br />
As you already know that CodeIgniter is the popular PHP Framework, which is easy to use and quite light.<br />
So today, let me guide you through the integration process of CodeIgniter into WordPress.<span id="more-232"></span></p>
<h3>Step 1</h3>
<p>Download the CodeIgniter source code from <a href="http://codeigniter.com/" target="_blank">CodeIgniter Official Site</a> and extract it. Now we go  into your WordPress default theme folder and create some folder structures :</p>
<p>default/<br />
&#8211; ctrl/<br />
&#8212;&#8211; config/<br />
&#8212;&#8211; controllers/<br />
&#8212;&#8211; errors/<br />
&#8212;&#8211; libraries/<br />
&#8212;&#8211; models/<br />
&#8212;&#8211; system/<br />
&#8212;&#8212;&#8211; helpers/<br />
&#8212;&#8212;&#8211; codeigniter/<br />
&#8212;&#8212;&#8211; helpers/<br />
&#8212;&#8212;&#8211; libraries/<br />
&#8212;&#8211; views</p>
<h3>Step 2</h3>
<p>Copy all needed files from CodeIgniter source code into your previously created folders with this following steps :</p>
<ul>
<li>Copy autoload.php, config.php, constants.php, database.php, and routes.php files from system/application/config into default/ctrl/config.</li>
<li>Copy all files in system/application/errors into default/ctrl/errors.</li>
<li>Copy all files in system/codeigniter inti default/ctrl/system/codeigniter.</li>
<li>Copy url_helper.php file from system/helpers into default/ctrl/system/helpers.</li>
<li>Copy Benchmark.php, Config.php, Controller.php, Exceptions.php, Hooks.php, Input.php, Loader.php, Language.php, Model.php, Output.php, Router.php and URI.php files from system/libraries into default/ctrl/system/libraries.</li>
</ul>
<h3>Step 3</h3>
<p>Now we are going to edit and customize the needed files:</p>
<h4>default/ctrl/config/autoload.php</h4>
<p>Put the url helper into something like this</p>
<pre class="brush: plain;">
$autoload['helper'] = array('url');
</pre>
<h4>default/ctrl/config/config.php</h4>
<p>Edit your base url into something like this</p>
<pre class="brush: plain;">
$config['base_url'] = get_option('siteurl') . '/wp-admin/';
</pre>
<p>Edit the uri protocol into something like this</p>
<pre class="brush: plain;">
$config['uri_protocol']	= &quot;QUERY_STRING&quot;;
</pre>
<p>Enable the query strings into something like this</p>
<pre class="brush: plain;">
$config['enable_query_strings'] = TRUE;
</pre>
<h4>default/ctrl/config/database.php</h4>
<p>Empty this file and you can use this file later for table installer purpose for your theme.</p>
<h4>default/ctrl/config/routes.php</h4>
<p>Edit the default controller into something like this</p>
<pre class="brush: plain;">
$route['default_controller'] = &quot;noop&quot;;
</pre>
<h4>default/ctrl/system/codeigniter/CodeIgniter.php</h4>
<p>Put below code on line 29 to make the Output library working</p>
<pre class="brush: plain;">
global $BM, $CFG;
</pre>
<p>Remove the &#8220;&amp;&#8221; symbol when loading the Benchmark class into something like this</p>
<pre class="brush: plain;">
$BM = load_class('Benchmark');
</pre>
<p>Remove the &#8220;&amp;&#8221; symbol when loading the Config class into something like this</p>
<pre class="brush: plain;">
$CFG = load_class('Config');
</pre>
<p>Disable CodeIgniter code to check the DB connection into something like this</p>
<pre class="brush: plain;">
/*if (class_exists('CI_DB') AND isset($CI-&gt;db))
{

	$CI-&gt;db-&gt;close();
}*/
</pre>
<h4>default/ctrl/system/libraries/Router.php</h4>
<p>Change uri string fetched by CodeIgniter by putting below code on line 94</p>
<pre class="brush: plain;">
$n_query_string = strpos($this-&gt;uri-&gt;uri_string, '&amp;amp;');
if ($n_query_string &gt; 0)
{
	$this-&gt;uri-&gt;uri_string = substr($this-&gt;uri-&gt;uri_string, 0, $n_query_string);
}
$this-&gt;uri-&gt;uri_string = '/'.str_replace('page=', '', $this-&gt;uri-&gt;uri_string);
</pre>
<h4>default/functions.php</h4>
<p>Put below code at the end of functions.php file</p>
<pre class="brush: plain;">
&lt;?php
/*
|---------------------------------------------------------------
| SYSTEM FOLDER NAME
|---------------------------------------------------------------
|
| NO TRAILING SLASH!
|
*/
	$system_folder = str_replace('\\', '/', dirname(__FILE__)) . &quot;/ctrl/system&quot;;

/*
|---------------------------------------------------------------
| APPLICATION FOLDER NAME
|---------------------------------------------------------------
|
| NO TRAILING SLASH!
|
*/
	$application_folder = str_replace('\\', '/', dirname(__FILE__)) . &quot;/ctrl&quot;;

/*
|===============================================================
| END OF USER CONFIGURABLE SETTINGS
|===============================================================
*/

/*
|---------------------------------------------------------------
| SET THE SERVER PATH
|---------------------------------------------------------------
|
*/
if (strpos($system_folder, '/') === FALSE)
{
	if (function_exists('realpath') AND @realpath(dirname(__FILE__)) !== FALSE)
	{
		$system_folder = realpath(dirname(__FILE__)).'/'.$system_folder;
	}
}
else
{
	// Swap directory separators to Unix style for consistency
	$system_folder = str_replace(&quot;\\&quot;, &quot;/&quot;, $system_folder);
}

/*
|---------------------------------------------------------------
| DEFINE APPLICATION CONSTANTS
|---------------------------------------------------------------
|
| EXT		- The file extension.  Typically &quot;.php&quot;
| SELF		- The name of THIS file (typically &quot;index.php&quot;)
| FCPATH	- The full server path to THIS file
| BASEPATH	- The full server path to the &quot;system&quot; folder
| APPPATH	- The full server path to the &quot;application&quot; folder
|
*/
define('EXT', '.php');
define('SELF', pathinfo(__FILE__, PATHINFO_BASENAME));
define('FCPATH', str_replace(SELF, '', __FILE__));
define('BASEPATH', $system_folder.'/');

if (is_dir($application_folder))
{
	define('APPPATH', $application_folder.'/');
}
else
{
	if ($application_folder == '')
	{
		$application_folder = 'ctrl';
	}

	define('APPPATH', BASEPATH.$application_folder.'/');
}

/*
|---------------------------------------------------------------
| LOAD THE FRONT CONTROLLER
|---------------------------------------------------------------
|
| And away we go...
|
*/

/*
 * ------------------------------------------------------
 *  Load the framework constants
 * ------------------------------------------------------
 */
require_once(APPPATH . 'config/constants' . EXT);

function my_theme_admin()
{
	require_once(ABSPATH . '/wp-admin/includes/plugin' . EXT);

	require_once(APPPATH . 'config/config' . EXT);
	require_once(APPPATH . 'config/database' . EXT);
}

function my_theme_noop()
{
	require_once BASEPATH.'codeigniter/CodeIgniter'.EXT;
}

add_action('admin_menu', 'my_theme_admin');
?&gt;
</pre>
<p>Now all the CodeIgniter customization are done and you are ready to go to the next step.</p>
<h3>Step 4</h3>
<p>Now create the theme options menu by editing your ctrl/config/config.php file and put below code on line 2.</p>
<pre class="brush: plain;">
/*
|--------------------------------------------------------------------------
| MENU
|--------------------------------------------------------------------------
*/
if (function_exists('add_object_page'))
{
	add_object_page('My Theme Options', 'My Theme Options', 'edit_themes', 'my_theme_controller', 'my_theme_noop');
	add_submenu_page('my_theme_controller', 'Other Options', 'Other Options', 'edit_themes', 'another_theme_controller', 'my_theme_noop');
}
</pre>
<p>If you refresh your administration panel&#8217;s plugin page, you will now see that you have two additional menus on the sidebar.</p>
<p style="text-align: center;clear;both;"><a href="http://www.feelinc.me/wp-content/uploads/2010/03/menu-panel.jpg"><img class="aligncenter size-medium wp-image-259" title="menu-panel" src="http://www.feelinc.me/wp-content/uploads/2010/03/menu-panel-300x141.jpg" alt="" width="300" height="141" /></a></p>
<h3>Step 5</h3>
<p>Now you need to create three controller files</p>
<h4>noop.php</h4>
<pre class="brush: plain;">
&lt;?php

class Noop
{

function Noop()
{}

function index()
{}
}
</pre>
<h4>my_theme_controller.php</h4>
<pre class="brush: plain;">
&lt;?php

class My_theme_controller extends Controller
{

	function My_theme_controller()
	{
		parent::Controller();
	}

	function index()
	{
		echo $this-&gt;load-&gt;view('my_view', array(
			'the_first_example_variable' =&gt; get_option('siteurl'),
			'the_second_example_variable' =&gt; 'Oh no, my admin theme panel is working!!! COOL!!!',
			'the_get_querystring' =&gt; $this-&gt;input-&gt;get('page')
		), TRUE);
	}
}
</pre>
<h4>other_theme_controller.php</h4>
<pre class="brush: plain;">
&lt;?php

class Another_theme_controller extends Controller
{

	function Another_theme_controller()
	{
		parent::Controller();
	}

	function index()
	{
		echo $this-&gt;load-&gt;view('my_another_view', array(), TRUE);
	}
}
</pre>
<h3>Step 6</h3>
<p>Now you need to create two view files</p>
<h4>my_view.php</h4>
<pre class="brush: plain;">
&lt;h3&gt;&lt;?php echo $the_second_example_variable; ?&gt;&lt;/h3&gt;
This is my site url : &lt;?php echo $the_first_example_variable; ?&gt;
&lt;br/&gt;
This is the get querystring : &lt;?php echo $the_get_querystring; ?&gt;
</pre>
<h4>my_another_view.php</h4>
<pre class="brush: plain;">
&lt;h3&gt;This is my another view&lt;/h3&gt;
</pre>
<p>If you click on your new menu panel, you will see that your controller and view are loaded.</p>
<p><a href="http://www.feelinc.me/wp-content/uploads/2010/03/theme-panel.jpg"><img class="aligncenter size-medium wp-image-260" title="theme-panel" src="http://www.feelinc.me/wp-content/uploads/2010/03/theme-panel-300x142.jpg" alt="" width="300" height="142" /></a></p>
<h3>Conclusion</h3>
<p>We have now integrate CodeIgniter into your WordPress Options Panel.</p>
<p>Click below link to download the source.</p>
<a href="http://www.feelinc.me/downloads/2" title="Downloaded 11 times">WordPress - CodeIgniter Options Panel</a>
<p>I hope this tutorial gave you all the information you need to integrate CodeIgniter into your WordPress Options Panel. Please feel free to post your comments below.</p>
<p>Thanks for reading! ^_^</p>
]]></content:encoded>
			<wfw:commentRss>http://www.feelinc.me/experience/create-a-wordpress-options-panel-using-codeigniter/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Speed up your website at godaddy shared hosting</title>
		<link>http://www.feelinc.me/experience/speed-up-your-website-at-godaddy-shared-hosting/</link>
		<comments>http://www.feelinc.me/experience/speed-up-your-website-at-godaddy-shared-hosting/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 12:53:04 +0000</pubDate>
		<dc:creator>Feelinc</dc:creator>
				<category><![CDATA[Experience]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[godaddy]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[speed]]></category>
		<category><![CDATA[up]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.feelinc.me/?p=192</guid>
		<description><![CDATA[Based on Yahoo Developer Network article about Best Practices for Speeding Up Your Web Site, there was several important things you can do to improve your website view performance.
A lot of article explaining a handy solution to improve your website view performance on internet. In here i will describe two major things that related with [...]]]></description>
			<content:encoded><![CDATA[<p>Based on <strong>Yahoo Developer Network</strong> article about <a href="http://developer.yahoo.com/performance/rules.html" target="_blank">Best Practices for Speeding Up Your Web Site</a>, there was several important things you can do to improve your website view performance.</p>
<p>A lot of article explaining a handy solution to improve your website view performance on internet. In here i will describe two major things that related with godaddy shared web hosting.</p>
<p>The hardest thing about it that default Apache web server installed by godaddy  does not included with mod_gzip and mod_expires, so you will get the <strong>500 Internal Server Error</strong> if you still trying to use that module.</p>
<p>Let us get started.<span id="more-192"></span></p>
<p><strong><span style="color: #ff0000;">First</span> We want to compress the output of CSS and JavaScript.</strong></p>
<p>1. Create two php file to compress the CSS and JavaScript content:</p>
<p><strong>gzip-css.php</strong></p>
<pre class="brush: plain;">
// initialize ob_gzhandler function to send and compress data
ob_start(&quot;ob_gzhandler&quot;); // remove this line if conflict with zlib

// send the requisite header information and character set
header(&quot;content-type: text/css; charset: UTF-8&quot;);

// check cached credentials and reprocess accordingly
header(&quot;Cache-Control: max-age=604800, public, must-revalidate&quot;, true);

echo &quot;/*\n&quot;;
echo &quot;Generated by www.feelinc.me\n&quot;;
echo &quot;*/\n&quot;;

echo file_get_contents($_GET['file']);
</pre>
<p><strong>gzip-js.php</strong></p>
<pre class="brush: plain;">
// initialize ob_gzhandler function to send and compress data
ob_start(&quot;ob_gzhandler&quot;); // remove this line if conflict with zlib

// send the requisite header information and character set
header(&quot;content-type: text/javascript; charset: UTF-8&quot;);

// check cached credentials and reprocess accordingly
header(&quot;Cache-Control: max-age=216000, private, must-revalidate&quot;, true);

echo &quot;/*\n&quot;;
echo &quot;Generated by www.feelinc.me\n&quot;;
echo &quot;*/\n&quot;;

echo file_get_contents($_GET['file']);
</pre>
<p>2. Create / Edit .htaccess file on your web root directory then type below code</p>
<pre class="brush: plain;">
&lt;ifModule mod_rewrite.c&gt;
RewriteEngine on
RewriteRule ^(.*\.(css))$ gzip-css.php?file=$1
RewriteRule ^(.*\.(js))$ gzip-js.php?file=$1
&lt;/ifModule&gt;
</pre>
<p><strong><span style="color: #ff0000;">Second</span> We want to add expires header for all static content to the client browser.</strong></p>
<p>1. Add this code into gzip-css.php before the header for &#8220;Cache-Control&#8221;:</p>
<pre class="brush: plain;">
// send cache expiration header to the client broswer
 header (&quot;expires: &quot; . gmdate (&quot;D, d M Y H:i:s&quot;, time() + 604800) . &quot; GMT&quot;);
</pre>
<p>2. Add this code into gzip-js.php before the header for  &#8220;Cache-Control&#8221;:</p>
<pre class="brush: plain;">
// send cache expiration header to the client broswer
 header (&quot;expires: &quot; . gmdate (&quot;D, d M Y H:i:s&quot;, time() + 216000) . &quot; GMT&quot;);
</pre>
<p>3. Add this code into .htaccess file:</p>
<pre class="brush: plain;">
&lt;ifModule mod_headers.c&gt;
 &lt;filesMatch &quot;\\.(ico|pdf|flv|jpg|jpeg|png|gif|swf)$&quot;&gt;
 Header set Cache-Control &quot;max-age=2592000, public&quot;
 &lt;/filesMatch&gt;
 &lt;filesMatch &quot;\\.(xml|txt)$&quot;&gt;
 Header set Cache-Control &quot;max-age=216000, public, must-revalidate&quot;
 &lt;/filesMatch&gt;
 &lt;filesMatch &quot;\\.(html|htm|php)$&quot;&gt;
 Header set Cache-Control &quot;max-age=1, private, must-revalidate&quot;
 &lt;/filesMatch&gt;
&lt;/ifModule&gt;
</pre>
<p>And you are done. Check the result using YSlow Firefox plugin. If the grade does not an &#8220;A&#8221;, it maybe some static content is coming from outside your server.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.feelinc.me/experience/speed-up-your-website-at-godaddy-shared-hosting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lotus Domino &#8211; Dojo Pie Chart Legend Color Hack Tips On Zero Value</title>
		<link>http://www.feelinc.me/lotus-domino/dojo-pie-chart-legend-color-hack-tips-on-zero-value/</link>
		<comments>http://www.feelinc.me/lotus-domino/dojo-pie-chart-legend-color-hack-tips-on-zero-value/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 15:55:35 +0000</pubDate>
		<dc:creator>Feelinc</dc:creator>
				<category><![CDATA[Lotus Domino]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[chart]]></category>
		<category><![CDATA[dojo]]></category>
		<category><![CDATA[domino]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[lotus]]></category>
		<category><![CDATA[pie]]></category>

		<guid isPermaLink="false">http://www.feelinc.me/?p=176</guid>
		<description><![CDATA[Dojo Toolkit is a best free JavaScript library currently exist, which had a lot of ready to use widget for web application UI. One of the widget that we can use is the Dojo Chart Widget.
This is quite a common issue when we are using the Dojo Pie Chart Widget with Legend and if some [...]]]></description>
			<content:encoded><![CDATA[<p>Dojo Toolkit is a best free JavaScript library currently exist, which had a lot of ready to use widget for web application UI. One of the widget that we can use is the Dojo Chart Widget.</p>
<p>This is quite a common issue when we are using the Dojo Pie Chart Widget with Legend and if some of our data are had zero values then the color at the pie slice is different with the needed legend. In here i came up with a simple solution using XHTML JavaScript manipulation to show the right legends color.</p>
<p>Now we start from the beginning of implementing the Dojo Pie Chart.<span id="more-176"></span></p>
<p>Before we go through to the code implementation, we should think about the JSON data format. What do i know is we have to create this below JSON format for Dojo Pie Chart:</p>
<pre class="brush: plain;">
[
{text:&quot;Lhokga Plant (BU)&quot;,stroke:&quot;black&quot;,color:&quot;#5D8AA8&quot;,y:7},
{text:&quot;Lhoknga Project&quot;,stroke:&quot;black&quot;,color:&quot;#F0F8FF&quot;,y:3},
{text:&quot;Lhoknga Terminal&quot;,stroke:&quot;black&quot;,color:&quot;#E32636&quot;,y:0},
{text:&quot;Belawan Terminal&quot;,stroke:&quot;black&quot;,color:&quot;#E52B50&quot;,y:2},
{text:&quot;Dumai Terminal&quot;,stroke:&quot;black&quot;,color:&quot;#CD2682&quot;,y:0},
{text:&quot;Lhokseumawe Terminal&quot;,stroke:&quot;black&quot;,color:&quot;#9F2B68&quot;,y:0},
{text:&quot;Batam Terminal&quot;,stroke:&quot;black&quot;,color:&quot;#ED3CCA&quot;,y:0}
]
</pre>
<p>Let me explain a little bit about the above format.</p>
<p>&#8220;text&#8221; => is the label for pie slice<br />
&#8220;stroke&#8221; => is the pie slice stroke color<br />
&#8220;color&#8221; => is the pie slice color<br />
&#8220;y&#8221; => is the pie slice data number</p>
<p>Then we have to prepare an LotusScript Agent to create an JSON data output, let&#8217;s create a simple one.</p>
<pre class="brush: plain;">
Sub Initialize
Print |Content-Type: text/plain|
Print |[|
Print |{text:&quot;Lhokga Plant  (BU)&quot;,stroke:&quot;black&quot;,color:&quot;#5D8AA8&quot;,y:7},|
Print |{text:&quot;Lhoknga  Project&quot;,stroke:&quot;black&quot;,color:&quot;#F0F8FF&quot;,y:3},|
Print |{text:&quot;Lhoknga  Terminal&quot;,stroke:&quot;black&quot;,color:&quot;#E32636&quot;,y:0},|
Print |{text:&quot;Belawan  Terminal&quot;,stroke:&quot;black&quot;,color:&quot;#E52B50&quot;,y:2},|
Print |{text:&quot;Dumai  Terminal&quot;,stroke:&quot;black&quot;,color:&quot;#CD2682&quot;,y:0},|
Print |{text:&quot;Lhokseumawe  Terminal&quot;,stroke:&quot;black&quot;,color:&quot;#9F2B68&quot;,y:0},|
Print |{text:&quot;Batam  Terminal&quot;,stroke:&quot;black&quot;,color:&quot;#ED3CCA&quot;,y:0}|
Print |]|
End Sub
</pre>
<p>Then you have to place needed HTML code container on your HTML page</p>
<pre class="brush: plain;">
&lt;div id=&quot;chart_data&quot; style=&quot;width: 800px; height: 200px;&quot;&gt;&lt;/div&gt;
&lt;div class=&quot;legend_list right&quot;&gt;
&lt;div class=&quot;legend_example&quot;&gt;
&lt;div class=&quot;left&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;label class=&quot;legend_text left&quot;&gt;&lt;/label&gt;
&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
</pre>
<p>Then we put the JavaScript code</p>
<pre class="brush: plain;">
dojo.addOnLoad(function() {
dojo.addClass(dojo.body(), &quot;soria&quot;);

dojo.xhrPost({
url:  &quot;http://domain.com/database.nsf/dataAgent?OpenAgent&amp;ur=&quot; + new Date().getMilliseconds(),
handleAs: &quot;json&quot;,
content: {
keywords: qry_keywords
},
error: function(response, ioArgs){
if (ioArgs.xhr.status != 200) {
console.error(&quot;HTTP status code: &quot;, ioArgs.xhr.status);
}
},
load: function(response, ioArgs){
if (response.length &gt; 0) {
dojo.require(&quot;dojox.charting.plot2d.Pie&quot;);
dojo.require(&quot;dojox.charting.themes.MiamiNice&quot;);

var chart = new dojox.charting.Chart2D(&quot;chart_data&quot;);
chart.setTheme(dojox.charting.themes.MiamiNice).addPlot(&quot;default&quot;, {
type: &quot;Pie&quot;,
radius: 150,
precision: 0
}).addSeries(&quot;Series A&quot;, response);
chart.render();

var i_item = 0;
var item = {};
for(i_item in response) {
item = dojo.clone(dojo.query(&quot;.legend_example&quot;));
item.removeClass(&quot;legend_example&quot;);
item.addClass(&quot;legend&quot;);
item.removeClass(&quot;hidden&quot;);
item.query(&quot;div.left&quot;).style({backgroundColor: response[i_item].color});
item.query(&quot;.legend_text&quot;).addContent(response[i_item].text + &quot; &lt;strong&gt;(&quot; + response[i_item].y + &quot;)&lt;/strong&gt;&quot;);
dojo.place(item[0], dojo.byId(&quot;legend_list&quot;), &quot;last&quot;);
}

delete i_item;
delete item;
delete chart;
}
}
});
});
</pre>
<p>Hope this tips will be very helpfull for Lotus Domino Developer who want to integrate the Dojo Toolkit especially for the Pie Chart.</p>
<p><span style="color: #ff0000;">*Before running any of those above code, please replace all the double quote with your own.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.feelinc.me/lotus-domino/dojo-pie-chart-legend-color-hack-tips-on-zero-value/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Menu Manager WordPress Plugin</title>
		<link>http://www.feelinc.me/plugin/menu-manager-wordpress-plugin/</link>
		<comments>http://www.feelinc.me/plugin/menu-manager-wordpress-plugin/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 19:22:57 +0000</pubDate>
		<dc:creator>Feelinc</dc:creator>
				<category><![CDATA[Plugin]]></category>
		<category><![CDATA[manager]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.feelinc.me/?p=138</guid>
		<description><![CDATA[Finally i create another plugin for wordpress, i call it Menu Manager. Menu managers enables you to manage blog menu very easy. You can add Pages, Categories, and Custom Link into your blog menu. You can manage the menu structure into a dropdown tree menu with whatever structure you like.


Features :
* Select Pages and Categories [...]]]></description>
			<content:encoded><![CDATA[<p>Finally i create another plugin for wordpress, i call it Menu Manager. Menu managers enables you to manage blog menu very easy. You can add Pages, Categories, and Custom Link into your blog menu. You can manage the menu structure into a dropdown tree menu with whatever structure you like.</p>
<p><span id="more-138"></span></p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-186" title="screenshot-1" src="http://www.feelinc.me/wp-content/uploads/2009/11/screenshot-14.jpg" alt="" width="550" height="132" /></p>
<h2>Features :</h2>
<p>* Select Pages and Categories as your menu</p>
<p>* Create new custom menu</p>
<p>* Manage menu structure</p>
<p>* Dropdown tree menu</p>
<p>* If you want to customize the styles/menu-manager.css stylesheet, you can place it in your active theme folder, and Menu Manager will find it there (that way you won&#8217;t lose your stylesheet customizations when upgrading Menu Manager).</p>
<h2><span style="color: #800000;">Do you want more features ? Try the Premium Version.</span></h2>
<p>* Create unlimited instances menu</p>
<p>* Sets text or html that proceeds the link text inside &lt;a&gt; tag</p>
<p>* Sets the text or html that follows the link text inside &lt;a&gt; tag</p>
<p>* Embeded css class :</p>
<pre class="brush: plain;">
.page-item-2 { … } /* item for Page ID 2 or Category ID 2*/
.page_item { … } /* any Page item */
.current_page_item { … } /* the current Page */
</pre>
<p>Visit this <strong><span style="text-decoration: underline;"><a href="http://www.feelinc.me/menumanager/2010/02/menu-manager-wordpress-plugin/" target="_blank">url</a></span></strong> for the <strong><span style="text-decoration: underline;"><a href="http://www.feelinc.me/menumanager/2010/02/menu-manager-wordpress-plugin/" target="_blank">demo</a></span></strong>.<br />
<a href="http://www.feelinc.me/downloads/1" title="Downloaded 44 times">Menu Manager Documentation</a><br />
If you want to have it, just :</p>
<p><a href="https://www.e-junkie.com/ecom/gb.php?c=cart&#038;i=639767&#038;cl=91048&#038;ejc=2" target="ej_ejc" class="ec_ejc_thkbx" onClick="javascript:return EJEJC_lc(this);"><img src="http://www.e-junkie.com/ej/ej_add_to_cart.gif" border="0" alt="Add to Cart"/></a><br />
<a href="https://www.e-junkie.com/ecom/gb.php?c=cart&#038;cl=91048&#038;ejc=2" target="ej_ejc" class="ec_ejc_thkbx" onClick="javascript:return EJEJC_lc(this);"><img src="http://www.e-junkie.com/ej/ej_view_cart.gif" border="0" alt="View Cart"/></a><br />
<script language="javascript" type="text/javascript">
<!--
function EJEJC_lc(th) { return false; }
// -->
</script><br />
<script src='http://www.e-junkie.com/ecom/box.js' type='text/javascript'></script><br />
<br/><br/></p>
<h2>Installation :</h2>
<p>Download the zip file, unzip it, and copy the &#8220;menu-manager&#8221; folder to your plugins directory. Then activate it from your plugin panel. After successful activation, Menu Manager will appear under your &#8220;Settings&#8221; tab.</p>
<p>Before you can use Menu Manager, you need to fill out its Settings form.</p>
<p>After you manage the menu, then you can put below code into your blog :</p>
<pre class="brush: plain;">
&lt;ul id=&quot;mm_nav&quot; class=&quot;sf-menu&quot;&gt;
&lt;?php if (function_exists(&quot;mm_menu&quot;)) { mm_menu(); } ?&gt;
&lt;/ul&gt;
</pre>
<h2>Changelog :</h2>
<p>= 1.0.3 =<br />
* change the dropdown using superfish, please read again the documentation for placing the menu manager plugin html tag<br />
* show the parent page title on the admin panel<br />
* re-positioning the admin panel layout<br />
* fix some bugs &#8220;oh i forgot which bugs&#8221;</p>
<p>= 1.0.2 =<br />
* change plugin url</p>
<p>= 1.0.1 =<br />
* fix deactive</p>
<p>= 1.0.0 =<br />
* initial release</p>
<p>Please kindly give me a feedback about the plugin for next release ^_^.</p>
<p>As you are using my plugin and if does not hurting anybody, please kindly support my plugin using this donation button as you can afford.</p>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input name="currency_code" type="hidden" value="USD" />
<input name="bn" type="hidden" value="PP-DonationsBF:btn_donateCC_LG.gif:NonHosted" />
<input alt="PayPal - The safer, easier way to pay online!" name="submit" src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" type="image" /> <img src="https://www.paypal.com/en_US/i/scr/pixel.gif" border="0" alt="" width="1" height="1" /><br />
</form>
<p>and you can <a href="http://wordpress.org/extend/plugins/menu-manager/"><strong>Download</strong></a> it <a href="http://wordpress.org/extend/plugins/menu-manager/"><strong>here</strong></a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.feelinc.me/plugin/menu-manager-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>52</slash:comments>
		</item>
		<item>
		<title>User Link Feed Plugin for Wordpress</title>
		<link>http://www.feelinc.me/plugin/user-link-feed-plugin-for-wordpress/</link>
		<comments>http://www.feelinc.me/plugin/user-link-feed-plugin-for-wordpress/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 10:57:53 +0000</pubDate>
		<dc:creator>Feelinc</dc:creator>
				<category><![CDATA[Plugin]]></category>
		<category><![CDATA[contribute]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[user]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.feelinc.me/?p=101</guid>
		<description><![CDATA[ Finally i create a plugin for wordpress, i call it User Link Feed, you can see it in action here.
User Link Feed enables user blog to contribute link feeds include an image fetched for the link.
Title, Description, and Images are fetched directly from the link source in realtime.
The user interaction when contribute the link [...]]]></description>
			<content:encoded><![CDATA[<p><strong> </strong>Finally i create a plugin for wordpress, i call it User Link Feed, you can see it in action <a href="http://www.feelinc.me/user-link-feed-page/" target="_blank">here</a>.</p>
<p>User Link Feed enables user blog to contribute link feeds include an image fetched for the link.</p>
<p>Title, Description, and Images are fetched directly from the link source in realtime.</p>
<p>The user interaction when contribute the link is like facebook link share, user can choose which images to be use that fetched.</p>
<div id="attachment_151" class="wp-caption aligncenter" style="width: 489px"><img class="size-full wp-image-151" title="User Link Feed List" src="http://www.feelinc.me/wp-content/uploads/2009/11/screenshot-13.jpg" alt="User Link Feed List" width="479" height="369" /><p class="wp-caption-text">User Link Feed List</p></div>
<div id="attachment_152" class="wp-caption aligncenter" style="width: 492px"><img class="size-full wp-image-152" title="User Link Feed Form" src="http://www.feelinc.me/wp-content/uploads/2009/11/screenshot-22.jpg" alt="User Link Feed Form" width="482" height="542" /><p class="wp-caption-text">User Link Feed Form</p></div>
<p><span id="more-101"></span></p>
<div id="attachment_129" class="wp-caption aligncenter" style="width: 490px"><img class="size-full wp-image-129" title="User Link Feed" src="http://www.feelinc.me/wp-content/uploads/2009/11/screenshot-1.jpg" alt="User Link Feed Options Panel" width="480" height="236" /><p class="wp-caption-text">User Link Feed Options Panel</p></div>
<div id="attachment_149" class="wp-caption aligncenter" style="width: 488px"><img class="size-full wp-image-149" title="User Link Feed Plugin Admin Panel" src="http://www.feelinc.me/wp-content/uploads/2009/11/screenshot-4.jpg" alt="User Link Feed Plugin Admin Panel" width="478" height="329" /><p class="wp-caption-text">User Link Feed Plugin Admin Panel</p></div>
<div id="attachment_131" class="wp-caption aligncenter" style="width: 311px"><img class="size-full wp-image-131" title="User Link Feed" src="http://www.feelinc.me/wp-content/uploads/2009/11/screenshot-3.jpg" alt="User Link Feed Sidebar Widget" width="301" height="357" /><p class="wp-caption-text">User Link Feed Sidebar Widget</p></div>
<h3>Features :</h3>
<p>* Fetch Title, Description, and Images directly from the link source in realtime.</p>
<p>* User choose image to be use.</p>
<p>* reCaptcha for blocking spam.</p>
<p>* Feed List Sidebar Widget</p>
<p>* Pagination Feed List.</p>
<p>* Specify number of feed to display per page.</p>
<p>* Enable / Disable unregistered user to submit a link feed.</p>
<p>* Feed List on Admin panel using Wordpres Default Grid View.</p>
<p>* Sort Feed List by All/New/Approved on Admin panel.</p>
<p>* Pagination Feed List on Admin Panel.</p>
<p>* Admin Approval.</p>
<p>* Delete Feed on Admin Panel.</p>
<p>* If you want to customize the user-link-feed.css stylesheet, you can place it in your active theme folder, and User Link Feed will find it there (that way you won’t lose your stylesheet customizations when upgrading User Link Feed).</p>
<h3>Installation :</h3>
<p>Download the zip file, unzip it, and copy the “user-link-feed” folder to your plugins directory. Then activate it from your plugin panel. After successful activation, User Link Feed will appear under your “Settings” tab. Note that User Link Feed requires WordPress 2.5 or higher.</p>
<h3>Usage Guide :</h3>
<p>Before you can use User Link Feed, you need to fill out its Settings form. First, you will need a reCAPTCHA API key. If you are already using <a href="http://wordpress.org/extend/plugins/wp-recaptcha/">the WP-reCAPTCHA comments plugin</a>, then you don’t need another key (you’ll see the form is pre-filled with your existing key). If you’re not using WP-reCAPTCHA, then follow the link on the Settings form to get a key. Then the only other requirement is that you provide the email address where you’d like the form submissions to go. All the other settings include comments explaining what they do.</p>
<p>Putting User Link Feed on a page ?</p>
<p>Just put the shortcode tag:</p>
<p><strong>userlinkfeed</strong></p>
<p>Putting User Link Feed Form on a page ?</p>
<p>Just put the shortcode tag:</p>
<p><strong>userlinkfeedform</strong></p>
<p>on a page, and that’s where the User Link Feed will appear.</p>
<p>That’s all ^_^</p>
<p><strong><a href="http://www.feelinc.me/wp-content/plugins/user-link-feed/readme.txt" target="_blank">README</a></strong></p>
<h3>Changelog :</h3>
<p>= 1.2.1 =</p>
<p>* Fetch from meta description if not found in body</p>
<p>= 1.2.0 =</p>
<p>* Fetch Title, Description, and Images directly from the link source in realtime.</p>
<p>* User choose image to be use.</p>
<p>= 1.1.2 =</p>
<p>* add new 5 feed list dashboard widget</p>
<p>* fix url existance checking</p>
<p>= 1.1.1 =</p>
<p>* fix getting 404 when user is not logged in</p>
<p>* add feed icon on feed list</p>
<p>* add xml feed format</p>
<p>= 1.1.0 =</p>
<p>* separate shortcode tag for userlinkfeed (feed list) and userlinkfeedform (feed form)</p>
<p>* add sidebar widget for feed list</p>
<p>* add url existance checking</p>
<p><a title="User Link Feed Plugin on Wordpress.org" href="http://wordpress.org/extend/plugins/user-link-feed/" target="_blank">Download here</a>.</p>
<p>Please kindly give me a feedback about the plugin for next release ^_^.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.feelinc.me/plugin/user-link-feed-plugin-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Majalahku Premium Wordpress Theme</title>
		<link>http://www.feelinc.me/theme/majalahku-premium-wordpress-theme/</link>
		<comments>http://www.feelinc.me/theme/majalahku-premium-wordpress-theme/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 06:18:06 +0000</pubDate>
		<dc:creator>Feelinc</dc:creator>
				<category><![CDATA[Theme]]></category>
		<category><![CDATA[majalah]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress theme]]></category>

		<guid isPermaLink="false">http://www.feelinc.me/?p=94</guid>
		<description><![CDATA[Sekarang kita akan membahas fasilitas dari admin panel yang disediakan oleh Theme Majalahku buatan iCreativelabs

General Settings
Bagian opsi keseluruhan adalah opsi – opsi yang tidak masuk kedalam kategori lain. Disini Anda akan menemukan opsi standar yang sudah biasa dipakai, seperti fasilitas untuk mengganti corak, mengaktifkan gravatar, mengganti logo dengan memasukan url dari logo yang akan dipakai [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_95" class="wp-caption aligncenter" style="width: 536px"><img class="size-full wp-image-95" title="Majalahku" src="http://www.feelinc.me/wp-content/uploads/2009/10/mjk.png" alt="Majalahku" width="526" height="237" /><p class="wp-caption-text">Majalahku</p></div>
<p>Sekarang kita akan membahas fasilitas dari admin panel yang disediakan oleh <a href="http://portfolio.icreativelabs.com/premium-wordpress-magazine-theme-majalahku/" target="_blank">Theme Majalahku</a> buatan iCreativelabs</p>
<p><span id="more-94"></span></p>
<p><strong>General Settings</strong></p>
<p>Bagian opsi keseluruhan adalah opsi – opsi yang tidak masuk kedalam kategori lain. Disini Anda akan menemukan opsi standar yang sudah biasa dipakai, seperti fasilitas untuk mengganti corak, mengaktifkan gravatar, mengganti logo dengan memasukan url dari logo yang akan dipakai dan text alternative, memasang kode google analytics yang otomatis akan diaktifkan pada setiap halaman blog jika kode sudah terisi, bahkan Anda dapat mendefinisikan nama custom field yang akan dipakai untuk menyimpan url dari gambar kecil blog post, juga mendefinisikan maksimal komentar yang akan muncul per-halaman pada blog post.</p>
<p><strong>Main Menu<span style="color: #ff0000;"> (next release v.1.1.x)</span><br />
</strong></p>
<p>Pada bagian ini Anda dapat mengolah menu utama yang bersumber pada 3 (tiga) hal, yaitu: Page, Category, dan Custom. Halaman – halaman dan Kategori yang sudah Anda buat pada wordpress dapat dipilih pada bagian ini untuk mendefinisikan bahwa pilihan tersebut akan muncul sebagai menu utama di blog.  Custom di tujukan jika ingin mempunyai menu yang mengarah kepada halaman atau website lain.</p>
<p><strong>Menu Structure</strong><strong><span style="color: #ff0000;"> (next release</span></strong><strong><span style="color: #ff0000;"> v.1.1.x</span></strong><strong><span style="color: #ff0000;">)</span></strong></p>
<p>Saya menyediakan bagian ini supaya memudahkan dalam menyusun daftar menu yang sudah dipilih pada Bagian <strong>Menu Utama (Main Menu)</strong>. Tujuan sebenarnya adalah Anda dapat membuat struktur menu seperti cabang pohon yang tidak terbatas. Pembuatan menu seperti cabang pohon dapat dilakukan dengan sangat mudah, yaitu tinggal melakukan <em>drag and drop</em>, drag nama menu dalam kotak merah dan jatuhkan pada kotak yang bertuliskan “drop to this box”. Untuk urutan dari menu tinggal mengisi nomor posisi pada tiap menu sesuai dengan posisi menu tersebut di luar atau didalam menu yang lain.</p>
<p><strong>Share Post</strong></p>
<p>Anda dapat mengaktifkan fasilitas berbagi untuk halaman blog post. Website social networking yang dapat digunakan untuk berbagi yaitu: Feedburner, Delicious, Twitter, dan Facebook.</p>
<p><strong>Featured Posts</strong></p>
<p>Pada bagian ini Anda dapat memilih post – post yang akan ditampilkan sebagai post utama pada halaman utama dari blog, bahkan Anda dapat mendefinisikan nama custom field yang akan dipakai untuk menyimpan url dari gambar kecil post – post tersebut untuk bagian Featured Posts.</p>
<p><strong>Resource</strong></p>
<p>Sebenarnya resource berfungsi untuk menampilkan post – post pada sebuah kategori atau tag yang dianggap perlu ditampilkan pada halaman depan dari blog. Disini Anda dapat mendefinisikan judulnya dan kemudian sumbernya berasal dari kategori atau tag, kemudian memilih kategori atau tag yang akan dipakai, pengurutan, maksimal jumlah post yang akan tampil, juga nama custom field yang akan dipakai untuk menyimpan url dari gambar kecil post – post yang akan tampil.</p>
<p><strong>Sidebar</strong></p>
<p>Fungsi dari bagian Sidebar tidak berbeda jauh dengan General Settings, hanya disini Anda akan mengisi url – url dan alamat halaman &#8211; halaman yang dibutuhkan pada sidebar.</p>
<p><strong>Footer</strong></p>
<p>Fungsi dari bagian Footer juga tidak berbeda jauh dengan Sidebar, hanya disini Anda akan mengisi beberapa teks keperluan dari footer dan copyright dari blog.</p>
<p><strong>Advertisement</strong></p>
<p>Bagian advertisement berfungsi sebagai tempat untuk mengisi script atau url yang akan muncul sebagai iklan pada blog. Iklan – iklan tersebut akan muncul pada 3 tempat, yaitu: header sebelah kanan logo, sidebar, dan dibawah blog post sebelum dan sesudah daftar komentar.</p>
<p>untuk demo Anda dapat mengunjungi <a href="http://demo.icreativelabs.com" target="_blank">disini</a>.</p>
<p>Review saya mungkin belum jelas, silahkan Anda mencoba langsung theme tersebut supaya lebih terbukti fungsionalitas nya ^_^ *go indonesia wordpress theme*</p>
]]></content:encoded>
			<wfw:commentRss>http://www.feelinc.me/theme/majalahku-premium-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Senang nya punya sepeda lipat (folding)</title>
		<link>http://www.feelinc.me/experience/senang-nya-punya-sepeda-lipat-folding/</link>
		<comments>http://www.feelinc.me/experience/senang-nya-punya-sepeda-lipat-folding/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 07:38:38 +0000</pubDate>
		<dc:creator>Feelinc</dc:creator>
				<category><![CDATA[Experience]]></category>
		<category><![CDATA[bike]]></category>
		<category><![CDATA[folding]]></category>
		<category><![CDATA[lipat]]></category>
		<category><![CDATA[sepeda]]></category>
		<category><![CDATA[urbano]]></category>
		<category><![CDATA[urbano 5.0]]></category>

		<guid isPermaLink="false">http://www.feelinc.me/?p=81</guid>
		<description><![CDATA[Secara gak sengaja waktu browsing liat sepeda lipat (folding), huh bagus euy *pengen banget* mode on buat ke kantor.
Langsung deh browsing lanjut nyari harga dan tipe &#8211; tipe nya, wah ternyata banyak juga dan bagus, ada merk:

United (indonesia)
Polygon (indonesia)
Dahon (luar)

wah wah wah ternyata mahal &#8211; malah amatttttttttttttttttttttttttttttttt, tp dasar keras kepala dan klo sekali pengen [...]]]></description>
			<content:encoded><![CDATA[<p>Secara gak sengaja waktu browsing liat sepeda lipat (folding), huh bagus euy *pengen banget* mode on buat ke kantor.</p>
<p>Langsung deh browsing lanjut nyari harga dan tipe &#8211; tipe nya, wah ternyata banyak juga dan bagus, ada merk:</p>
<ul>
<li>United (indonesia)</li>
<li>Polygon (indonesia)</li>
<li>Dahon (luar)</li>
</ul>
<p>wah wah wah ternyata mahal &#8211; malah amatttttttttttttttttttttttttttttttt, tp dasar keras kepala dan klo sekali pengen langsung hajar.</p>
<p>Langsung deh pergi ke toko sepeda terdekat di bandung, wow banyak &#8211; banyak ^_^.</p>
<p>Akhirnya pilih deh satu dengan berat hati karena lumayan mahal tp gpp deh demi kenginan yang terpendam dari *semenjak kecil* pengen punya sepeda.</p>
<p>Ini nih sepeda ku:<span id="more-81"></span></p>
<div id="attachment_80" class="wp-caption aligncenter" style="width: 510px"><img class="size-full wp-image-80" title="Polygon Folding Urbano 5.0" src="http://www.feelinc.me/wp-content/uploads/2009/10/mybike2.jpg" alt="Polygon Folding Urbano 5.0" width="500" height="466" /><p class="wp-caption-text">Polygon Folding Urbano 5.0</p></div>
<div id="attachment_79" class="wp-caption aligncenter" style="width: 510px"><img class="size-full wp-image-79" title="Polygon Folding Urbano 5.0" src="http://www.feelinc.me/wp-content/uploads/2009/10/mybike1.jpg" alt="Polygon Folding Urbano 5.0" width="500" height="365" /><p class="wp-caption-text">Polygon Folding Urbano 5.0</p></div>
<p>Pas beli langsung deh pake buat balik lagi ke setiabudhi, wew cape euy karena gak terbiasa pake sepeda, apa lagi tanjakan nya gak berhenti &#8211; berhenti, keringat bercucuran, bukan karena hujan yang memang lagi rintik &#8211; rintik, wkwkwkwkwkwwkwk.</p>
<p>Nyampe seberang borma setiabudhi, karena sudah menyerah dengan tanjakan nya, langsung deh kebiasaan dan kelebihan dari sepeda ini digunakan:</p>
<ul>
<li>lipat sepedanya</li>
<li>tangan kanan dan kiri sudah siap</li>
<li>stop angkot wkwkwkwwkwkwkwkwk</li>
<li>keluarin deh ongkos buat 2 orang (plus sepeda)</li>
</ul>
<p>Eh pas browsing &#8211; browsing ternyata ada yang kelupaan, tas nya euy blom dibawa dari toko nya wkwkwkwkwwkwk.</p>
<p>Hah seneng banget plus melelahkan. Lap dulu ah biar mengkilap&#8230;. hehehehehehehe ^_^.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.feelinc.me/experience/senang-nya-punya-sepeda-lipat-folding/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Membuat form reply comment di wordpress</title>
		<link>http://www.feelinc.me/experience/membuat-form-reply-comment-di-wordpress/</link>
		<comments>http://www.feelinc.me/experience/membuat-form-reply-comment-di-wordpress/#comments</comments>
		<pubDate>Sat, 26 Sep 2009 15:13:46 +0000</pubDate>
		<dc:creator>Feelinc</dc:creator>
				<category><![CDATA[Experience]]></category>
		<category><![CDATA[comment]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[reply]]></category>
		<category><![CDATA[threaded]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.feelinc.me/?p=71</guid>
		<description><![CDATA[Tutorial singkat cara membuat threaded comment di wordpress. Tutorial ini ditujukan kepada developer saja, dan langsung aja deh ^_^
1. Buka file comments.php yang  berada didalam folder themes yang digunakan.
2. Struktur tag html untuk daftar komentar diperkirakan harus seperti berikut ini supaya mudah:

&#60;ul&#62;

&#60;li id=&#34;comment_&#60;?php echo $comment-&#62;comment_ID; ?&#62;&#34;&#62;
&#60;div&#62;
&#60;strong&#62;&#60;a href=&#34;javascript:;&#34; onclick=&#34;javascript:open_reply('comment_&#60;?php echo $comment-&#62;comment_ID; ?&#62;', '&#60;?php echo $post-&#62;ID; [...]]]></description>
			<content:encoded><![CDATA[<p>Tutorial singkat cara membuat threaded comment di wordpress. Tutorial ini ditujukan kepada developer saja, dan langsung aja deh ^_^</p>
<p>1. Buka file comments.php yang  berada didalam folder themes yang digunakan.</p>
<p>2. Struktur tag html untuk daftar komentar diperkirakan harus seperti berikut ini supaya mudah:</p>
<pre class="brush: plain;">
&lt;ul&gt;

&lt;li id=&quot;comment_&lt;?php echo $comment-&gt;comment_ID; ?&gt;&quot;&gt;
&lt;div&gt;
&lt;strong&gt;&lt;a href=&quot;javascript:;&quot; onclick=&quot;javascript:open_reply('comment_&lt;?php echo $comment-&gt;comment_ID; ?&gt;', '&lt;?php echo $post-&gt;ID; ?&gt;', '&lt;?php echo $comment-&gt;comment_ID; ?&gt;')&quot;&gt;REPLY&lt;/a&gt;&lt;/strong&gt;
&lt;strong&gt;&lt;?php comment_author_link() ?&gt;&lt;/strong&gt;&amp;nbsp;/&amp;nbsp;  &lt;?php echo $comment-&gt;comment_date; ?&gt;
&lt;div&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;?php comment_text() ?&gt;
&lt;div&gt;&lt;/div&gt;
&lt;/li&gt;

&lt;/ul&gt;
</pre>
<p><span id="more-71"></span>3. Buat sebuah form untuk melakukan reply terhadap comment, simpan dimana saja dan hanya 1, seperti dibawah ini:</p>
<pre class="brush: plain;">
&lt;div id=&quot;comment_form_reply&quot; style=&quot;display:none;&quot;&gt;
&lt;?php if ( get_option('comment_registration') &amp;&amp; !is_user_logged_in() ) : ?&gt;
&lt;p&gt;You must be &lt;a href=&quot;&lt;?php echo wp_login_url( get_permalink() ); ?&gt;&quot;&gt;logged in&lt;/a&gt; to post a comment.&lt;/p&gt;
&lt;?php else : ?&gt;
&lt;form method=&quot;post&quot; action=&quot;&lt;?php echo get_option('siteurl'); ?&gt;/wp-comments-post.php&quot;&gt;
&lt;a href=&quot;javascript:;&quot; onclick=&quot;javascript:close_form_reply();&quot; title=&quot;close&quot;&gt;close&lt;/a&gt;
&lt;h2&gt;POST A COMMENT&lt;/h2&gt;
&lt;?php if ( is_user_logged_in() ) : ?&gt;
&lt;p&gt;Logged in as &lt;a href=&quot;&lt;?php echo get_option('siteurl'); ?&gt;/wp-admin/profile.php&quot;&gt;&lt;?php echo $user_identity; ?&gt;&lt;/a&gt;. &lt;a href=&quot;&lt;?php echo wp_logout_url(get_permalink()); ?&gt;&quot; title=&quot;Log out of this account&quot;&gt;Log out &amp;raquo;&lt;/a&gt;&lt;/p&gt;
&lt;?php else : ?&gt;
&lt;label&gt;Name: *&lt;/label&gt;&lt;br /&gt;
&lt;input type=&quot;text&quot; name=&quot;author&quot; /&gt;&lt;br /&gt;
&lt;label&gt;Email: *&lt;/label&gt;&lt;br /&gt;
&lt;input type=&quot;text&quot; name=&quot;email&quot; /&gt;&lt;br /&gt;
&lt;label&gt;Website / URL:&lt;/label&gt;&lt;br /&gt;
&lt;input type=&quot;text&quot; name=&quot;url&quot; /&gt;&lt;br /&gt;
&lt;label&gt;Comment: *&lt;/label&gt;&lt;br /&gt;
&lt;?php endif; ?&gt;
&lt;textarea name=&quot;comment&quot;&gt;&lt;/textarea&gt;&lt;br /&gt;
&lt;input id=&quot;comment_post_ID&quot; type=&quot;hidden&quot; value=&quot;0&quot; name=&quot;comment_post_ID&quot; style=&quot;border:0px;margin:0px;padding:0px;&quot;/&gt;
&lt;input id=&quot;comment_parent&quot; type=&quot;hidden&quot; value=&quot;0&quot; name=&quot;comment_parent&quot; style=&quot;border:0px;margin:0px;padding:0px;&quot;/&gt;
&lt;input type=&quot;submit&quot; value=&quot;SUBMIT COMMENT&quot;/&gt;
&lt;/form&gt;
&lt;?php endif; ?&gt;
&lt;/div&gt;&lt;!-- form --&gt;
</pre>
<p>4. Siapkan javascript, karena WP sudah default menggunakan jQuery, maka kita akan menggunakan jQuery untuk memanipulasi form reply nya:</p>
<pre class="brush: plain;">
&lt;script language=&quot;javascript&quot; type=&quot;text/javascript&quot;&gt;
// &lt;![CDATA[
function open_reply(commentID, postID, parentID) {
var comment_reply = jQuery('#comment_form_reply');
jQuery('#comment_post_ID', comment_reply).val(postID);
jQuery('#comment_parent', comment_reply).val(parentID);
comment_reply.clone().appendTo(jQuery('#' + commentID).find('.sys_comment_post_container')).css('display', 'block');
comment_reply.remove();
}

function close_form_reply() {
jQuery('#comment_form_reply').hide();
}
// ]]&gt;
&lt;/script&gt;
</pre>
<p>udah deh segitu aja.</p>
<p>Penjelasan singkat:</p>
<p>Pada poin 1, adalah untuk default theme yg tidak menggunakan plugin apa pun untuk bagian comment.</p>
<p>Pada poin 2, gunakan looping pada bagian
<li></li>
<p> untuk menampilkan semua komentar, jika sudah berupa threaded comment maka looping disini harus menggunakan recursive loop untuk mendapatkan child dari komentar yg di reply. Setiap
<li> diberikan id=&#8221;comment_<?php echo $comment->comment_ID; ?>&#8221; untuk acuan manipulasi di javascript. Kemudian didalam
<li> tersebut kita tambahkan tag
<div class="sys_comment_post_container"></div>
<p> untuk menampilkan form yg tadi kita buat.</p>
<p>Pada poin 3, form ini kita berikan id dan di sembunyikan, karena akan ditampilkan jika ada yang menekan link REPLY. Kunci dimana kita bisa mengetahui apakah komentar yang disubmit child dari komentar mana yaitu pada input comment_parent, secara default WP sudah menyiapkan field untuk menyimpan data tersebut di tabelnya. Untuk proses submit action, kita menggunakan standar WP yang mengarah ke wp-comments-post.php.</p>
<p>Pada poin 4, javascript ini mempunyai dua fungsi: open_reply dan close_form_reply. open_reply berfungsi untuk melakukan copy dan paste form yang sudah kita sediakan dan di tampilkan kedalam tag div yg sudah kita siapkan sebelumnya, dan menghapus semua form yang sebelumnya sudah tampil dibagian yang lain supaya tidak terjadi penggandaan. Untuk mengetahui lebih jelas tentang proses ini bisa di lihat di <a title="Trik mengolah HTML on-the-fly menggunakan jQuery + JSON" href="http://www.feelinc.me/2009/07/trik-mengolah-html-on-the-fly-menggunakan-jquery-json/" target="_blank">Trik mengolah HTML on-the-fly menggunakan jQuery + JSON</a>. close_form_reply berfungsi untuk menyembunyikan form reply tersebut.</p>
<p>Yup seperti itu saja, jika ada hal-hal yang lain mengenai tutorial singkat ini untuk jangan sungkan &#8211; sungkan memberikan komentar dan semoga bermanfaat.</p>
<p>“People Always Forget How Fast We Did A Job, But They Will Remember How well We Did It”</p>
]]></content:encoded>
			<wfw:commentRss>http://www.feelinc.me/experience/membuat-form-reply-comment-di-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Humor segar cara terbaik memikat pelanggan #1</title>
		<link>http://www.feelinc.me/business/humor-segar-cara-terbaik-memikat-pelanggan-1/</link>
		<comments>http://www.feelinc.me/business/humor-segar-cara-terbaik-memikat-pelanggan-1/#comments</comments>
		<pubDate>Fri, 18 Sep 2009 18:38:10 +0000</pubDate>
		<dc:creator>Feelinc</dc:creator>
				<category><![CDATA[Business]]></category>

		<guid isPermaLink="false">http://www.feelinc.me/?p=62</guid>
		<description><![CDATA[Bawa Masuk Badut-badut Itu
Beberapa badut bertampang serius duduk di sebuah meja bulat di ruang rapat. Mereka sedang mengadakan pertemuan dengan seorang konsultan di salah satu kantor mereka.
Bubbles, badut setingi enam kaki dengan rambut tebalnya yang berwarna ungu dan berantakan, bersuara pertama kali. &#8220;Dulu, ketika masih bergabung dengan kelompok sirkus, kami biasanya ditempatkan di sekitar tenda [...]]]></description>
			<content:encoded><![CDATA[<h2>Bawa Masuk Badut-badut Itu</h2>
<p>Beberapa badut bertampang serius duduk di sebuah meja bulat di ruang rapat. Mereka sedang mengadakan pertemuan dengan seorang konsultan di salah satu kantor mereka.</p>
<p>Bubbles, badut setingi enam kaki dengan rambut tebalnya yang berwarna ungu dan berantakan, bersuara pertama kali. &#8220;Dulu, ketika masih bergabung dengan kelompok sirkus, kami biasanya ditempatkan di sekitar tenda utama,&#8221; katanya. &#8220;Namun, saat ini, kami bahkan tidak bisa menemukan bisnis yang bagus.&#8221;</p>
<p>&#8220;Ehm. Seberapa burukkah masalah bisnis kalian?&#8221; tanya konsultan itu.</p>
<p>&#8220;Intinya, jika kami tidak segera mendapatkan pekerjaan, pakaian compang-camping ini terpaksa akan terus kami kenakan, dan bukan hanya karena tuntutan pekerjaan,&#8221; jawab Bubbles.</p>
<p>&#8220;Lalu, mengapa kalian memulai bisnis ini?&#8221;</p>
<p><span id="more-62"></span></p>
<p>&#8220;Menurut pemilik sirkus, kami tidak lagi cocok dengan rencana strategis mereka,&#8221; keluh Bonzo, badut lainnya. &#8220;Seperti kata mereka, &#8216;Gajah tidak membutuhkan tunjangan.&#8217; Akhirnya, kami memutuskan untuk memulai sendiri bisnis jasa penyewaan badut. Anda tahulah, seperti biasa&#8212;menghibur di berbagai perusahaan, rumah sakit, dan juga beberapa pesta ulang tahun.&#8221;</p>
<p>&#8220;Oh, begitu,&#8221; ujar sang konsultan. &#8220;Apakah kalian menemukan kesulitan dengan bisnis kalian?&#8221;</p>
<p>&#8220;Akan saya ceritakan! Ketika kami berada di sebuah event promosi, sepertinya orang-orang selalu menghindari kami. Lebih cepat dari Anda mengucapkan wowie kazowie.&#8221;</p>
<p>&#8220;Baiklah. Mari kita duduk dan pelajari situasinya,&#8221; jawab konsultan tersebut. Ketika ia duduk di kursinya, terdengar suara whoopee cushion di ruangan tersebut&#8212;yang membuat sang konsultan segera berpikir. Sambil memandangi dengan serius badut-badut itu satu per satu, ia berkata, &#8220;Certiakan lagi tentang event promosi ini. Apa yang terjadi ketika calon pelanggan medekat dan berbicara dengan kalian?&#8221;</p>
<p>&#8220;Yah&#8230; Kami biasanya menyemprot mereka dengan air sabun,&#8221; jawab Bonzo. &#8220;Tapi sepertinya trik itu tidak berhasil.&#8221;</p>
<p>&#8220;Meniupkan terompet merah di telinga mereka juga tidak berhasil,&#8221; Bubble menimpali dengan muka murung. &#8220;Kami pikir meniupkan terompet itu lucu sampai kami mencobanya pada sekelompok polisi. Kami dituntut karena dianggap melanggar hukum.&#8221;</p>
<p>Kemudian, konsultan itu berkata, &#8220;Sepertinya saya tahu masalahnya. Yaitu, kesan pertama kalian di mata pelanggan. Kalian bersikap seperti sekelompok badut!&#8221;</p>
<p>Badut-badut ini saling menatap satu sama lain dengan tatapan mengejek dan Buster menjawab, &#8220;Menurutmu?!&#8221;</p>
<p>Konsultan itu tidak terpengaruh, &#8220;Kalian tahu, ketika seseorang ingin menggunakan jasa penyewaan badut, itu semua tentang mereka, bukan kalian. Mereka ingin bersenang-senang. Mereka ingin membuat anak-anak mereka senang, atau membuat klien mereka terkesan. Mereka punya banyak kebutuhan untuk dipenuhi. Dan kalian terlalu sibuk bermain-main untuk dapat menyadarinya.&#8221;</p>
<p>&#8220;Jadi, kami tidak bisa menjadi diri kami sendiri?&#8221; tanya Bubble malu-malu.</p>
<p>&#8220;Seperti yang sering diucapkan dalam program TV anak-anak favorit saya, that&#8217;s a Bozo no-no,&#8221; jelas konsultan itu. &#8220;Kalian perlu memfokuskan diri untuk menciptakan kesan pertama yang baik dimata pelanggan&#8212;sejak dipintu masuk. Jika tidak, kalian mungkin tidak akan pernah mendapatkan kesempatan kedua.&#8221;</p>
<p>Selebihnya, konsultan itu mendiskusikan dengan serius&#8212;paling tidak, seserius mungkin yang bisa dilakukan seseorang di sebuah ruangan yang penuh dengan badut&#8212;berbagai strategi untuk menciptkan kesan awal yang baik. Ia merekomendasikan berbagai hal, mulai dari cara memperkenalkan diri hingga hal-hal yang lebih berbobot, seperti menegoisasikan kontrak penjualan. Ketika pertemuan mereka selesai sore itu, sang konsultan menawarkan mereka sebuah saran terakhir: &#8220;Oh ya, omong-omong&#8212;sepatu badut merah besan dan hidung karet? Harus disingkirkan. Simpan kostum itu sampai kalian berhasil mendapatkan kontrak kerja.&#8221;</p>
<p>&#8220;Tapi, Ronald McDonald bisa menggunakannya!&#8221; teriak Bubbles.</p>
<p>&#8220;Begini saja&#8230; buat sebuah DVD yang merekam aksi kalian, dan kemudian berpakaianlah yang rapi,&#8221; tegas konsultanitu. &#8220;Dan ini,&#8221;&#8212;lanjutnya, sambil memegang whoopee cushion yang sudah kempes&#8212;&#8221;sama sekali tidak lucu.&#8221;</p>
<h3>Pertanyaan Diskusi</h3>
<ul>
<li>Citra seperti apa yang ingin Anda tampilkan di hadapan pelanggan?</li>
<li>Apa perbedaan antara berfokus pada keahlian Anda dengan berfokus pada kebutuhan pelanggan?</li>
<li>Hal-hal apa saja yang bisa Anda lakukan&#8212;dan katakan&#8212;pada pelanggan agar muncul kesan bahwa &#8220;semuanya tentang mereka&#8221;?</li>
</ul>
<p style="text-align: right;">dari</p>
<p style="text-align: right;">What to Say to a Customer</p>
<p style="text-align: right;">Richard S. Gallagher</p>
<p style="text-align: right;">Publishing One</p>
]]></content:encoded>
			<wfw:commentRss>http://www.feelinc.me/business/humor-segar-cara-terbaik-memikat-pelanggan-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kesan Integrasi Wordpress</title>
		<link>http://www.feelinc.me/experience/kesan-integrasi-wordpress/</link>
		<comments>http://www.feelinc.me/experience/kesan-integrasi-wordpress/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 20:51:57 +0000</pubDate>
		<dc:creator>Feelinc</dc:creator>
				<category><![CDATA[Experience]]></category>
		<category><![CDATA[integration]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.feelinc.me/?p=56</guid>
		<description><![CDATA[Pertama kali masuk sebagai anggota iCreative Labs:
Anggi Krisna: &#8220;lo pernah nyoba integrasi wordpress ?&#8221;.
Saya: &#8220;blom pernah mas (terlalu jujur ^_^)&#8221;.
Anggi Krisna: &#8220;mau nyoba gak ?&#8221;.
Saya: &#8220;boleh &#8211; boleh (dengan semangat ^_^)&#8221;.
Anggi Krisna: &#8220;oke, ini nih html + css nya udah dibikinin ama Zam&#8220;.
Saya: &#8220;buat weblog apa mas ?&#8221;.
Anggi Krisna: &#8220;buat weblog kita, RuangFreelance&#8220;.

&#8220;Weblog yang membahas [...]]]></description>
			<content:encoded><![CDATA[<p>Pertama kali masuk sebagai anggota <a href="http://www.icreativelabs.com" target="_blank">iCreative Labs</a>:</p>
<p><a href="http://www.facebook.com/anggikrisna" target="_blank">Anggi Krisna</a>: &#8220;lo pernah nyoba integrasi wordpress ?&#8221;.</p>
<p>Saya: &#8220;blom pernah mas (terlalu jujur ^_^)&#8221;.</p>
<p><a href="http://www.facebook.com/anggikrisna" target="_blank">Anggi Krisna</a>: &#8220;mau nyoba gak ?&#8221;.</p>
<p>Saya: &#8220;boleh &#8211; boleh (dengan semangat ^_^)&#8221;.</p>
<p><a href="http://www.facebook.com/anggikrisna" target="_blank">Anggi Krisna</a>: &#8220;oke, ini nih html + css nya udah dibikinin ama <a href="http://zam.web.id/" target="_blank">Zam</a>&#8220;.</p>
<p>Saya: &#8220;buat weblog apa mas ?&#8221;.</p>
<p><a href="http://www.facebook.com/anggikrisna" target="_blank">Anggi Krisna</a>: &#8220;buat weblog kita, <a href="http://www.ruangfreelance.com" target="_blank">RuangFreelance</a>&#8220;.</p>
<p><span id="more-56"></span></p>
<p>&#8220;Weblog yang membahas seputar dunia freelance Indonesia, secara konten masih didominasi oleh artikel online freelance, web design, web development namun tidak menutup kemungkinan nantinya akan membahas dunia freelance yang lebih luas. Melihat sejarahnya, Embrio blog ini berasal dari blog <a href="http://orangbebas.com/">orangbebas.com</a> (2007) milik <a href="http://www.facebook.com/anggikrisna">Anggi Krisna</a>, yang isinya merupakan sharing pengalamannya saat dia bekerja sebagai karyawan kantoran dan beralih memilih menjadi freelancer. Akhirnya domain blog itu expired dan beberapa kontennya dipertahankan dalam blog baru (RF). RF berada di bawah payung <a href="http://icreativelabs.com/">iCreativeLabs</a>, kemudian bergabung bersama <a href="http://makemac.com/">MakeMac</a> dan <a href="http://twentea.com/">Twentea</a> dalam Grup <a href="http://arusmedia.com/">ArusMedia</a>. Beberapa kontributor aktif selain berasal dari grup ArusMedia juga terbuka untuk siapa saja yang berminat menulis dan praktisi yang memiliki pengalaman freelance.&#8221; ambil dari <a href="http://zam.web.id/" target="_blank">Zam</a>.</p>
<p>Ting &#8211; teng &#8230;. START!!!</p>
<p>Dengan beberapa referensi &#8220;how it should work&#8221; untuk beberapa modul pada weblog-weblog yang sudah terkenal, kemudian pasang plugin &#8211; plugin yang harus dipasang, eh ternyata ada beberapa plugin yang harus dimodifikasi karena tidak memenuhi syarat untuk dapat dipasang disini, akhirnya bisa selesai dalam 1 minggu.</p>
<p>Mulai deh pindahin deh http://www.ruangfreelance.com/, wow ternyata masih ada bugs, benerin dulu sana &#8211; sini, lumayan lah akhir nya selesai.</p>
<p><a href="http://www.ruangfreelance.com"><img class="aligncenter size-full wp-image-57" title="RuangeFreelance" src="http://www.feelinc.me/wp-content/uploads/2009/09/rf.gif" alt="RuangeFreelance" width="500" height="286" /></a></p>
<p>Kesan:</p>
<p><strong>BENER2 MUDAH</strong> (secara insting pengen cepet selesai).</p>
<p>- plugin tinggal dipasang, udah banyak di internet.</p>
<p>- struktur base code gak terlalu memusingkan, memang sih dokumentasinya agak kurang enak.</p>
<p><strong>MALES BANGET</strong> (secara insting programmer yg udah lama bergelut didunia persilatan).</p>
<p>- struktur base code nya itu !!!!!!!!!!!!!!!!!!</p>
<p>Tapi ya lumayan lah buat pengalaman, gak ada salah nya heuheuheuheuheu ^_^.</p>
<p>Para cerebrum (kalo kata <a href="http://cerebrumdianara.blogspot.com/" target="_blank">dianara</a>) di balik <em>make over </em>ini:<br />
Ide: <a onclick="javascript:pageTracker._trackPageview('/outgoing/www.facebook.com/anggikrisna');" href="http://www.facebook.com/anggikrisna">Anggi Krisna</a>, <a onclick="javascript:pageTracker._trackPageview('/outgoing/www.facebook.com/agoes82?ref=mf');" href="http://www.facebook.com/agoes82?ref=mf">Setyagus Sucipto</a><br />
Desain: <a onclick="javascript:pageTracker._trackPageview('/outgoing/halomomo.com');" href="http://halomomo.com/">Monika Halim (Momo)</a><br />
CSS: <a onclick="javascript:pageTracker._trackPageview('/outgoing/zam.web.id/');" href="http://zam.web.id/">Zamroni (Zam)</a><br />
Coding: <a onclick="javascript:pageTracker._trackPageview('/outgoing/sulaeman.nundut.com');" href="../">Sulaeman</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.feelinc.me/experience/kesan-integrasi-wordpress/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
