<?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"
	>

<channel>
	<title>Make Money Online</title>
	<atom:link href="http://www.viloria.biz/feed" rel="self" type="application/rss+xml" />
	<link>http://www.viloria.biz</link>
	<description>Making Money Online is not a Profession, it’s a Destiny.</description>
	<pubDate>Tue, 19 Aug 2008 01:25:41 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>Linux on USB</title>
		<link>http://www.viloria.biz/personal/linux-on-usb.htm</link>
		<comments>http://www.viloria.biz/personal/linux-on-usb.htm#comments</comments>
		<pubDate>Tue, 19 Aug 2008 01:20:07 +0000</pubDate>
		<dc:creator>chaoticclown</dc:creator>
		
		<category><![CDATA[Personal]]></category>

		<category><![CDATA[Damn Small Linux]]></category>

		<category><![CDATA[Damn Small Linux USB]]></category>

		<category><![CDATA[Damn Small Linux USB install tutorial]]></category>

		<category><![CDATA[Linux USB]]></category>

		<category><![CDATA[Operating System]]></category>

		<category><![CDATA[USB]]></category>

		<guid isPermaLink="false">http://www.viloria.biz/?p=52</guid>
		<description><![CDATA[Here is the complete tutorial on how to create a working OS on your USB.





Damn Small Linux USB install tutorial:
1. Download the HP-USB Format tool and format your flash drive using the Fat or Fat32 option
2. Download the dsl-embedded.zip and extract the contents using 7-Zip to your &#8220;USB flash drive&#8221;
3. Download syslinux-3.36.zip and unzip the [...]]]></description>
			<content:encoded><![CDATA[<p>Here is the complete tutorial on how to create a working OS on your USB.</p>
<div class="mceTemp mceIEcenter">
<dl class="wp-caption aligncenter" style="width: 410px;">
<dt class="wp-caption-dt"><img title="Damn Smaill Linux" src="http://www.pendrivelinux.com/wp-content/uploads/dsl.jpg" alt="Damn Smaill Linux" width="400" height="150" /></dt>
</dl>
</div>
<p>Damn Small Linux USB install tutorial:</p>
<p>1. Download the HP-USB Format tool and format your flash drive using the Fat or Fat32 option<br />
2. Download the <a href="http://distro.ibiblio.org/pub/linux/distributions/damnsmall/archive/dsl-4.4-embedded.zip">dsl-embedded.zip</a> and extract the contents using <a href="http://downloads.sourceforge.net/sevenzip/7z445.exe">7-Zip</a> to your &#8220;USB flash drive&#8221;<br />
3. Download <a href="http://www.kernel.org/pub/linux/utils/boot/syslinux/Old/syslinux-3.36.zip">syslinux-3.36.zip</a> and unzip the files to a directory called syslinux on your computer<br />
4. From Windows click start-&gt; run-&gt; cmd<br />
5. From the command window, type cd \syslinux\win32<br />
6. Type syslinux.exe -ma X: (replace X with your USB drive letter) to make the drive bootable<br />
7. Reboot your computer and set your system BIOS or Boot Menu to boot from the USB device. In some cases, you might also need to set the hard disk boot priority to boot from the USB stick if your BIOS lists the device as a hard drive.</p>
<p>Notes: It is possible to &#8220;boot DSL using Qemu emulation&#8221; without the need to reboot the PC. See the included readme file that was written by the authors of DSL.</p>
<p>If you still can&#8217;t get DSL to work, you can try this full installation tutorial direct from the <a href="http://www.damnsmalllinux.org/wiki/index.php/Installing_to_a_USB_Flash_Drive">DSL wiki</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.viloria.biz/personal/linux-on-usb.htm/feed</wfw:commentRss>
		</item>
		<item>
		<title>301 Redirects</title>
		<link>http://www.viloria.biz/search-engine-optimization/301-redirects.htm</link>
		<comments>http://www.viloria.biz/search-engine-optimization/301-redirects.htm#comments</comments>
		<pubDate>Thu, 31 Jul 2008 02:28:00 +0000</pubDate>
		<dc:creator>chaoticclown</dc:creator>
		
		<category><![CDATA[Search Engine Optimization]]></category>

		<category><![CDATA[.htaccess Redirect]]></category>

		<category><![CDATA[301 Redirects]]></category>

		<category><![CDATA[ASP Redirect]]></category>

		<category><![CDATA[ASP.net Redirect]]></category>

		<category><![CDATA[CGI PERL Redirect]]></category>

		<category><![CDATA[ColdFusion Redirect]]></category>

		<category><![CDATA[HTML Redirect]]></category>

		<category><![CDATA[JSP (Java) Redirect]]></category>

		<category><![CDATA[PHP Redirect]]></category>

		<category><![CDATA[Ruby on Rails Redirect]]></category>

		<guid isPermaLink="false">http://www.viloria.biz/?p=44</guid>
		<description><![CDATA[Here are some 301 Redirects
Redirect NON-WWW Domain to WWW Domain (.htaccess)
Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^domain.com [nc]
rewriterule ^(.*)$ http://www.domain.com/$1 [r=301,nc]
Redirect Old Domain to New Domain (.htaccess)

Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L]
PHP Redirect
&#60;?
Header( &#8220;HTTP/1.1 301 Moved Permanently&#8221; );
Header( &#8220;Location: http://www.new-url.com&#8221; );
?&#62; 
JSP (Java) Redirect
&#60;%
response.setStatus(301);
response.setHeader( &#8220;Location&#8221;, &#8220;http://www.new-url.com/&#8221; );
response.setHeader( &#8220;Connection&#8221;, &#8220;close&#8221; );
%&#62; 
HTML Redirect
&#60;meta 			     [...]]]></description>
			<content:encoded><![CDATA[<p>Here are some 301 Redirects</p>
<p><strong>Redirect NON-WWW Domain to WWW Domain (.htaccess)</strong></p>
<blockquote><p>Options +FollowSymlinks<br />
RewriteEngine on<br />
rewritecond %{http_host} ^domain.com [nc]<br />
rewriterule ^(.*)$ http://www.domain.com/$1 [r=301,nc]</p></blockquote>
<p><strong>Redirect Old Domain to New Domain (.htaccess)<br />
</strong></p>
<blockquote><p>Options +FollowSymLinks<br />
RewriteEngine on<br />
RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L]</p></blockquote>
<p><strong>PHP Redirect</strong></p>
<blockquote><p><span class="defaultfont">&lt;?<br />
Header( &#8220;HTTP/1.1 301 Moved Permanently&#8221; );<br />
Header( &#8220;Location: http://www.new-url.com&#8221; );<br />
?&gt; </span></p></blockquote>
<p><strong>JSP (Java) Redirect</strong></p>
<blockquote><p><span class="defaultfont">&lt;%<br />
response.setStatus(301);<br />
response.setHeader( &#8220;Location&#8221;, &#8220;http://www.new-url.com/&#8221; );<br />
response.setHeader( &#8220;Connection&#8221;, &#8220;close&#8221; );<br />
%&gt; </span></p></blockquote>
<p><strong>HTML Redirect</strong></p>
<blockquote><p><span style="font-family: Arial,Helvetica; font-size: x-small;">&lt;meta 			      HTTP-EQUIV=&#8221;REFRESH&#8221; content=&#8221;x; 			      url=http://www.yourdomain.com/index.html&#8221;&gt;<br />
<strong><em>NOTE: content=&#8221;x (x can be changed from 0-x numbers depending on how many seconds will it take before redirecting to another page.)</em></strong></span></p></blockquote>
<p><strong>ColdFusion Redirect</strong></p>
<blockquote><p><span class="defaultfont">&lt;.cfheader statuscode=&#8221;301&#8243; statustext=&#8221;Moved permanently&#8221;&gt;<br />
&lt;.cfheader name=&#8221;Location&#8221; value=&#8221;http://www.new-url.com&#8221;&gt; </span></p></blockquote>
<p><strong>ASP.net Redirect </strong></p>
<blockquote><p><span class="defaultfont">&lt;script runat=&#8221;server&#8221;&gt;<br />
private void Page_Load(object sender, System.EventArgs e)<br />
{<br />
Response.Status = &#8220;301 Moved Permanently&#8221;;<br />
Response.AddHeader(&#8221;Location&#8221;,&#8221;http://www.new-url.com&#8221;);<br />
}<br />
&lt;/script&gt; </span></p></blockquote>
<p><strong>ASP Redirect</strong></p>
<blockquote><p><span class="defaultfont">&lt;%@ Language=VBScript %&gt;<br />
&lt;%<br />
Response.Status=&#8221;301 Moved Permanently&#8221;<br />
Response.AddHeader &#8220;Location&#8221;,&#8221;http://www.new-url.com/&#8221;<br />
%&gt;</span></p></blockquote>
<p><strong>CGI PERL Redirect</strong></p>
<blockquote><p><span class="defaultfont">$q = new CGI;<br />
print $q-&gt;redirect(&#8221;http://www.new-url.com/&#8221;); </span></p></blockquote>
<p><strong>Ruby on Rails Redirect</strong></p>
<blockquote><p>def old_action<br />
headers["Status"] = &#8220;301 Moved Permanently&#8221;<br />
redirect_to &#8220;http://www.new-url.com/&#8221;<br />
end</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.viloria.biz/search-engine-optimization/301-redirects.htm/feed</wfw:commentRss>
		</item>
		<item>
		<title>Make Money Online by Searching</title>
		<link>http://www.viloria.biz/make-money-online/make-money-online-by-searching.htm</link>
		<comments>http://www.viloria.biz/make-money-online/make-money-online-by-searching.htm#comments</comments>
		<pubDate>Thu, 17 Jul 2008 03:25:16 +0000</pubDate>
		<dc:creator>chaoticclown</dc:creator>
		
		<category><![CDATA[Make Money Online]]></category>

		<category><![CDATA[Make Money Online by Searching]]></category>

		<category><![CDATA[My Home Page Friends]]></category>

		<guid isPermaLink="false">http://www.viloria.biz/?p=26</guid>
		<description><![CDATA[
Wondering how much money search engines like Google, Yahoo, and MSN earn from your searches? Thinking of ways to get back at them? Well here it is, My HomePage Friends (MHPF) is a Pay to Search (PTS) program that pays you to search on popular search engines like Yahoo.com. This PTS pays you in Pounds [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.myhpf.co.uk/apply001.asp?Friend=20134"><img class="alignnone size-medium wp-image-29 aligncenter" title="Home Page Friends" src="http://www.viloria.biz/wp-content/uploads/2008/07/untitled-1.jpg" alt="" width="212" height="79" /></a></p>
<p>Wondering how much money search engines like Google, Yahoo, and MSN earn from your searches? Thinking of ways to get back at them? Well here it is, <strong><a href="http://www.viloria.biz/make-money-online/make-money-online-by-searching.htm">My HomePage Friends (MHPF)</a></strong> is a Pay to Search (PTS) program that pays you to search on popular search engines like Yahoo.com. This PTS pays you in Pounds (£) that&#8217;s much more than a dollar ($).</p>
<p>MHPF pays you approximately £1 for every 100 searches using the search box, sounds small, after sometime you won&#8217;t even notice that your generating hundreds just by searching the internet. MHPF provides a search box that is built into your browser the best thing is, it works on Firefox and Internet Explorer. Though it searches only on Yahoo, it will eventually add more search engines that will give you more search results.</p>
<p>More ways on maximizing your earnings through , here are some of them.</p>
<p>1. Search</p>
<blockquote><p>Instead of typing a website address in the address bar use the search box instead.</p></blockquote>
<p>2. Referrals</p>
<blockquote><p>You can also refer a friend, by recommending them to <a href="http://www.viloria.biz/make-money-online/make-money-online-by-searching.htm">My HomePage Friends</a>, you get 10% of their earnings and even a small amount from their referral&#8217;s earnings.</p></blockquote>
<p style="text-align: center;"><a href="http://www.myhpf.co.uk/apply001.asp?Friend=20134"><img class="alignnone size-medium wp-image-30 aligncenter" title="sign-up" src="http://www.viloria.biz/wp-content/uploads/2008/07/sign-up.png" alt="" width="182" height="63" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.viloria.biz/make-money-online/make-money-online-by-searching.htm/feed</wfw:commentRss>
		</item>
		<item>
		<title>Social Bookmarking Network Released</title>
		<link>http://www.viloria.biz/social-bookmarking/social-bookmarking-network-released.htm</link>
		<comments>http://www.viloria.biz/social-bookmarking/social-bookmarking-network-released.htm#comments</comments>
		<pubDate>Wed, 16 Jul 2008 05:03:24 +0000</pubDate>
		<dc:creator>chaoticclown</dc:creator>
		
		<category><![CDATA[Social Bookmarking]]></category>

		<category><![CDATA[Social Bookmarking Network]]></category>

		<category><![CDATA[Social Bookmarking Network Released]]></category>

		<category><![CDATA[Social Bookmarking Site]]></category>

		<category><![CDATA[Social Bookmarking Submission]]></category>

		<guid isPermaLink="false">http://www.viloria.biz/?p=24</guid>
		<description><![CDATA[
Here is my old but new Social Bookmarking Networking Site. I have refurbished the old one, but due to errors on my database, I haven&#8217;t imported the old bookmarks that used to be there, sorry :). Feel free to submit and contribute.
]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.latestramblings.com/"><img class="alignnone size-medium wp-image-31 aligncenter" src="http://www.viloria.biz/wp-content/uploads/2008/07/lr-300x130.jpg" alt="Social Bookmarking Networking" width="300" height="130" /></a></p>
<p>Here is my old but new Social Bookmarking Networking Site. I have refurbished the old one, but due to errors on my database, I haven&#8217;t imported the old bookmarks that used to be there, sorry :). Feel free to submit and contribute.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.viloria.biz/social-bookmarking/social-bookmarking-network-released.htm/feed</wfw:commentRss>
		</item>
		<item>
		<title>WordCamp. Why Join?</title>
		<link>http://www.viloria.biz/personal/wordcamp-why-join.htm</link>
		<comments>http://www.viloria.biz/personal/wordcamp-why-join.htm#comments</comments>
		<pubDate>Wed, 16 Jul 2008 04:52:51 +0000</pubDate>
		<dc:creator>chaoticclown</dc:creator>
		
		<category><![CDATA[Personal]]></category>

		<category><![CDATA[Philippines 2008]]></category>

		<category><![CDATA[WordCamp]]></category>

		<category><![CDATA[WordCamp Philippines 2008]]></category>

		<guid isPermaLink="false">http://www.viloria.biz/?p=23</guid>
		<description><![CDATA[
Well, I have already successfully registered. I am on my way to being part of that event – a certain first here in the Philippines. I am talking about WordCamp Philippines 2008.
What’s my purpose now in wanting to join WordCamp? Well, my main reason would be that I would like to learn even more about [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a title="WordCamp Philippines 2008" href="http://philippines.wordcamp.org"><img class="aligncenter" src="http://i293.photobucket.com/albums/mm63/robillo/wcphils08/WCPhils_badge1.png" border="0" alt="WordCamp Philippines badge1" /></a></p>
<p>Well, I have already successfully registered. I am on my way to being part of that event – a certain first here in the Philippines. I am talking about <a href="http://philippines.wordcamp.org">WordCamp Philippines 2008</a>.</p>
<p>What’s my purpose now in wanting to join WordCamp? Well, my main reason would be that I would like to learn even more about WordPress. Tons of websites do use WordPress and I would like to gain more knowledge on what else I could do with it. There sure is a reason why most people choose WordPress over other hosting sites. With my joining WordCamp, I would be able to discover just what makes WordPress stay on top.</p>
<p>Now, that was one of my purposes in joining WordCamp. I have yet another reason why I chose to register. See, I would also want to meet new people and make friends. I know that sounds so cliché but the truth is, being friends with people online are far different from getting to know people face to face. Living in a world where I am online most of the time leaves me not much time to meet up with these online friends I’ve made. This event is one chance for me to meet my online friends personally. It would also be a blast meeting these blogging and online celebrities. I could name them all but there are so many of them.</p>
<p>Those are my two main reasons why I chose to join WordCamp. I am sure that it would be quite interesting. Thanks to <a href="http://www.mindanaobloggers.com">Mindanao Bloggers</a>, this event is going to push through. Of course, the organizers of this event have got sponsors to thank. And the list includes:</p>
<ul>
<li><a href="http://i.ph/" target="_blank">i.PH: the Domain for Individuals</a></li>
<li><a title="Free Flash Games for Kids" href="http://freebarbie.net/" target="_blank">Free Online Flash Games</a></li>
<li><a href="http://www.wazzupmanila.com/" target="_blank">Wazzup Manila Philippines</a></li>
<li><a href="http://www.masterdigm.com/" target="_blank">Real Estate CRM</a></li>
<li><a href="http://www.will2design.com/" target="_blank">Real Estate Website Designers</a></li>
<li><a href="http://www.flaney.com/" target="_blank">Orange County Real Estate</a></li>
<li><a href="http://www.nowautoinsurance.com/" target="_blank">Auto Insurance Quotes</a></li>
<li><a href="http://www.lanesystems.com/" target="_blank">Lane Systems Inc.</a></li>
<li><a href="http://www.redmediacrm.com/" target="_blank">RedMedia</a></li>
<li><a href="http://www.winsten.com/" target="_blank">Orange County Business Lawyer</a></li>
<li><a href="http://www.cebupacificair.com/" target="_blank">Cebu Pacific Air</a></li>
<li><a href="http://buddygancenia.com/" target="_blank">Buddy Gancenia Reality TV</a></li>
<li> <a href="http://www.smart.com.ph/Corporate/Brands/SmartBro" target="_blank">SmartBro Wireless Broadband</a></li>
<li><a href="http://www.spot.ph/" target="_blank">SPOT.ph</a></li>
<li><a href="http://performancingads.com/" target="_blank">Make Money with Performancing Ads</a></li>
</ul>
<p>All I do now is wait for the date to arrive. And that would be the time when we would all troop to the venue and be part of WordCamp2008.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.viloria.biz/personal/wordcamp-why-join.htm/feed</wfw:commentRss>
		</item>
		<item>
		<title>Google On Page SEO Tips &#038; Strategies</title>
		<link>http://www.viloria.biz/search-engine-optimization/google-on-page-seo-tips-strategies.htm</link>
		<comments>http://www.viloria.biz/search-engine-optimization/google-on-page-seo-tips-strategies.htm#comments</comments>
		<pubDate>Thu, 26 Jun 2008 06:48:07 +0000</pubDate>
		<dc:creator>chaoticclown</dc:creator>
		
		<category><![CDATA[Search Engine Optimization]]></category>

		<category><![CDATA[On Page]]></category>

		<category><![CDATA[On Page SEO]]></category>

		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.viloria.biz/?p=4</guid>
		<description><![CDATA[Here is a video I&#8217;ve found on YouTube about On Page Search Engine Optimization, It can be useful for SEO&#8217;s who are just starting on their adventures on the so called SEO. It explains the basics on On Page SEO where you will learn about how to make your site rank better than other websites [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a video I&#8217;ve found on YouTube about <strong><a href="http://www.viloria.biz/search-engine-optimization/google-on-page-seo-tips-strategies.htm">On Page Search Engine Optimization</a></strong>, It can be useful for SEO&#8217;s who are just starting on their adventures on the so called <strong>SEO</strong>. It explains the basics on On Page SEO where you will learn about how to make your site rank better than other websites on your niche. Enjoy <img src='http://www.viloria.biz/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><center><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="349" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.youtube.com/v/4_1kfMR11wQ&amp;hl=en&amp;fs=1&amp;rel=0&amp;color1=0x006699&amp;color2=0x54abd6&amp;border=1" /><embed type="application/x-shockwave-flash" width="425" height="349" src="http://www.youtube.com/v/4_1kfMR11wQ&amp;hl=en&amp;fs=1&amp;rel=0&amp;color1=0x006699&amp;color2=0x54abd6&amp;border=1" allowfullscreen="true"></embed></object></center></p>
]]></content:encoded>
			<wfw:commentRss>http://www.viloria.biz/search-engine-optimization/google-on-page-seo-tips-strategies.htm/feed</wfw:commentRss>
		</item>
		<item>
		<title>Hello Blogging</title>
		<link>http://www.viloria.biz/personal/hello-blogging.htm</link>
		<comments>http://www.viloria.biz/personal/hello-blogging.htm#comments</comments>
		<pubDate>Fri, 25 Apr 2008 17:43:50 +0000</pubDate>
		<dc:creator>chaoticclown</dc:creator>
		
		<category><![CDATA[Personal]]></category>

		<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.viloria.biz//?p=1</guid>
		<description><![CDATA[Hello Blogging World!! Well, here I am trying my best to write my guts out and learn a thing or two on writing. I know the basics but never seem to assemble the words right. As my writer friends say, try and try again, don&#8217;t rush yourself on writing, you won&#8217;t learn it all on [...]]]></description>
			<content:encoded><![CDATA[<p>Hello Blogging World!! Well, here I am trying my best to write my guts out and learn a thing or two on writing. I know the basics but never seem to assemble the words right. As my writer friends say, try and try again, don&#8217;t rush yourself on writing, you won&#8217;t learn it all on one day. Let&#8217;s see what this blog can do for me. Bye for now. <img src='http://www.viloria.biz/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.viloria.biz/personal/hello-blogging.htm/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
