<?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>Rediscoverer</title>
	<atom:link href="http://rediscoverer.net/feed" rel="self" type="application/rss+xml" />
	<link>http://rediscoverer.net</link>
	<description>... since almost everything is already out there.</description>
	<pubDate>Thu, 08 Nov 2007 12:40:02 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<item>
		<title>Firefox HTML Validator plugin fix  (Ubuntu Feisty or Gutsy)</title>
		<link>http://rediscoverer.net/archives/36</link>
		<comments>http://rediscoverer.net/archives/36#comments</comments>
		<pubDate>Thu, 08 Nov 2007 12:39:16 +0000</pubDate>
		<dc:creator>Rolan</dc:creator>
		
		<category><![CDATA[Daily]]></category>

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

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

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

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

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

		<category><![CDATA[html validator]]></category>

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

		<guid isPermaLink="false">http://rediscoverer.net/archives/36</guid>
		<description><![CDATA[If you have Ubuntu Feisty or Gutsy with the default Firefox installed (meaning you didn&#8217;t manually downloaded/installed your Firefox), you might have some problems making the HTML Validator plugin work even after you followed the fix for Linux. I&#8217;ve already encountered this problem when I was still using Ubuntu Feisty and then again this morning [...]]]></description>
			<content:encoded><![CDATA[<p>If you have Ubuntu Feisty or Gutsy with the default Firefox installed (meaning you didn&#8217;t manually downloaded/installed your Firefox), you might have some problems making the <a href="http://users.skynet.be/mgueury/mozilla/index.html"><span class="caps">HTML</span> Validator plugin</a> work even after you followed the <a href="http://users.skynet.be/mgueury/mozilla/faq.html#LINUX">fix for Linux</a>. I&#8217;ve already encountered this problem when I was still using Ubuntu Feisty and then again this morning after upgrading to Gutsy.</p>

<p>The fix is actually for another Firefox plugin: <a href="https://addons.mozilla.org/en-US/firefox/addon/271">Colorzilla</a>. I was having some problems making the <span class="caps">HTML</span> Validator work back then and decided to install Colorzilla first.  It also had some problems but after some Googling, I <a href="http://ubuntuforums.org/showpost.php?p=1432077&amp;postcount=6">found a fix</a> that worked. The latest Firefox binaries needed to be downloaded and its libxpcom shared objects (libxpcom*.so) overwrite the current ones found in /usr/lib/firefox.</p>

<p>Feeling that I couldn&#8217;t do much without the <span class="caps">HTML</span> Validator plugin, I gave it one more try. The thing worked!</p>

<p>After upgrading to Ubuntu Gutsy Gibbon, some of my Firefox plugins went crazy (HTML Validator, Colorzilla and <a href="https://addons.mozilla.org/en-US/firefox/addon/722">NoScript</a>). Then I remembered having the same problems and fixed it again.</p>

<p>Just wanted to post that- might be able to help someone.</p>]]></content:encoded>
			<wfw:commentRss>http://rediscoverer.net/archives/36/feed</wfw:commentRss>
		</item>
		<item>
		<title>1st Philippine PHP Developer&#8217;s Conference</title>
		<link>http://rediscoverer.net/archives/33</link>
		<comments>http://rediscoverer.net/archives/33#comments</comments>
		<pubDate>Wed, 10 Oct 2007 03:00:58 +0000</pubDate>
		<dc:creator>Rolan</dc:creator>
		
		<category><![CDATA[Reminders]]></category>

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

		<guid isPermaLink="false">http://rediscoverer.net/archives/33</guid>
		<description><![CDATA[
&#8220;Welcome to the 1st ever Philippine PHP Developer&#8217;s Conference that will be held this upcoming December 1, 2007 where sharing opensource solutions in the enterprise and schools is the main theme.This is in follow up with last April&#8217;s grand meetup which caught the attention of Philippines IT Industry and were looking forward of expanding it&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center"><a href='http://www.php.net/cal.php?id=2807&amp;cm=12&amp;cy=2007' title='PHP Everywhere'><img src='http://rediscoverer.net/wp-content/uploads/2007/10/phpmeet12-07.png' alt='PHP Everywhere' /></a></p>
<blockquote>&#8220;Welcome to the 1st ever Philippine <span class="caps">PHP</span> Developer&#8217;s Conference that will be held this upcoming December 1, 2007 where sharing opensource solutions in the enterprise and schools is the main theme.This is in follow up with last April&#8217;s grand meetup which caught the attention of Philippines IT Industry and were looking forward of expanding it&#8217;s presence thru this event.&#8221; </blockquote>

Still accepting event sponsors. For more info, please visit:<br />
<p style="text-align: center"><a href='http://www.phpugph.com/' title='PHP User-Group Philippines'><img src='http://rediscoverer.net/wp-content/uploads/2007/10/phpugph-logo.gif' alt='PHPUGPH Logo' /></a></p>]]></content:encoded>
			<wfw:commentRss>http://rediscoverer.net/archives/33/feed</wfw:commentRss>
		</item>
		<item>
		<title>Input Elements: disabled vs. readOnly</title>
		<link>http://rediscoverer.net/archives/32</link>
		<comments>http://rediscoverer.net/archives/32#comments</comments>
		<pubDate>Tue, 09 Oct 2007 13:56:36 +0000</pubDate>
		<dc:creator>Rolan</dc:creator>
		
		<category><![CDATA[Daily]]></category>

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

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

		<guid isPermaLink="false">http://rediscoverer.net/archives/32</guid>
		<description><![CDATA[Disabled and readOnly input elements both prevent its data from being changed (at least via the user).
But a disabled input element&#8217;s data is not sent with other data when the form is submitted. Could&#8217;ve saved me that extra 30-minute debugging time.]]></description>
			<content:encoded><![CDATA[<p>Disabled and readOnly input elements both prevent its data from being changed (at least via the user).<br />
But a disabled input element&#8217;s data is not sent with other data when the form is submitted. Could&#8217;ve saved me that extra 30-minute debugging time.</p>]]></content:encoded>
			<wfw:commentRss>http://rediscoverer.net/archives/32/feed</wfw:commentRss>
		</item>
		<item>
		<title>SKYPE Phishing Attempt</title>
		<link>http://rediscoverer.net/archives/30</link>
		<comments>http://rediscoverer.net/archives/30#comments</comments>
		<pubDate>Tue, 11 Sep 2007 23:46:13 +0000</pubDate>
		<dc:creator>Rolan</dc:creator>
		
		<category><![CDATA[Daily]]></category>

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

		<guid isPermaLink="false">http://rediscoverer.net/archives/30</guid>
		<description><![CDATA[Received an email claiming that it&#8217;s from Skype and it wants me to update my Skype profile. It was already suspicious because I don&#8217;t think Skype (and perhaps other service providers) would suspend users for not updating their account. It gave me a link to http://cavyg.com/ze4/include/cs/www.skype.com/login454544465646464/index.htm which was &#8220;dressed&#8221; as https://secure.skype.com/login_update_done=1115487. And that was the [...]]]></description>
			<content:encoded><![CDATA[<p>Received an email claiming that it&#8217;s from Skype and it wants me to update my Skype profile. It was already suspicious because I don&#8217;t think Skype (and perhaps other service providers) would suspend users for not updating their account. It gave me a link to <a href="http://cavyg.com/ze4/include/cs/www.skype.com/login454544465646464/index.htm">http://cavyg.com/ze4/include/cs/www.skype.com/login454544465646464/index.htm</a> which was &#8220;dressed&#8221; as <a href="https://secure.skype.com/login_update_done=1115487">https://secure.skype.com/login_update_done=1115487</a>. And that was the giveaway clue.</p>

<p style="text-align: center"><a href='http://rediscoverer.net/wp-content/uploads/2007/09/phisshemail.png' title='Phishing Email'><img src='http://rediscoverer.net/wp-content/uploads/2007/09/phisshemail.thumbnail.png' alt='Phishing Email' /></a></p>

<p>Curious of what&#8217;s behind the link, I clicked it. After the page has loaded Firefox informed me that it&#8217;s a possible phishing attempt.</p>

<p style="text-align: center"><a href='http://rediscoverer.net/wp-content/uploads/2007/09/phishing.png' title='Phishing page'><img src='http://rediscoverer.net/wp-content/uploads/2007/09/phishing.thumbnail.png' alt='Phishing page' /></a></p>

<p>Hmmm&#8230; I wonder where they got my email address and if they knew I&#8217;m a Skype user or just randomly sent out the email. I already warned my friends about it.</p>]]></content:encoded>
			<wfw:commentRss>http://rediscoverer.net/archives/30/feed</wfw:commentRss>
		</item>
		<item>
		<title>Hooray! On Linux at last</title>
		<link>http://rediscoverer.net/archives/28</link>
		<comments>http://rediscoverer.net/archives/28#comments</comments>
		<pubDate>Fri, 15 Jun 2007 12:48:47 +0000</pubDate>
		<dc:creator>Rolan</dc:creator>
		
		<category><![CDATA[Daily]]></category>

		<guid isPermaLink="false">http://rediscoverer.net/archives/28</guid>
		<description><![CDATA[It&#8217;s almost a week since I installed Ubuntu Feisty Fawn on my home PC. My original plan was to install it in a separate hard drive. But since I bought a DVD burner, I might as well burn make some back-ups and free some space where I can install Ubuntu.

Ubuntu installation was easy, but the [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s almost a week since I installed Ubuntu Feisty Fawn on my home <span class="caps">PC.</span> My original plan was to install it in a separate hard drive. But since I bought a <span class="caps">DVD </span>burner, I might as well burn make some back-ups and free some space where I can install Ubuntu.</p>

<p>Ubuntu installation was easy, but the preparations I did before that were not. I thought I bought a defective <span class="caps">DVD </span>burner. I searched installation infos (Google is our friend) and followed troubleshooting guides for my <span class="caps">DVD </span>player but had to return to the computer shop to have them check the device. It worked fine on their machine. Good thing I bought a new <span class="caps">IDE </span>cable when I returned to the store. Replacing the <span class="caps">IDE </span>cable worked (I also read that one) and I was able to backup-burn my files.</p>

<p>Next part was preparing a disk partition. I was quite new at disk partitioning and was afraid to screw up my drive so I read more about disk partitioning. I have an 80Gb hard drive where I gave Windows a 15Gb partition and the remaining were for storage. Repartitioning the drive, I reduced the storage partition to 40Gb, kept the Windows partition and the freed up space (25Gb) was for Ubuntu. I knew that there was something wrong with my partitioning when I had trouble rebooting after installing Ubuntu. I checked the partitions (Using GParted) and saw the Windows partition inside an extend partition together with the Linux partitions. Tried to fix the master boot record using fixmbr (from the Windows Installation CD- Repair Console), but didn&#8217;t work. Since I didn&#8217;t care about my Windows installation and I already had my files backed up, I decided  to repartition the drive, flushing away the old Windows installation.</p>

<p>I reinstalled Windows and then Ubuntu. I used the default &#8220;50%&#8221; for the Ubuntu partition since I didn&#8217;t want to mess around manually setting Linux partitions. After installation, Ubuntu created some partition for itself but left around 12G of the 25Gb space I reserved for it. Oh well&#8230; I&#8217;ll free it up after I buy a new hard drive.</p>

<p>My PC now dual boots to Windows or Ubuntu. I don&#8217;t use Windows that often anymore.</p>

<p>By the way, here&#8217;s a preview of what my desktop looks like:</p>

<div style="width: 425px; margin: auto;">
<object width="425" height="350" ><param name="movie" value="http://www.youtube.com/v/VvMaZfbl5EU"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/VvMaZfbl5EU" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"  ></embed></object></div>

<p>I&#8217;m using <a href="http://www.beryl-project.org">Beryl</a> + <a href="https://launchpad.net/awn">Avant Window Navigator</a> for the dock. Recorded using <a href="http://packages.debian.org/unstable/graphics/gtk-recordmydesktop">gtk-recordMyDesktop</a>. It&#8217;s looks a bit choppy at the end since things became slower when I rotated the desktop cube while recording. My PC runs smoothly on 512mb of <span class="caps">RAM </span>even with these effects turned on.</p>]]></content:encoded>
			<wfw:commentRss>http://rediscoverer.net/archives/28/feed</wfw:commentRss>
		</item>
		<item>
		<title>XSS</title>
		<link>http://rediscoverer.net/archives/27</link>
		<comments>http://rediscoverer.net/archives/27#comments</comments>
		<pubDate>Fri, 08 Jun 2007 12:21:44 +0000</pubDate>
		<dc:creator>Rolan</dc:creator>
		
		<category><![CDATA[Daily]]></category>

		<category><![CDATA[Javascript/Ajax]]></category>

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

		<guid isPermaLink="false">http://rediscoverer.net/archives/27</guid>
		<description><![CDATA[Ok. Playtime&#8217;s over. Some people need to fix something. 

I&#8217;ve been playing with an XSS vulnerability in a social-networking site I&#8217;m using. The site had already had  XSS holes in the past that got patched. But then the addition of new features always opened up new problems.

One boring weekend, I got really curious with [...]]]></description>
			<content:encoded><![CDATA[<p>Ok. Playtime&#8217;s over. Some people need to fix something. </p>

<p>I&#8217;ve been playing with an <acronym title="Cross-site scripting">XSS</acronym> vulnerability in a social-networking site I&#8217;m using. The site had already had  <span class="caps">XSS </span>holes in the past that got patched. But then the addition of new features always opened up new problems.</p>

<p>One boring weekend, I got really curious with what I can do with <span class="caps">XSS.</span> Usually, whenever I see a site that is prone to script injection, I pop-up an alert box (a warning to fix the hole) and redirect them to somewhere else (usually Google). This time, I tried something neat. I&#8217;ve already read articles about stealing cookies via <span class="caps">XSS </span>but didn&#8217;t get to see how the stolen cookies were put into use. So I thought of doing an actual experiment if those things really work.</p>

<p>Long story short: it worked. I was able log into other user accounts without knowing their password. I asked <a href="http://subersibo.net">some</a> <a href="http://redyushen.net">people</a> for help to test this and gave them a demo. Really, I&#8217;m tempted to peek at other people&#8217;s account. But I don&#8217;t want guilt to keep me awake all night after a hard day&#8217;s job.</p>

<p>I already informed the folks at that site about the <span class="caps">XSS </span>hole. Maybe I&#8217;ll post how I did it after the vulnerability gets fixed. It was quite simple like the articles I&#8217;ve read before.</p>]]></content:encoded>
			<wfw:commentRss>http://rediscoverer.net/archives/27/feed</wfw:commentRss>
		</item>
		<item>
		<title>Application Programming Interface</title>
		<link>http://rediscoverer.net/archives/26</link>
		<comments>http://rediscoverer.net/archives/26#comments</comments>
		<pubDate>Tue, 29 May 2007 13:45:09 +0000</pubDate>
		<dc:creator>Rolan</dc:creator>
		
		<category><![CDATA[Daily]]></category>

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

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

		<guid isPermaLink="false">http://rediscoverer.net/archives/26</guid>
		<description><![CDATA[I was just thinking how nice it would be if more open-source PHP applications offer some sort of API for their application. It would really be useful specially when the application is likely to be integrated with another. 

For example, I have phpBB2 and Coppermine Gallery. Yes, there&#8217;s already a Coppermine-phpBB bridge to tie the [...]]]></description>
			<content:encoded><![CDATA[<p>I was just thinking how nice it would be if more open-source <span class="caps">PHP </span>applications offer some sort of <acronym title="Application Programming Interface">API</acronym> for their application. It would really be useful specially when the application is likely to be integrated with another. </p>

<p>For example, I have <a href="http://phpbb.com">phpBB2</a> and <a href="http://coppermine-gallery.net">Coppermine Gallery</a>. Yes, there&#8217;s already a Coppermine-phpBB bridge to tie the forum users to the gallery. But other than that, I have no other means of communication between the two. What if I want to display a link to a user&#8217;s gallery in each of his post, along with the usual buttons (profile, ims, etc)? What if I wanted to display randomly picked images from a user&#8217;s gallery and display it in his/her profile?</p>

<p>Ways of accessing an application&#8217;s functionalities from outside might range from a simple, block copy-paste solution and/or directly talking at another&#8217;s <acronym title="database">DB</acronym> tables&#8230; to hellish insert-here-to-there hacks and conflicting variable hunts that span several files. Some people would find themselves reading and studying in detail how both applications to come up with a way to make them work together. In-depth knowledge is good. But sometimes you don&#8217;t have for that and might be an overkill in some cases. I don&#8217;t want to see how that cow got in there, I just want my hamburger.  </p>

<p>If both had an available <a href="http://en.wikipedia.org/wiki/API" title="Application Programming Interface"><span class="caps">API</span></a>, I don&#8217;t have to go through all that trouble. I would already know what it could do and know how to make it do things without dealing with unrelated stuff. And if I ever have to make it do something out of the ordinary, I will know where to look at.</p>

<p>Plugins just crossed my mind (it should&#8230; I&#8217;m using <a href="http://wordpress.org">Wordpress</a>). Some apps come with their own plugin system, so you can extend the application and often times import some functionalities from outside the application&#8230; kinda like what an <span class="caps">API </span>does. But I don&#8217;t think they can replace <span class="caps">API</span>s. In fact, they need <span class="caps">API</span>s to exist. The application provides a some sort of a Plugin <span class="caps">API </span>for building plugins. Hmmm&#8230; using Plugin <span class="caps">API</span>s to build a plugin that communicates to another application via the <span class="caps">API </span>the other app provides. Sweet. I don&#8217;t have to deal with how the inside works. I just need something to connect them from the outside.</p>

<p>By the way, if anyone reading this knows some open-source projects (in <span class="caps">PHP</span>) that have an <span class="caps">API </span>available, please do comment. Already found one, <a href="http://www.simplemachines.org" title="Simple Machines Forum"><span class="caps">SMF</span></a>, a forum software. The <span class="caps">API </span>is just in its <a href="http://www.simplemachines.org/download/?tools">pre-release</a> though, but sure looks promising.</p>

<p>I&#8217;m sleepy and could no longer think clearly. I hope I made some sense in this post.</p>]]></content:encoded>
			<wfw:commentRss>http://rediscoverer.net/archives/26/feed</wfw:commentRss>
		</item>
		<item>
		<title>Wordpress Upgrade plus new look</title>
		<link>http://rediscoverer.net/archives/25</link>
		<comments>http://rediscoverer.net/archives/25#comments</comments>
		<pubDate>Thu, 24 May 2007 13:30:16 +0000</pubDate>
		<dc:creator>Rolan</dc:creator>
		
		<category><![CDATA[Daily]]></category>

		<guid isPermaLink="false">http://rediscoverer.net/archives/25</guid>
		<description><![CDATA[Nothing new. Just upgraded to the latest version of Wordpress . Fished around some styles&#8230; still unskilled and not inspired to come up with my own.

Whooopss!! Just noticed something wrong with the layout when viewing a single article. The layout author forgot to clear the floats for the previous and next article links. Fixed.]]></description>
			<content:encoded><![CDATA[<p>Nothing new. Just upgraded to the latest version of <a href="http://wordpress.org">Wordpress</a> . Fished around some styles&#8230; still unskilled and not inspired to come up with my own.</p>

<p>Whooopss!! Just noticed something wrong with the layout when viewing a single article. The layout author forgot to clear the floats for the previous and next article links. Fixed.</p>]]></content:encoded>
			<wfw:commentRss>http://rediscoverer.net/archives/25/feed</wfw:commentRss>
		</item>
		<item>
		<title>EXTRACT() not working on phpMyAdmin</title>
		<link>http://rediscoverer.net/archives/24</link>
		<comments>http://rediscoverer.net/archives/24#comments</comments>
		<pubDate>Sat, 03 Mar 2007 00:42:02 +0000</pubDate>
		<dc:creator>Rolan</dc:creator>
		
		<category><![CDATA[Daily]]></category>

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

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

		<guid isPermaLink="false">http://rediscoverer.net/archives/24</guid>
		<description><![CDATA[I was looking at the MySQL manual for Date and Time functions and stumbled upon a function that I might need for an &#8220;experiment&#8221; I&#8217;m doing. I used the function EXTRACT in my query, having my test run on phpMyAdmin, but it was giving me a syntax error warning. I thought that I might have [...]]]></description>
			<content:encoded><![CDATA[<p>I was looking at the MySQL manual for <a href="http://dev.mysql.com/doc/refman/4.1/en/date-and-time-functions.html">Date and Time functions</a> and stumbled upon a function that I might need for an &#8220;experiment&#8221; I&#8217;m doing. I used the function <span class="caps">EXTRACT </span>in my query, having my test run on <a href="http://phpmyadmin.net">phpMyAdmin</a>, but it was giving me a syntax error warning. I thought that I might have the wrong syntax for <span class="caps">EXTRACT </span>so I tried running a sample query, right straight from the manual.</p>

<div class="igBar"><span id="lmysql-2"><a href="#" onclick="javascript:showPlainTxt('mysql-2'); return false;"><span class="caps">PLAIN TEXT</span></a></span></div><div class="syntax_hilite"><span class="langName">MySQL:</span><br /><div id="mysql-2">
<div class="mysql"><ol><li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;"><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #993333; font-weight: bold;"><span class="caps">SELECT</span></span> <span style="color: #993333; font-weight: bold;"><span class="caps">EXTRACT</span></span><span style="color: #66cc66;">&#40;</span><span style="color: #aa9933; font-weight: bold;"><span class="caps">YEAR</span></span> <span style="color: #993333; font-weight: bold;"><span class="caps">FROM</span></span> <span style="color: #ff0000;">&#8216;1999-07-02&#8242;</span><span style="color: #66cc66;">&#41;</span>; </div></li></ol></div>
</div></div><br />

<p>But it still gave me the same error warning. It should be working since its, after all, it was in the manual&#8230; otherwise it would be corrected or removed. I ran the same query, but this time the mysql command line. It worked. I executed the query in <span class="caps">PHP,  </span>it also worked. Well, I think phpMyAdmin is having some problems with this. I&#8217;m using phpMyAdmin - 2.8.1, on MySQL 5.0.21 that comes with <a href="http://www.apachefriends.org/en/xampp.html"><span class="caps">XAMPP</span></a> . Maybe I&#8217;ll try to ask somebody to test it in other versions.</p>]]></content:encoded>
			<wfw:commentRss>http://rediscoverer.net/archives/24/feed</wfw:commentRss>
		</item>
		<item>
		<title>Wassup?</title>
		<link>http://rediscoverer.net/archives/23</link>
		<comments>http://rediscoverer.net/archives/23#comments</comments>
		<pubDate>Fri, 09 Feb 2007 13:03:36 +0000</pubDate>
		<dc:creator>understasis</dc:creator>
		
		<category><![CDATA[Daily]]></category>

		<guid isPermaLink="false">http://rediscoverer.net/archives/23</guid>
		<description><![CDATA[It&#8217;s almost 4 months after I last blogged here. I&#8217;ve been quite busy lately. Aside from work and the anime series I&#8217;ve been watching lately :D, I&#8217;ve been planning to make a CakePHP-powered blog to replace my current blogging software (Wordpress). I want to documenting my progress, problems that I encountered and how I went [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s almost 4 months after I last blogged here. I&#8217;ve been quite busy lately. Aside from work and the anime series I&#8217;ve been watching lately :D, I&#8217;ve been planning to make a CakePHP-powered blog to replace my current blogging software (Wordpress). I want to documenting my progress, problems that I encountered and how I went around them, etc. I already experienced some problems and gotcha&#8217;s using CakePHP, but I keep on forgetting how I dealt with them. It would really help me if I can keep remember them and somebody might also find it useful&#8230; as a resource, perhaps. I&#8217;m also planning to influence some people to use CakePHP and I think some thoroughly explained examples can attract potential users.</p>

<p>Awwww&#8230; I also need find some cool site design if I can&#8217;t make one for myself. The effects of avoiding art classes are starting to kick in :P.</p>]]></content:encoded>
			<wfw:commentRss>http://rediscoverer.net/archives/23/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
