<?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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Ridhuan's Blog</title>
	
	<link>http://www.ridhuan.com/blog</link>
	<description>Not just another WordPress weblog</description>
	<lastBuildDate>Fri, 03 Sep 2010 16:33:50 +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/RidhuansBlog" /><feedburner:info uri="ridhuansblog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>RidhuansBlog</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>How to Change the Date and Time Format for WordPress Blog</title>
		<link>http://feedproxy.google.com/~r/RidhuansBlog/~3/HrUrQcazIog/</link>
		<comments>http://www.ridhuan.com/blog/2010/09/how-to-change-the-date-and-time-format-for-wordpress-blog/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 16:22:50 +0000</pubDate>
		<dc:creator>Ridhuan</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Blogging Tips]]></category>
		<category><![CDATA[templates]]></category>
		<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://www.ridhuan.com/blog/?p=475</guid>
		<description><![CDATA[By default your WordPress blog will display date and time as &#8220;September 3, 2010&#8221; and &#8220;12:59 am&#8220;. When using the default template you can easily change the format by changing the General Settings from your WordPress Admin page. Go to Settings &#62; General and change the settings using the button selections or using the custom [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">By default your WordPress blog will display date and time as &#8220;<em>September 3, 2010</em>&#8221; and &#8220;<em>12:59 am</em>&#8220;. When using the default template you can easily change the format by changing the <strong>General Settings</strong> from your <strong>WordPress Admin</strong> page. Go to <strong>Settings &gt; General</strong> and change the settings using the button selections or using the custom form.</p>
<div id="attachment_483" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.ridhuan.com/blog/wp-content/uploads/2010/09/the_date.jpg"><img class="size-medium wp-image-483" title="the_date" src="http://www.ridhuan.com/blog/wp-content/uploads/2010/09/the_date-300x155.jpg" alt="" width="300" height="155" /></a><p class="wp-caption-text">WordPress Admin General Setting page</p></div>
<p style="text-align: justify;">However most custom themes have been pre-configured and require manual modifications. Open your HTML/PHP editor and search your WordPress theme files for this strings:</p>
<p style="text-align: justify;"><code><span style="color: #ff0000;">&lt;?php</span> the_time<span style="color: #0000ff;">(</span><span style="color: #339966;">'F-j-Y'</span><span style="color: #0000ff;">)</span> <span style="color: #ff0000;">?&gt;</span></code> *those in green may be different on your themes.</p>
<p style="text-align: justify;">Change the green codes by referring to this table:</p>
<table border="0" width="80%" align="center">
<tbody>
<tr bgcolor="#ECFFEC">
<td colspan="3">Day of Month</td>
</tr>
<tr>
<td><code>d</code></td>
<td>Numeric with leading zeros</td>
<td>01-31</td>
</tr>
<tr>
<td><code>j</code></td>
<td>Numeric with no leading zeros</td>
<td>1-31</td>
</tr>
<tr>
<td><code>S</code></td>
<td>English ordinal suffix used after j</td>
<td>st, nd, rd, th</td>
</tr>
<tr bgcolor="#ECFFEC">
<td colspan="3">Weekday</td>
</tr>
<tr>
<td><code>l</code></td>
<td>Full name (lowercase L)</td>
<td>Monday-Sunday</td>
</tr>
<tr>
<td><code>D</code></td>
<td>Three letter name</td>
<td>Mon-Sun</td>
</tr>
<tr bgcolor="#ECFFEC">
<td colspan="3">Month</td>
</tr>
<tr>
<td><code>m</code></td>
<td>Numeric with leading zeros</td>
<td>01-12</td>
</tr>
<tr>
<td><code>n</code></td>
<td>Numeric with no leading zeros</td>
<td>1-12</td>
</tr>
<tr>
<td><code>F</code></td>
<td>Textual full</td>
<td>January-December</td>
</tr>
<tr>
<td><code>M</code></td>
<td>Textual three letters</td>
<td>Jan-Dec</td>
</tr>
<tr bgcolor="#ECFFEC">
<td colspan="3">Year</td>
</tr>
<tr>
<td><code>Y</code></td>
<td>Numeric 4 digits</td>
<td>1959, 2010, 2022</td>
</tr>
<tr>
<td><code>y</code></td>
<td>Numeric 2 digits</td>
<td>59, 10, 22</td>
</tr>
<tr bgcolor="#ECFFEC">
<td colspan="3">Time</td>
</tr>
<tr>
<td><code>a</code></td>
<td>Lowercase</td>
<td>am, pm</td>
</tr>
<tr>
<td><code>A</code></td>
<td>Uppercase</td>
<td>AM, PM</td>
</tr>
<tr>
<td><code>g</code></td>
<td>Hour in 12-hours format with no leading zeros</td>
<td>1-12</td>
</tr>
<tr>
<td><code>h</code></td>
<td>Hour in 12-hours format with leading zeros</td>
<td>01-12</td>
</tr>
<tr>
<td><code>G</code></td>
<td>Hour in 24-hours format with no leading zeros</td>
<td>0-23</td>
</tr>
<tr>
<td><code>H</code></td>
<td>Hour in 24-hours format with leading zeros</td>
<td>00-23</td>
</tr>
<tr>
<td><code>i</code></td>
<td>Minutes with leading zeros</td>
<td>00-59</td>
</tr>
<tr>
<td><code>s</code></td>
<td>Seconds with leading zeros</td>
<td>00-59</td>
</tr>
<tr>
<td><code>T</code></td>
<td>Timezone abreviation</td>
<td>EST, MDT, GMT, UTC</td>
</tr>
<tr bgcolor="#ECFFEC">
<td colspan="3">Full Date/Time</td>
</tr>
<tr>
<td><code>c</code></td>
<td>ISO 8601</td>
<td>2004-02-12T15:19:21+00:00</td>
</tr>
<tr>
<td><code>r</code></td>
<td>RFC 2822</td>
<td>Thu, 21 Dec 2000 16:01:07 +0200</td>
</tr>
</tbody>
</table>
<p style="text-align: right;">Table from <a title="Formatting Date and Time" href="http://codex.wordpress.org/Formatting_Date_and_Time" target="_blank">WordPress.Org Codex: Formatting Date and Time</a></p>
<p style="text-align: justify;">Example coding:</p>
<table border="0" width="80%" align="center">
<tbody>
<tr>
<td>September 3rd, 2010</td>
<td><code>F jS, Y</code></td>
</tr>
<tr>
<td>Fri, 03/09/2010</td>
<td><code>D, d/m/Y</code></td>
</tr>
<tr>
<td>Friday, 3-9-2010, 11:10 PM</td>
<td><code>l, j-n-Y, g:i A</code></td>
</tr>
</tbody>
</table>
<p style="text-align: justify;">Example on how to apply the codes to your WordPress themes.</p>
<table border="0" width="100%" align="center">
<tbody>
<tr>
<td>Posted on Friday, September 3rd, 2010</td>
<td><code>Posted on <span style="color: #ff0000;">&lt;?php</span> the_time<span style="color: #0000ff;">(</span><span style="color: #339966;">'l, F jS, Y'</span><span style="color: #0000ff;">)</span> <span style="color: #ff0000;">?&gt;</span></code></td>
</tr>
<tr>
<td>Written by Ridhuan, 3-9-2010 at 11:15 PM</td>
<td><code>Written by <span style="color: #ff0000;">&lt;?php</span> the_author<span style="color: #0000ff;">()</span> <span style="color: #ff0000;">?&gt;</span>, <span style="color: #ff0000;">&lt;?php</span> the_time<span style="color: #0000ff;">(</span><span style="color: #339966;">'j-n-Y'</span><span style="color: #0000ff;">)</span> <span style="color: #ff0000;">?&gt;</span> at <span style="color: #ff0000;">&lt;?php</span> the_time<span style="color: #0000ff;">(</span><span style="color: #339966;">'g:i A'</span><span style="color: #0000ff;">)</span> <span style="color: #ff0000;">?&gt;</span></code></td>
</tr>
<tr>
<td>Date Posted: Fri, 03/09/2010, 23:15</td>
<td><code>Date Posted: <span style="color: #ff0000;">&lt;?php</span> the_time<span style="color: #0000ff;">(</span><span style="color: #339966;">'D, d/m/Y, H:i'</span><span style="color: #0000ff;">)</span> <span style="color: #ff0000;">?&gt;</span></code></td>
</tr>
</tbody>
</table>
<p style="text-align: justify;">Actually I have not tried every codes I&#8217;ve written here so I am very sorry if you have problems applying them.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.ridhuan.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>
<p><a href="http://feedads.g.doubleclick.net/~a/MPoUmCzrOpBm5qQHJ5YHsJSz14U/0/da"><img src="http://feedads.g.doubleclick.net/~a/MPoUmCzrOpBm5qQHJ5YHsJSz14U/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/MPoUmCzrOpBm5qQHJ5YHsJSz14U/1/da"><img src="http://feedads.g.doubleclick.net/~a/MPoUmCzrOpBm5qQHJ5YHsJSz14U/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/RidhuansBlog/~4/HrUrQcazIog" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ridhuan.com/blog/2010/09/how-to-change-the-date-and-time-format-for-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ridhuan.com/blog/2010/09/how-to-change-the-date-and-time-format-for-wordpress-blog/</feedburner:origLink></item>
		<item>
		<title>How Far Can You Go With Your Money?</title>
		<link>http://feedproxy.google.com/~r/RidhuansBlog/~3/PZklboRLMlc/</link>
		<comments>http://www.ridhuan.com/blog/2010/09/how-far-can-you-go-with-your-money/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 09:38:16 +0000</pubDate>
		<dc:creator>Ridhuan</dc:creator>
				<category><![CDATA[Websites and Blogs]]></category>
		<category><![CDATA[promotions]]></category>
		<category><![CDATA[travel]]></category>

		<guid isPermaLink="false">http://www.ridhuan.com/blog/?p=462</guid>
		<description><![CDATA[You have some money about $1500 and decided to go for a vacation. How far can you go with that amount? The easiest way to find out is by checking this website I just found: KAYAK. On the website you just have to set your current location or closest airport, your travel budget, time of [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">You have some money about $1500 and decided to go for a vacation. How far can you go with that amount? The easiest way to find out is by checking this website I just found: <a title="Kayak" href="http://www.kayak.com/" target="_blank">KAYAK</a>. On the website you just have to set your current location or closest airport, your travel budget, time of travel, and after a click the website will display all possible travel locations that is within your budget.</p>
<div id="attachment_476" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.ridhuan.com/blog/wp-content/uploads/2010/09/kayak.jpg"><img class="size-medium wp-image-476" title="kayak" src="http://www.ridhuan.com/blog/wp-content/uploads/2010/09/kayak-300x201.jpg" alt="" width="300" height="201" /></a><p class="wp-caption-text">Screenshot of the website</p></div>
<p style="text-align: justify;">After you had selected your destination, the website will list all flight cost to your destination sorted by from the lowest price to the highest. KAYAK.com also offer mail updates for any offers or discounts for your chosen destination.</p>
<p>Homepage: <a title="KAYAK" href="http://www.kayak.com/" target="_blank">http://www.kayak.com/</a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.ridhuan.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>
<p><a href="http://feedads.g.doubleclick.net/~a/y7ofQ8mXVIvkS1wF0iHj_aEIE3Y/0/da"><img src="http://feedads.g.doubleclick.net/~a/y7ofQ8mXVIvkS1wF0iHj_aEIE3Y/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/y7ofQ8mXVIvkS1wF0iHj_aEIE3Y/1/da"><img src="http://feedads.g.doubleclick.net/~a/y7ofQ8mXVIvkS1wF0iHj_aEIE3Y/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/RidhuansBlog/~4/PZklboRLMlc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ridhuan.com/blog/2010/09/how-far-can-you-go-with-your-money/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ridhuan.com/blog/2010/09/how-far-can-you-go-with-your-money/</feedburner:origLink></item>
		<item>
		<title>How to Import Blog Feed to Facebook Pages</title>
		<link>http://feedproxy.google.com/~r/RidhuansBlog/~3/W-tlNDkR7qA/</link>
		<comments>http://www.ridhuan.com/blog/2010/08/how-to-import-blog-feed-to-facebook-pages/#comments</comments>
		<pubDate>Thu, 05 Aug 2010 06:42:27 +0000</pubDate>
		<dc:creator>Ridhuan</dc:creator>
				<category><![CDATA[Social Networkings]]></category>
		<category><![CDATA[facebook]]></category>

		<guid isPermaLink="false">http://www.ridhuan.com/blog/?p=463</guid>
		<description><![CDATA[Importing blog feeds to Facebook Pages saves you the effort of exporting or sharing your blog post on Facebook. Every time you update your blog, the article will automatically available in your Facebook page as a note. However not every content of your blog post will be displayed such as advertising banners, Flash files (swf/flv), or any [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Importing blog feeds to Facebook Pages saves you the effort of exporting or sharing your blog post on Facebook. Every time you update your blog, the article will automatically available in your Facebook page as a note. However not every content of your blog post will be displayed such as advertising banners, Flash files (swf/flv), or any video formats.</p>
<p>I present here a simple tutorial on how to import your blog rss feed automatically when you update your blog.</p>
<p>1. Go to your Facebook Page and click on the <strong><em>Edit Page</em></strong> link right below your page profile picture.</p>
<div id="attachment_466" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.ridhuan.com/blog/wp-content/uploads/2010/08/rss2fbpage01.jpg"><img class="size-medium wp-image-466" title="rss2fbpage01" src="http://www.ridhuan.com/blog/wp-content/uploads/2010/08/rss2fbpage01-300x187.jpg" alt="" width="300" height="187" /></a><p class="wp-caption-text">Edit Page link to the Admin page</p></div>
<p>2. In the Admin Page, edit setting for <strong><em>Notes</em></strong>.</p>
<div id="attachment_467" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.ridhuan.com/blog/wp-content/uploads/2010/08/rss2fbpage02.jpg"><img class="size-medium wp-image-467" title="rss2fbpage02" src="http://www.ridhuan.com/blog/wp-content/uploads/2010/08/rss2fbpage02-300x187.jpg" alt="" width="300" height="187" /></a><p class="wp-caption-text">Edit Notes settings</p></div>
<p>3. Next you&#8217;ll come to a page containing all previous notes for the page. On the right corner will be a link for you to import a blog.</p>
<div id="attachment_468" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.ridhuan.com/blog/wp-content/uploads/2010/08/rss2fbpage03.jpg"><img class="size-medium wp-image-468" title="rss2fbpage03" src="http://www.ridhuan.com/blog/wp-content/uploads/2010/08/rss2fbpage03-300x187.jpg" alt="" width="300" height="187" /></a><p class="wp-caption-text">Importing a blog</p></div>
<p>4. After a click on the <em><strong>Import a blog</strong></em> link you&#8217;ll be redirected to a page where you can enter your blog address. Fill in the address of the blog you want to import and click on the <strong><em>Start Importing</em></strong> button.</p>
<div id="attachment_469" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.ridhuan.com/blog/wp-content/uploads/2010/08/rss2fbpage04.jpg"><img class="size-medium wp-image-469" title="rss2fbpage04" src="http://www.ridhuan.com/blog/wp-content/uploads/2010/08/rss2fbpage04-300x187.jpg" alt="" width="300" height="187" /></a><p class="wp-caption-text">Entering website/blog URL</p></div>
<p style="text-align: justify;">The process is completed and your Facebook page will automatically display articles from the blog you had imported every time you have and update.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.ridhuan.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>
<p><a href="http://feedads.g.doubleclick.net/~a/HvuVlLBfEARXL7YKjv51NMmyUYA/0/da"><img src="http://feedads.g.doubleclick.net/~a/HvuVlLBfEARXL7YKjv51NMmyUYA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/HvuVlLBfEARXL7YKjv51NMmyUYA/1/da"><img src="http://feedads.g.doubleclick.net/~a/HvuVlLBfEARXL7YKjv51NMmyUYA/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/RidhuansBlog/~4/W-tlNDkR7qA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ridhuan.com/blog/2010/08/how-to-import-blog-feed-to-facebook-pages/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.ridhuan.com/blog/2010/08/how-to-import-blog-feed-to-facebook-pages/</feedburner:origLink></item>
		<item>
		<title>How to Customize Your Facebook Fan Page URL</title>
		<link>http://feedproxy.google.com/~r/RidhuansBlog/~3/lYuiCMDte5U/</link>
		<comments>http://www.ridhuan.com/blog/2010/06/how-to-customize-your-facebook-fan-page-url/#comments</comments>
		<pubDate>Thu, 10 Jun 2010 18:49:07 +0000</pubDate>
		<dc:creator>Ridhuan</dc:creator>
				<category><![CDATA[Social Networkings]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[promotions]]></category>

		<guid isPermaLink="false">http://www.ridhuan.com/blog/?p=455</guid>
		<description><![CDATA[As standard a Facebook fan page URL will look like http://www.facebook.com/pages/Fan-Page-Name/00000XXXX88888 which is long and not suitable for you to use it on your name card, banner, or other method of offline promotion. The long URL can be shortened to a URL of your choice depending on availability and I will show you how to [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">As standard a Facebook fan page URL will look like <strong><span style="color: #008000;">http://www.facebook.com/pages/Fan-Page-Name/00000XXXX88888</span></strong> which is long and not suitable for you to use it on your name card, banner, or other method of offline promotion. The long URL can be shortened to a URL of your choice depending on availability and I will show you how to do it.</p>
<ol>
<li>Log in to your Facebook account and after you have logged in, type <span style="color: #008000;"><strong>facebook.com/username</strong></span> in your browser&#8217;s address bar. You will be directed to the page to customize the URL.</li>
<li>The page will automatically show your Facebook profile URL (your username) and the link for you to customize your fan page URL.</li>
<li>After you click on the Set a username for your Pages a drop down menu will appear showing all your fan pages.</li>
<li>Select one of your fan pages and a box (<em>Enter desired username</em>) will appear next to the page name. <em>*Note that this option will only available if your fan page has more than 25 fans.</em></li>
<li>Enter your desired username for the page and check the availability. This action can be done only once so choose your username (URL) very carefully.</li>
<li>When everything is done your page URL should look like this: <strong><span style="color: #008000;">facebook.com/yoururl</span></strong>.</li>
</ol>
<div id="attachment_458" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.ridhuan.com/blog/wp-content/uploads/2010/06/username011.jpg"><img class="size-medium wp-image-458" title="username01" src="http://www.ridhuan.com/blog/wp-content/uploads/2010/06/username011-300x187.jpg" alt="" width="300" height="187" /></a><p class="wp-caption-text">Facebook Username Page</p></div>
<div id="attachment_456" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.ridhuan.com/blog/wp-content/uploads/2010/06/username02.jpg"><img class="size-medium wp-image-456" title="username02" src="http://www.ridhuan.com/blog/wp-content/uploads/2010/06/username02-300x187.jpg" alt="" width="300" height="187" /></a><p class="wp-caption-text">Custom URL setting</p></div>
<p>Hope this is helpful.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.ridhuan.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>
<p><a href="http://feedads.g.doubleclick.net/~a/hpeojkC-3tSIJLIInBRhrJS0Vi0/0/da"><img src="http://feedads.g.doubleclick.net/~a/hpeojkC-3tSIJLIInBRhrJS0Vi0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/hpeojkC-3tSIJLIInBRhrJS0Vi0/1/da"><img src="http://feedads.g.doubleclick.net/~a/hpeojkC-3tSIJLIInBRhrJS0Vi0/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/RidhuansBlog/~4/lYuiCMDte5U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ridhuan.com/blog/2010/06/how-to-customize-your-facebook-fan-page-url/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.ridhuan.com/blog/2010/06/how-to-customize-your-facebook-fan-page-url/</feedburner:origLink></item>
		<item>
		<title>Best Free Video Converter Ever</title>
		<link>http://feedproxy.google.com/~r/RidhuansBlog/~3/9UyDUyntUZw/</link>
		<comments>http://www.ridhuan.com/blog/2010/04/best-free-video-converter-ever/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 01:21:35 +0000</pubDate>
		<dc:creator>Ridhuan</dc:creator>
				<category><![CDATA[Softwares]]></category>
		<category><![CDATA[video converter]]></category>

		<guid isPermaLink="false">http://www.ridhuan.com/blog/?p=445</guid>
		<description><![CDATA[I have been using Any Video Converter for several weeks and I am very satisfied with the conversion results. Previously I use other free software and when I compared the videos that was converted with the old software and the one converted using AVC the result were so obvious. The video converted with AVC were [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">I have been using <a title="Any Video Converter" href="http://www.any-video-converter.com/products/for_video_free/" target="_blank">Any Video Converter</a> for several weeks and I am very satisfied with the conversion results. Previously I use other free software and when I compared the videos that was converted with the old software and the one converted using AVC the result were so obvious. The video converted with AVC were prettier with only minor loss in quality even when the file size and bitrate is almost the same. I&#8217;m converting videos because I&#8217;m downloading some TV series such as CSI from season 1. The files that were being downloaded each with the size of 350MB and will require 2 x 4.7GB DVDs if I want to burn a full season of the series. 8+GB DVDs are still quite expensive here so the best solution is to reduce the file size to fit into 1 DVD.</p>
<p style="text-align: justify;">I am so glad to have found Any Video Converter software because the file conversion process is very simple and it is FREE. During conversion the software does not eat too much memories and most important it does not heat up your processor. When running on a system with multi-core processor you can see only one of the processor core is throttling at about 80 percent of it&#8217;s full speed while the other core(s) is running at normal speed. This is much better than the software that I used before where both processor cores are running at full speed during a video conversion process. AVC can convert videos or extract audio into various formats such as avi, wmv, mkv, flv, mp4, mp3, and wav.</p>
<div id="attachment_448" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.ridhuan.com/blog/wp-content/uploads/2010/04/avc01.jpg"><img class="size-medium wp-image-448" title="avc01" src="http://www.ridhuan.com/blog/wp-content/uploads/2010/04/avc01-300x187.jpg" alt="" width="300" height="187" /></a><p class="wp-caption-text">Output formats</p></div>
<p style="text-align: justify;"><a title="Any Video Converter" href="http://www.any-video-converter.com/products/for_video_free/" target="_blank">AVC</a> can convert videos from almost all video formats such as Windows Media Files , Flash videos, Quicktime, Divx videos, and DVD formats. Users can also customize each conversion video or audio settings. Users can specify the video or audio codec to be used, video size, frame rate, video bitrate, audio bitrate and audio sample size.</p>
<div id="attachment_450" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.ridhuan.com/blog/wp-content/uploads/2010/04/avc02.jpg"><img class="size-medium wp-image-450" title="avc02" src="http://www.ridhuan.com/blog/wp-content/uploads/2010/04/avc02-300x187.jpg" alt="" width="300" height="187" /></a><p class="wp-caption-text">Readable formats</p></div>
<p style="text-align: justify;">I was converting 350MB videos with overall bitrate of about 1100kbps to smaller size of 195MB with overall bitrate of 617kbps using same setting as original video except the bitrate. The video format is .avi using xvid codec, video size and frame rate were all similar to the original files. I change the audio sample size from 48000Hz 117kbps variable to 44100Hz 123kbps variable bitrate. The result is video quality is of course reduced but even when the size and bitrate was reduced about 40 percent but the video quality was changed only about 20 percent. Another noticeable different was the audio volume on converted file was increased and clearer than the original file maybe because I increased the bitrate. I made screenshots for both the original and converted videos for you to see the difference by yourself.</p>
<div id="attachment_447" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.ridhuan.com/blog/wp-content/uploads/2010/04/avc_bigsize.jpg"><img class="size-medium wp-image-447" title="avc_bigsize" src="http://www.ridhuan.com/blog/wp-content/uploads/2010/04/avc_bigsize-300x172.jpg" alt="" width="300" height="172" /></a><p class="wp-caption-text">350MB 1100kbps</p></div>
<div id="attachment_449" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.ridhuan.com/blog/wp-content/uploads/2010/04/avc_smallsize.jpg"><img class="size-medium wp-image-449" title="avc_smallsize" src="http://www.ridhuan.com/blog/wp-content/uploads/2010/04/avc_smallsize-300x172.jpg" alt="" width="300" height="172" /></a><p class="wp-caption-text">195MB 617kbps</p></div>
<p>Website: <a title="Any Video Converter" href="http://www.any-video-converter.com/products/for_video_free/" target="_blank">http://www.any-video-converter.com/products/for_video_free/</a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.ridhuan.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>
<p><a href="http://feedads.g.doubleclick.net/~a/wnqeoiwnE5TbHVme1aPmPPKkJTw/0/da"><img src="http://feedads.g.doubleclick.net/~a/wnqeoiwnE5TbHVme1aPmPPKkJTw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/wnqeoiwnE5TbHVme1aPmPPKkJTw/1/da"><img src="http://feedads.g.doubleclick.net/~a/wnqeoiwnE5TbHVme1aPmPPKkJTw/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/RidhuansBlog/~4/9UyDUyntUZw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ridhuan.com/blog/2010/04/best-free-video-converter-ever/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.ridhuan.com/blog/2010/04/best-free-video-converter-ever/</feedburner:origLink></item>
		<item>
		<title>How To Create A Custom Notebook Using Microsoft Word 2007</title>
		<link>http://feedproxy.google.com/~r/RidhuansBlog/~3/k_0lfubSito/</link>
		<comments>http://www.ridhuan.com/blog/2010/04/how-to-create-a-custom-notebook-using-microsoft-word-2007/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 12:29:00 +0000</pubDate>
		<dc:creator>Ridhuan</dc:creator>
				<category><![CDATA[Information]]></category>
		<category><![CDATA[ms word]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.ridhuan.com/blog/?p=435</guid>
		<description><![CDATA[You might notice that most of the notebooks in the market are quite dull with blank pages or lines which is the most practical for all users. There are some notebooks with background images on every pages but most probably with pictures of Donald Duck or Mickey Mouse and would not really suit you because [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_436" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.ridhuan.com/blog/wp-content/uploads/2010/04/notebook.jpg"><img class="size-medium wp-image-436" title="notebook" src="http://www.ridhuan.com/blog/wp-content/uploads/2010/04/notebook-300x234.jpg" alt="" width="300" height="234" /></a><p class="wp-caption-text">Notebook</p></div>
<p style="text-align: justify;">You might notice that most of the notebooks in the market are quite dull with blank pages or lines which is the most practical for all users. There are some notebooks with background images on every pages but most probably with pictures of Donald Duck or Mickey Mouse and would not really suit you because you are not a kid anymore. So how to have an interesting notebook that suit your style? The answer is to make it by yourself. You can customize everything and then all your friends will ask where do you get that nice notebook.</p>
<p style="text-align: justify;">Here&#8217;s how to do it:</p>
<ul>
<li style="text-align: justify;"> Start your Microsoft Word and a blank page is created automatically.</li>
</ul>
<ul>
<li style="text-align: justify;">A notebook is usually smaller in size so you would want to change the size to A5 or any other size that you want. Click on the <strong>Page Layout &gt; Size &gt; A5</strong>.</li>
</ul>
<div id="attachment_437" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.ridhuan.com/blog/wp-content/uploads/2010/04/notebook01.jpg"><img class="size-medium wp-image-437" title="notebook01" src="http://www.ridhuan.com/blog/wp-content/uploads/2010/04/notebook01-300x187.jpg" alt="" width="300" height="187" /></a><p class="wp-caption-text">Changing document size</p></div>
<ul>
<li style="text-align: justify;">Next is to make the cover page and the back page. I&#8217;m going to make a cover page with background image and some texts. If you want to be very artistic you can customize the cover page using Photoshop or other graphic software. To do add background image you can select <strong>Page Layout &gt; Page Color &gt; Fill Effects</strong> and then select the <strong>Picture</strong> tab. This method however only suitable if the picture you want to insert have the same dimension as your paper. If your image is larger or smaller than the paper size you can use <strong>Watermark</strong>. Select <strong>Page Layout &gt; Watermark &gt; Custom Watermark</strong>. In the Watermark pop-up box select the <strong>Picture Watermark</strong> button and then select your picture. Then adjust the scale to fit the size you wanted. Deselect the <strong>Washout</strong> button if you want your picture to be at full opacity. Note that using the Watermark tool will make all your pages to have the same background image. You&#8217;ll need to create a new document if you want different image for your back cover.</li>
</ul>
<div id="attachment_438" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.ridhuan.com/blog/wp-content/uploads/2010/04/notebook02.jpg"><img class="size-medium wp-image-438" title="notebook02" src="http://www.ridhuan.com/blog/wp-content/uploads/2010/04/notebook02-300x187.jpg" alt="" width="300" height="187" /></a><p class="wp-caption-text">Adding background image</p></div>
<ul>
<li style="text-align: justify;">Next step is to add some texts to the cover page. Create a <strong>Text Box</strong> (<strong>Insert &gt; Text Box &gt; Draw Text Box</strong>) anywhere you want to place the text and then type onto it. Use the <strong>WordArt</strong> tool to customize the appearance of the text (<strong>Insert &gt; WordArt</strong>). Remove the fill and stroke for the Text Box to make it invisible.</li>
</ul>
<ul>
<li style="text-align: justify;">Once you done with the cover page it&#8217;s time to customize the inner pages. Create a new document with the same A5 size. Add background image using the same method as before but I would prefer to check the Washout button to dim the image so that it will not interfere with any writings on it.</li>
</ul>
<ul>
<li style="text-align: justify;">Some people would prefer notebooks with lines so here is the trick to add lines to your paper. In Microsoft Word 2007 the insert horizontal line function is hidden in the Page Border properties box. Select <strong>Page Layout &gt; Page Border</strong>. When the Page Border properties box has appeared, click on the <strong>Horizontal Line</strong> button at the bottom left corner of the box. Then Horizontal Line box will appear and select the most basic line and press OK.</li>
</ul>
<div id="attachment_439" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.ridhuan.com/blog/wp-content/uploads/2010/04/notebook03.jpg"><img class="size-medium wp-image-439" title="notebook03" src="http://www.ridhuan.com/blog/wp-content/uploads/2010/04/notebook03-300x187.jpg" alt="" width="300" height="187" /></a><p class="wp-caption-text">Adding horizontal lines</p></div>
<ul>
<li style="text-align: justify;">When the horizontal line is already on the page, double-click on it to change its color or other setting. Then you can just Copy and Paste the lines to fill the rest of the page. If you have an A4 size printer you might want to create another page so that it will be easier for your to print the document.</li>
</ul>
<div id="attachment_440" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.ridhuan.com/blog/wp-content/uploads/2010/04/notebook04.jpg"><img class="size-medium wp-image-440" title="notebook04" src="http://www.ridhuan.com/blog/wp-content/uploads/2010/04/notebook04-300x187.jpg" alt="" width="300" height="187" /></a><p class="wp-caption-text">Pages with complete lines</p></div>
<ul>
<li style="text-align: justify;">When all done you can print the document by yourself or go to a printing shop to print the cover page on thicker paper and add plastic front and back cover.</li>
</ul>
<ul>
<li style="text-align: justify;">Bind them together with ring binder and you&#8217;ll have your own custom notebook.</li>
</ul>
<p style="text-align: justify;">
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.ridhuan.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>
<p><a href="http://feedads.g.doubleclick.net/~a/ix8HP5hJy9fG9rYK5PRG-BYJbio/0/da"><img src="http://feedads.g.doubleclick.net/~a/ix8HP5hJy9fG9rYK5PRG-BYJbio/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/ix8HP5hJy9fG9rYK5PRG-BYJbio/1/da"><img src="http://feedads.g.doubleclick.net/~a/ix8HP5hJy9fG9rYK5PRG-BYJbio/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/RidhuansBlog/~4/k_0lfubSito" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ridhuan.com/blog/2010/04/how-to-create-a-custom-notebook-using-microsoft-word-2007/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.ridhuan.com/blog/2010/04/how-to-create-a-custom-notebook-using-microsoft-word-2007/</feedburner:origLink></item>
		<item>
		<title>Vuze – My Favorite BitTorrent Client</title>
		<link>http://feedproxy.google.com/~r/RidhuansBlog/~3/QY7AYOA9yvI/</link>
		<comments>http://www.ridhuan.com/blog/2010/04/vuze-my-favorite-bittorrent-client/#comments</comments>
		<pubDate>Thu, 01 Apr 2010 17:18:19 +0000</pubDate>
		<dc:creator>Ridhuan</dc:creator>
				<category><![CDATA[Softwares]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[torrent]]></category>

		<guid isPermaLink="false">http://www.ridhuan.com/blog/?p=425</guid>
		<description><![CDATA[I have been using Vuze for about 2 years and as for now I am very satisfied with this software. The main reason that I like this software is the torrent search function and the software does not interrupt my internet browsing bandwidth. Vuze was previously known as Azureus and launched in 2003. The software [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">I have been using <a title="Vuze" href="http://www.vuze.com/" target="_blank">Vuze</a> for about 2 years and as for now I am very satisfied with this software. The main reason that I like this software is the torrent search function and the software does not interrupt my internet browsing bandwidth. Vuze was previously known as Azureus and launched in 2003.  The software is free and released under the GNU General Public License and based on <a title="Java" href="http://www.java.com/" target="_blank">Java</a>. It is a cross-platform software means that you can use it on a PC or a Mac. Besides the torrent download function, Vuze users can also view, publish, or share high quality video contents via the Vuze HD Network. Content is presented through channels and categories containing TV   shows, music videos, movies, video games and others. Users can also earn money by sharing their original contents in the Vuze HD Network.</p>
<div id="attachment_428" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.ridhuan.com/blog/wp-content/uploads/2010/04/vuze01.jpg"><img class="size-medium wp-image-428" title="vuze01" src="http://www.ridhuan.com/blog/wp-content/uploads/2010/04/vuze01-300x187.jpg" alt="" width="300" height="187" /></a><p class="wp-caption-text">Vuze HD Network</p></div>
<p style="text-align: justify;">The latest version of the software allow users to easily search for files and the search results are displayed directly in the software&#8217;s search page. Then users can simply click on the Download button. Files are searched from various BitTorrent index websites such as Btjunkie, Extratorrent, <a title="Isohunt" rel="nofollow" href="http://isohunt.com/" target="_blank">Isohunt</a>, Mininova, and also from Youtube and Vuze network.</p>
<div id="attachment_429" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.ridhuan.com/blog/wp-content/uploads/2010/04/vuze02.jpg"><img class="size-medium wp-image-429" title="vuze02" src="http://www.ridhuan.com/blog/wp-content/uploads/2010/04/vuze02-300x187.jpg" alt="" width="300" height="187" /></a><p class="wp-caption-text">Vuze Search Page</p></div>
<p style="text-align: justify;">I also like this software because no matter how many downloads are running or how fast the download speed is, Vuze does not interfere the internet browsing speed. However this will only happen if you set the Transfer setting to Automatic. The software will analyze your connection speed and limit the bandwidth used to download files. You can manually adjust the setting if you want to use all your bandwidth for downloading. I use a DSL 1.0 kbps internet connection and shared with 3 friends using a wireless router. The highest file download speed when I use download accelerator such as Flashget is around 160 KB/s. For torrent download the highest speed I had achieved is 120 KB/s depending on the number of peers connected. What I want to share is that my friend used <a title="µTorrent" href="http://www.utorrent.com/" target="_blank">µTorrent</a> client and that software suck all the bandwidth and nobody was able to browse the internet. At first we all thought there was a problem with the ISP and I even called the customer service to ask about the slow internet connection. Finally the slow internet browsing problem was found to be caused by µTorrent that eat all the bandwidth. For µTorrent users, manual setting is required to have a balance between downloading and internet browsing. While using Vuze, my friend and I can still browse the internet with ease even the torrents are downloading at a speed of 80 KB/s.</p>
<div id="attachment_430" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.ridhuan.com/blog/wp-content/uploads/2010/04/vuze03.jpg"><img class="size-medium wp-image-430" title="vuze03" src="http://www.ridhuan.com/blog/wp-content/uploads/2010/04/vuze03-300x187.jpg" alt="" width="300" height="187" /></a><p class="wp-caption-text">Vuze Setting</p></div>
<p style="text-align: justify;">The thing that most people don&#8217;t like about Vuze is the extensive use of memory. The software uses around 150 MB of memory to infinity depending on how much files are downloading or seeding at a time. The average memory use on my system is about 180 MB on Windows 7 64bit. 2 GB or RAM might not be enough if you are running Vuze on Windows Vista or Windows 7.</p>
<div id="attachment_431" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.ridhuan.com/blog/wp-content/uploads/2010/04/vuze04.jpg"><img class="size-medium wp-image-431" title="vuze04" src="http://www.ridhuan.com/blog/wp-content/uploads/2010/04/vuze04-300x187.jpg" alt="" width="300" height="187" /></a><p class="wp-caption-text">Vuze memory usage</p></div>
<p style="text-align: justify;">Vuze also have wide range of plugins for users to choose to enhance the software. It&#8217;s like using WordPress where we can add a lot of plugins to make our blog better.</p>
<p>Some of Vuze plugins are:</p>
<ul>
<li>iZureus &#8211; A fully functional iPhone web interface.</li>
<li>Mainline DHT &#8211; Allow use of Mainline DHT.</li>
<li>3D View &#8211; 3D View of the swarm (connections).</li>
<li>Country Locator &#8211; Adds a column identifying the peer country in the details view.</li>
<li>LAN Peer Scanner &#8211; Finds peers for downloads within a LAN.</li>
<li>Download   Focus Plugin &#8211; Focus the download of a specific file.</li>
<li>I2P   Network Plugin &#8211; Allows use of the I2P anonymous network.</li>
<li>Speed Scheduler &#8211; Schedule your upload and download speeds based on time and day of week.</li>
</ul>
<p>Vuze homepage: <a title="Vuze" href="http://www.vuze.com/" target="_blank">http://www.vuze.com/</a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.ridhuan.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>
<p><a href="http://feedads.g.doubleclick.net/~a/_fWTIyVr4BVzACJiBr-SRPGSaF8/0/da"><img src="http://feedads.g.doubleclick.net/~a/_fWTIyVr4BVzACJiBr-SRPGSaF8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/_fWTIyVr4BVzACJiBr-SRPGSaF8/1/da"><img src="http://feedads.g.doubleclick.net/~a/_fWTIyVr4BVzACJiBr-SRPGSaF8/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/RidhuansBlog/~4/QY7AYOA9yvI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ridhuan.com/blog/2010/04/vuze-my-favorite-bittorrent-client/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ridhuan.com/blog/2010/04/vuze-my-favorite-bittorrent-client/</feedburner:origLink></item>
		<item>
		<title>My Link Exchange Page</title>
		<link>http://feedproxy.google.com/~r/RidhuansBlog/~3/d4DVWLOCYfM/</link>
		<comments>http://www.ridhuan.com/blog/2010/03/my-link-exchange-page/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 18:49:12 +0000</pubDate>
		<dc:creator>Ridhuan</dc:creator>
				<category><![CDATA[Information]]></category>
		<category><![CDATA[blog directory]]></category>
		<category><![CDATA[link exchange]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.ridhuan.com/blog/?p=410</guid>
		<description><![CDATA[I had created a link exchange page in this blog about 2 month ago. The page was created so that anybody can place their link in this page without having to ask me. My link exchange page is a bit different because I use WordPress Link Directory plugin for the page making it to be [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">I had created a link exchange page in this blog about 2 month ago. The page was created so that anybody can place their link in this page without having to ask me. My link exchange page is a bit different because I use <a title="WordPress Link Directory" href="http://www.seanbluestone.com/wp-link-directory" target="_blank">WordPress Link Directory</a> plugin for the page making it to be a blog directory instead of a normal list of links.</p>
<p><a href="http://www.ridhuan.com/blog/wp-content/uploads/2010/03/linkexchange01.jpg"><img class="aligncenter size-medium wp-image-416" title="linkexchange01" src="http://www.ridhuan.com/blog/wp-content/uploads/2010/03/linkexchange01-300x137.jpg" border="0" alt="" width="300" height="137" /></a></p>
<p style="text-align: justify;">To add you links to the page, just click on the <a title="Link Exchange" href="http://www.ridhuan.com/blog/links/" target="_blank">Link Exchange</a> link on the category menu and then click on the <a title="Add URL" href="http://www.ridhuan.com/blog/links/?act=addsite" target="_blank">Add URL</a> link. Then fill in your blog details on the Add URL page and press the Add Link button. The form contain fields for you to fill in your name, e-mail, blog name, blog url, blog description, a reciprocal link. Reciprocal link means the address of your blog that contain my link. For example if you place my link in your<em> http://yourblog.com/links</em> page then that will be the reciprocal link. I will need to approve your link before it will appear in the directory.</p>
<p><a href="http://www.ridhuan.com/blog/wp-content/uploads/2010/03/linkexchange02.jpg"><img class="aligncenter size-medium wp-image-415" title="linkexchange02" src="http://www.ridhuan.com/blog/wp-content/uploads/2010/03/linkexchange02-300x133.jpg" border="0" alt="" width="300" height="133" /></a></p>
<p style="text-align: justify;">The steps are very simple but there always been a problem where some people just don&#8217;t read or understand. That is a <strong>LINK <span style="text-decoration: underline;">EXCHANGE</span></strong> page therefore if you don&#8217;t want to add my link to your blog then please don&#8217;t bother to fill in the form. I will only approve links for blogs that have my link on them. That means you have to add my link on your blog before I can approve your blog link in my directory. You can simply add my link on your page by any mean you like or you can visit the <a title="Link To Us" href="http://www.ridhuan.com/blog/links/?act=linkus" target="_blank">Link To Us</a> page to view the HTML code I have provided.</p>
<p style="text-align: justify;">If you browse the directory, links are sorted by PageRank. This is a customizable feature of the plugin. The plugin also count all hits in and out for all the links together with thumbnails.</p>
<p><a href="http://www.ridhuan.com/blog/wp-content/uploads/2010/03/linkexchange03.jpg"><img class="aligncenter size-medium wp-image-418" title="linkexchange03" src="http://www.ridhuan.com/blog/wp-content/uploads/2010/03/linkexchange03-300x133.jpg" border="0" alt="" width="300" height="133" /></a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.ridhuan.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>
<p><a href="http://feedads.g.doubleclick.net/~a/lFd82TiGS644ALKUKN-uv9SlKh0/0/da"><img src="http://feedads.g.doubleclick.net/~a/lFd82TiGS644ALKUKN-uv9SlKh0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/lFd82TiGS644ALKUKN-uv9SlKh0/1/da"><img src="http://feedads.g.doubleclick.net/~a/lFd82TiGS644ALKUKN-uv9SlKh0/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/RidhuansBlog/~4/d4DVWLOCYfM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ridhuan.com/blog/2010/03/my-link-exchange-page/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.ridhuan.com/blog/2010/03/my-link-exchange-page/</feedburner:origLink></item>
		<item>
		<title>30 Percent Discount for Business Web Hosting Plans</title>
		<link>http://feedproxy.google.com/~r/RidhuansBlog/~3/4y5QMfai3qs/</link>
		<comments>http://www.ridhuan.com/blog/2010/03/30-percent-discount-for-business-web-hosting-plans/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 07:08:07 +0000</pubDate>
		<dc:creator>Ridhuan</dc:creator>
				<category><![CDATA[Web Hostings]]></category>
		<category><![CDATA[web hosting]]></category>

		<guid isPermaLink="false">http://www.ridhuan.com/blog/2010/03/30-percent-discount-for-business-web-hosting-plans/</guid>
		<description><![CDATA[Exa Bytes Network (exabytes.com) is offering 30% discount for its EBiz web hosting plans with coupon code hosting2010. The EBiz web hosting is suitable for SOHO and Small Businesses allowing multiple web sites hosting, domain emails, create blogs, photo galleries, forums, and e-commerce stores. There are three EBiz plans being offered which are EBiz Plus, [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_405" class="wp-caption aligncenter" style="width: 460px"><a title="EBiz Business Web Hosting" href="http://angel.exabytes.com/idevaffiliate.php?id=3301310" target="_blank"><img class="size-full wp-image-405" title="ExabytesBusiness" src="http://www.ridhuan.com/blog/wp-content/uploads/2010/03/ExabytesBusiness.jpg" alt="" width="450" height="149" /></a><p class="wp-caption-text">EBiz Business Web Hosting</p></div>
<p style="text-align: justify;">Exa Bytes Network (<a title="Exabytes.com" href="http://angel.exabytes.com/idevaffiliate.php?id=3301310" target="_blank">exabytes.com</a>) is offering 30% discount for its EBiz web hosting plans with coupon code <span style="color: #008000;"><strong>hosting2010</strong></span>. The EBiz web hosting is suitable for SOHO and Small Businesses allowing multiple web sites hosting, domain emails, create blogs, photo galleries, forums, and e-commerce stores. There are three EBiz plans being offered which are EBiz Plus, EBiz Gold, and EBiz Gold Unlimited. All the three plans are offered at the same prices for both Windows and Linux hosting.</p>
<p style="text-align: justify;"><a title="EBiz Business Web Hosting" href="http://angel.exabytes.com/idevaffiliate.php?id=3301310" target="_blank">EBiz Plus</a> contains 10GB of disk space, 50GB monthly bandwidth, unlimited emails and subdomains and 50 MySQL databases. This means you can install 50 WordPress, Joomla, Drupal, or anything that use MySQL database in that single server. <a title="EBiz Business Web Hosting" href="http://angel.exabytes.com/idevaffiliate.php?id=3301310" target="_blank">EBiz Gold</a> contains huge 300GB of storage space, 300GB of monthly bandwidth, free lifetime domain name, and 300 MySQL databases. EBiz Gold Unlimited have all the standard EBiz Gold features but with unlimited storage space and bandwidth.</p>
<p>Details of the EBiz Web Hosting Plans:</p>
<div>
<table border="1" width="100%">
<tbody>
<tr>
<td align="left" valign="middle">Plans</td>
<td align="center" valign="middle">EBiz Plus</td>
<td align="center" valign="middle">EBiz Gold</td>
</tr>
<tr>
<td align="left" valign="middle">Disk Space</td>
<td align="center" valign="middle">10GB</td>
<td align="center" valign="middle">300GB</td>
</tr>
<tr>
<td align="left" valign="middle">Bandwidth</td>
<td align="center" valign="middle">50GB</td>
<td align="center" valign="middle">300GB</td>
</tr>
<tr>
<td align="left" valign="middle">Email Accounts</td>
<td align="center" valign="middle">Unlimited</td>
<td align="center" valign="middle">Unlimited</td>
</tr>
<tr>
<td align="left" valign="middle">Subdomains</td>
<td align="center" valign="middle">Unlimited</td>
<td align="center" valign="middle">Unlimited</td>
</tr>
<tr>
<td align="left" valign="middle">Add-on Domains</td>
<td align="center" valign="middle">10</td>
<td align="center" valign="middle">30</td>
</tr>
<tr>
<td align="left" valign="middle">Parked Domains</td>
<td align="center" valign="middle">50</td>
<td align="center" valign="middle">300</td>
</tr>
<tr>
<td align="left" valign="middle">MySQL Databases</td>
<td align="center" valign="middle">50</td>
<td align="center" valign="middle">300</td>
</tr>
<tr>
<td align="left" valign="middle">Free Lifetime Domain</td>
<td align="center" valign="middle">No</td>
<td align="center" valign="middle">Yes</td>
</tr>
<tr>
<td align="left" valign="middle">Cost Range</td>
<td align="center" valign="middle">($3.25-$6.05)/month</td>
<td align="center" valign="middle">($5.35-$9.55)/month</td>
</tr>
</tbody>
</table>
</div>
<p>Guarantees:</p>
<ul>
<li>99.9% Network Uptime</li>
<li>100 Day Full Money Back</li>
<li>99.5% Server Uptime</li>
<li>Price Freeze</li>
</ul>
<div id="attachment_406" class="wp-caption aligncenter" style="width: 460px"><a title="EBiz Business Web Hosting" href="http://angel.exabytes.com/idevaffiliate.php?id=3301310" target="_blank"><img class="size-full wp-image-406" title="ExabytesGuarantee" src="http://www.ridhuan.com/blog/wp-content/uploads/2010/03/ExabytesGuarantee.jpg" alt="" width="450" height="113" /></a><p class="wp-caption-text">Guarantees</p></div>
<p>Note that the 30% discount valid until March 29th, 2010.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.ridhuan.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>
<p><a href="http://feedads.g.doubleclick.net/~a/wDQ4b6GK1aqOyRxT5oC1O64OF7k/0/da"><img src="http://feedads.g.doubleclick.net/~a/wDQ4b6GK1aqOyRxT5oC1O64OF7k/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/wDQ4b6GK1aqOyRxT5oC1O64OF7k/1/da"><img src="http://feedads.g.doubleclick.net/~a/wDQ4b6GK1aqOyRxT5oC1O64OF7k/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/RidhuansBlog/~4/4y5QMfai3qs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ridhuan.com/blog/2010/03/30-percent-discount-for-business-web-hosting-plans/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.ridhuan.com/blog/2010/03/30-percent-discount-for-business-web-hosting-plans/</feedburner:origLink></item>
		<item>
		<title>New and Better Firefox Transparent Addon</title>
		<link>http://feedproxy.google.com/~r/RidhuansBlog/~3/bKZYzla2LhY/</link>
		<comments>http://www.ridhuan.com/blog/2010/02/new-and-better-firefox-transparent-addon/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 04:14:45 +0000</pubDate>
		<dc:creator>Ridhuan</dc:creator>
				<category><![CDATA[Softwares]]></category>
		<category><![CDATA[firefox addon]]></category>
		<category><![CDATA[firefox theme]]></category>

		<guid isPermaLink="false">http://www.ridhuan.com/blog/?p=392</guid>
		<description><![CDATA[I just found a new and better transparent Firefox add-on called New Glasser that can make all the Firefox windows transparent. I was actually looking for other add-on but I found this instead and it looks better than the one I was looking for. Unlike the add-on that I used before, this add-on makes the [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">I just found a new and better transparent Firefox add-on called <a title="New Glasser" href="https://addons.mozilla.org/en-US/firefox/addon/12951" target="_blank">New Glasser</a> that can make all the Firefox windows transparent. I was actually looking for other add-on but I found this instead and it looks better than the one I was looking for. Unlike the add-on that I used before, this add-on makes the whole Firefox windows transparent instead of just the upper part of the window. I had just switched to Windows 7 and there is no need to install something like VistaGlazz to enable transparency when Firefox or some other applications maximized as previously needed in Windows Vista. Take a look at the screenshots that I&#8217;ve provided for you. This add-on makes Firefox windows transparent except additional toolbars that you might installed. I really like this add-on but the only flaw that can make you hate it is that the transparency cause the text on the status bar to be hard to read especially when you use light background image. The font color for the Alexa toolbar ranking changes depending on the background color. The problem is when the background color is dark the font is changed to blue but when the background color is lighter color the font is changed to white and make it harder to read.</p>
<div id="attachment_395" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.ridhuan.com/blog/wp-content/uploads/2010/02/newtransparent1.jpg"><img class="size-medium wp-image-395" title="newtransparent1" src="http://www.ridhuan.com/blog/wp-content/uploads/2010/02/newtransparent1-300x187.jpg" alt="" width="300" height="187" /></a><p class="wp-caption-text">Screenshot of normal window</p></div>
<div id="attachment_396" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.ridhuan.com/blog/wp-content/uploads/2010/02/newtransparent2.jpg"><img class="size-medium wp-image-396" title="newtransparent2" src="http://www.ridhuan.com/blog/wp-content/uploads/2010/02/newtransparent2-300x187.jpg" alt="" width="300" height="187" /></a><p class="wp-caption-text">Screenshot of fullscreen window</p></div>
<div id="attachment_397" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.ridhuan.com/blog/wp-content/uploads/2010/02/newtransparent3.jpg"><img class="size-medium wp-image-397" title="newtransparent3" src="http://www.ridhuan.com/blog/wp-content/uploads/2010/02/newtransparent3-300x187.jpg" alt="" width="300" height="187" /></a><p class="wp-caption-text">Drawback of the add-on</p></div>
<p>Download link: <a title="New Glasser" href="https://addons.mozilla.org/en-US/firefox/addon/12951" target="_blank">https://addons.mozilla.org/en-US/firefox/addon/12951</a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.ridhuan.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>
<p><a href="http://feedads.g.doubleclick.net/~a/Rb4GHfL8KJsLuIPT4dg64FFr1WM/0/da"><img src="http://feedads.g.doubleclick.net/~a/Rb4GHfL8KJsLuIPT4dg64FFr1WM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Rb4GHfL8KJsLuIPT4dg64FFr1WM/1/da"><img src="http://feedads.g.doubleclick.net/~a/Rb4GHfL8KJsLuIPT4dg64FFr1WM/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/RidhuansBlog/~4/bKZYzla2LhY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ridhuan.com/blog/2010/02/new-and-better-firefox-transparent-addon/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.ridhuan.com/blog/2010/02/new-and-better-firefox-transparent-addon/</feedburner:origLink></item>
	</channel>
</rss>
