<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Keithics Blog and Thoughts &#187; Personal Thoughts</title>
	<atom:link href="http://keithics.com/blog/category/personal-thoughts/feed" rel="self" type="application/rss+xml" />
	<link>http://keithics.com/blog</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Thu, 16 Jun 2011 06:10:04 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>I am now loving Fotolia!!</title>
		<link>http://keithics.com/blog/personal-thoughts/i-am-now-loving-fotolia</link>
		<comments>http://keithics.com/blog/personal-thoughts/i-am-now-loving-fotolia#comments</comments>
		<pubDate>Tue, 22 Mar 2011 13:13:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Personal Thoughts]]></category>

		<guid isPermaLink="false">http://keithics.com/blog/?p=374</guid>
		<description><![CDATA[After a few downloads of vectors and images from Fotolia for  my web design and mobile development services, I can clearly say that they are  way better than my previous stock photo company.
Compared to other stock agencies,  Fotolia (www.fotolia) is rather young but it  has gained popularity and good reviews both [...]]]></description>
			<content:encoded><![CDATA[<p>After a few downloads of vectors and images from Fotolia for  my web design and mobile development services, I can clearly say that they are  way better than my previous stock photo company.</p>
<p>Compared to other stock agencies,  Fotolia (<a href="http://www.fotolia">www.fotolia</a>) is rather young but it  has gained popularity and good reviews both from contributors and  customers.  Like other sites shelling the  same type of business, this site is a good place to get images for creative  purposes for a lesser cost. Since it was launched, there are almost 12 million  photos, vectors and videos available. Fotolia also have 15 regional sites like  Japan and Brazil. The site’s lay-out is uncomplicated – simple and clean. With  this, the site is easy to navigate and user-friendly with less reported  problems when it comes to uploading images and videos.</p>
<p><strong>Collection</strong></p>
<p>As mentioned, Fotolia has a large  database. This is good for potential buyers to have more choices in terms of  image selection. On the other side, this large number of images means stiff  competition. Contributors have to exert extra effort to have their images stick  out in the crowd. Image and video collections are also well-organized for easy  and fast browsing. Images have specific categories like abstract, business,  concept, emotion and architecture. Customers can excpet faster and more concise  image selection. Site’s visitors can also check images taken in a specific  country.</p>
<p><strong>Contributors</strong></p>
<p>One of the good things about  Fotolia is it is open for beginners. As long as you want to have good exposure  for your work or hobby, then you are free to set up an account. Photographers,  designers and art directors make up of its contributor’s population. Unlike  other stock agencies that only offer a public profile, Fotolia’s contributor’s  have their own personal site with their “my Fotolia’s site”. This is a good  venue for contributor’s to organize their submissions and even their rankings  and earnings.</p>
<p>In order to earn money, Fotolia  practices commission structuring as well as referral schemes. Like other  commission-based agencies, your commission will increase as you sell more  images. Same with referral, you earn each time your referral sells an image.  One of the issues that contributors raise is how the site changes their policies.  Many complain that Fotolia easily changes their guidelines specifically those  in related to sales.</p>
<p><strong>Costumers</strong></p>
<p>Fotolia is a royalty –free sock  agency which makes it very popular for its potential customers. When you buy an  image, you can use it more than once without paying any royalty. This will make  this site very cheap and good for small businesses. Customers can buy an image  for less than $2. They also have many free images for customers to upload and  use for free. This is a fair deal specifically for those who are on limited  financial resources. Lastly, Fotolia offers subscription plans that can make one  image upload as low as 14 cents.</p>
<p>With more than 2 million accounts  and 9 million images and vidos, the future is bright for Fotolia. Cheaper fees  make this site a great place to scout for images. Its easy features and  over-all structure welcome more artists and designers to join their sturdy  family. When looking for other reviews, Fotolia receives both fair and  excellent assessments but for now, this site is one of the best stock agencies  to choose especially if you are a beginner.</p>
]]></content:encoded>
			<wfw:commentRss>http://keithics.com/blog/personal-thoughts/i-am-now-loving-fotolia/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>MYSQL Date/Time Range Query Example</title>
		<link>http://keithics.com/blog/personal-thoughts/freelance/mysql-datetime-range-query-example</link>
		<comments>http://keithics.com/blog/personal-thoughts/freelance/mysql-datetime-range-query-example#comments</comments>
		<pubDate>Mon, 15 Nov 2010 07:43:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Freelancing]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Snippets]]></category>

		<guid isPermaLink="false">http://keithics.com/blog/?p=364</guid>
		<description><![CDATA[1.       Get Date Range
SELECT * from tbl_events WHERE eventdate BETWEEN ‘2010-11-11’ AND ‘2010-11-30’
2.       Get year events
SELECT * FROM tbl_events WHERE YEAR(eventdate) = ‘2010’
3.       Get Month and Year Events
SELECT * from tbl_events WHERE eventdate BETWEEN &#8216;2010-11-1&#8242; AND &#8216;2010-11-30&#8242;
4.       Get Events greater than Today or NOW

SELECT * from tbl_events HAVING eventdate &#62;  CURDATE()
To get the number of [...]]]></description>
			<content:encoded><![CDATA[<p>1.       <strong>Get Date Range</strong><br />
SELECT * from tbl_events WHERE eventdate BETWEEN ‘2010-11-11’ AND ‘2010-11-30’</p>
<p>2.       <strong>Get year events</strong></p>
<p>SELECT * FROM tbl_events WHERE YEAR(eventdate) = ‘2010’</p>
<p>3.       <strong>Get Month and Year Events</strong></p>
<p>SELECT * from tbl_events WHERE eventdate BETWEEN &#8216;2010-11-1&#8242; AND &#8216;2010-11-30&#8242;</p>
<p>4.       <strong>Get Events greater than Today or NOW<br />
</strong></p>
<p>SELECT * from tbl_events <strong>HAVING</strong> eventdate &gt;  CURDATE()</p>
<p>To get the number of days in a month use <a href="http://php.net/manual/en/function.cal-days-in-month.php">cal_days_in_month</a> function.</p>
]]></content:encoded>
			<wfw:commentRss>http://keithics.com/blog/personal-thoughts/freelance/mysql-datetime-range-query-example/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook Fake Email</title>
		<link>http://keithics.com/blog/personal-thoughts/freelance/facebook-fake-email</link>
		<comments>http://keithics.com/blog/personal-thoughts/freelance/facebook-fake-email#comments</comments>
		<pubDate>Mon, 20 Sep 2010 01:48:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Freelancing]]></category>

		<guid isPermaLink="false">http://keithics.com/blog/?p=360</guid>
		<description><![CDATA[Please be aware of this email!
]]></description>
			<content:encoded><![CDATA[<p>Please be aware of this email!<a href="http://keithics.com/blog/wp-content/uploads/2010/09/fake-email-from-facebook.jpg"><img class="alignnone size-full wp-image-361" title="fake-email-from-facebook" src="http://keithics.com/blog/wp-content/uploads/2010/09/fake-email-from-facebook.jpg" alt="" width="769" height="532" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://keithics.com/blog/personal-thoughts/freelance/facebook-fake-email/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SVN in Shared Hosting with Hostgator</title>
		<link>http://keithics.com/blog/personal-thoughts/svn-in-shared-hosting-with-hostgator</link>
		<comments>http://keithics.com/blog/personal-thoughts/svn-in-shared-hosting-with-hostgator#comments</comments>
		<pubDate>Sun, 11 Jul 2010 06:36:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Personal Thoughts]]></category>

		<guid isPermaLink="false">http://keithics.com/blog/?p=336</guid>
		<description><![CDATA[I love Hostgator, they never let me down ever since. There might some minor incidents but their support fixed it quickly.
My Hard drive just crashed this week and now I want to have a repository for my code just in case it happens again.
To make Hostgator+SVN to work , you need:
1. SSH access.. SSH is [...]]]></description>
			<content:encoded><![CDATA[<p>I love Hostgator, they never let me down ever since. There might some minor incidents but their support fixed it quickly.</p>
<p>My Hard drive just crashed this week and now I want to have a repository for my code just in case it happens again.</p>
<p>To make Hostgator+SVN to work , you need:</p>
<p>1. SSH access.. SSH is free if you have the business plan (shared)</p>
<p>2. <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html" target="_blank">Putty (Windows)</a></p>
<p>3. <a href="http://tortoisesvn.tigris.org/" target="_blank">TortoiseSVN (SVN Client)</a></p>
<p>Step1:</p>
<p><a href="http://keithics.com/blog/wp-content/uploads/2010/07/1.jpg"><img class="alignnone size-full wp-image-337" title="1" src="http://keithics.com/blog/wp-content/uploads/2010/07/1.jpg" alt="" width="459" height="435" /></a></p>
<p>Instructions:<br />
Type your <strong>domain name</strong> and the port as <strong>2222</strong>, in the Saved Sessions textbox type: <strong>keithics</strong> or any name, then click <strong>Save</strong>. You can see the<strong> Name on the text area on the left</strong>.<br />
<strong>Then click Open.<br />
</strong></p>
<p>Step2:</p>
<p><a href="http://keithics.com/blog/wp-content/uploads/2010/07/2.jpg"><img class="alignnone size-full wp-image-338" title="2" src="http://keithics.com/blog/wp-content/uploads/2010/07/2.jpg" alt="" width="663" height="225" /></a></p>
<p>When Putty loads, it will ask for your <strong>Username and Password</strong>. Please note that when you type your password, you can&#8217;t see anything in Putty&#8217;s commandline.<br />
Just type your password and press <strong>Enter</strong>.</p>
<p>Then Create a repository.. <img src="file:///C:/Users/keith/AppData/Local/Temp/moz-screenshot.png" alt="" /><code><br />
</code></p>
<pre><code>svnadmin create myrepo</code></pre>
<p>step3:</p>
<p><a href="http://keithics.com/blog/wp-content/uploads/2010/07/3.jpg"><img class="alignnone size-full wp-image-339" title="3" src="http://keithics.com/blog/wp-content/uploads/2010/07/3.jpg" alt="" width="540" height="225" /></a></p>
<p><a href="http://keithics.com/blog/wp-content/uploads/2010/07/4.jpg"><img class="alignnone size-full wp-image-340" title="4" src="http://keithics.com/blog/wp-content/uploads/2010/07/4.jpg" alt="" width="705" height="460" /></a></p>
<p>Install TortoiseSVN and <strong>Click Settings</strong>. In the Network Tab, browser for the <strong>Putty.exe path</strong>.</p>
<p>Step4:</p>
<p><a href="http://keithics.com/blog/wp-content/uploads/2010/07/5.jpg"><img class="alignnone size-full wp-image-341" title="5" src="http://keithics.com/blog/wp-content/uploads/2010/07/5.jpg" alt="" width="539" height="421" /></a></p>
<p>Create a repository by right clicking an empty folder then choose <strong>TortoiseSVN-&gt;Create Repository Here</strong>.<br />
Add a text file to that folder then right click the folder then choose <strong>SVN Checkout</strong>.<br />
IN the URL of the repository type:<br />
svn+ssh://<strong>keithics</strong>@<strong>keithics</strong>/home/<strong>keithics</strong>/myrepo/<br />
Replace the bold text with your own.<br />
svn+ssh://<strong>&lt;HOSTGATOR NAME&gt;</strong>@<strong>&lt;PUTTY SESSION NAME&gt;</strong>/home/<strong>&lt;HOSTGATORNAME&gt;</strong>/<strong>&lt;REPO FOLDER&gt;</strong>/</p>
<p>Good Luck and if you have any problems, just put it on the comments!</p>
]]></content:encoded>
			<wfw:commentRss>http://keithics.com/blog/personal-thoughts/svn-in-shared-hosting-with-hostgator/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Fixing Error: 1093 mysql you can&#8217;t specify target table</title>
		<link>http://keithics.com/blog/personal-thoughts/fixing-error-1093-mysql-you-cant-specify-target-table</link>
		<comments>http://keithics.com/blog/personal-thoughts/fixing-error-1093-mysql-you-cant-specify-target-table#comments</comments>
		<pubDate>Fri, 07 May 2010 17:50:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Personal Thoughts]]></category>

		<guid isPermaLink="false">http://keithics.com/blog/?p=297</guid>
		<description><![CDATA[I ran into this problem lately and I hope this can help you out..
Problem
INSERT INTO tbl_lang (enname,code,charset,inorder) VALUES  (&#8216;asd&#8217;,'asd&#8217;,'asd&#8217;,(SELECT MAX(inorder)+1 from tbl_lang))
Fix:
INSERT  INTO tbl_lang (enname,code,charset,inorder) VALUES  (&#8216;asd&#8217;,'asd&#8217;,'asd&#8217;,(SELECT MAX(inorder)+1 from tbl_lang as l))
]]></description>
			<content:encoded><![CDATA[<p>I ran into this problem lately and I hope this can help you out..</p>
<p>Problem<br />
INSERT INTO tbl_lang (enname,code,charset,inorder) VALUES  (&#8216;asd&#8217;,'asd&#8217;,'asd&#8217;,(SELECT MAX(inorder)+1 from tbl_lang))</p>
<p>Fix:<br />
INSERT  INTO tbl_lang (enname,code,charset,inorder) VALUES  (&#8216;asd&#8217;,'asd&#8217;,'asd&#8217;,(SELECT MAX(inorder)+1 from tbl_lang <span style="color: #ff0000;"><strong>as l</strong></span>))</p>
]]></content:encoded>
			<wfw:commentRss>http://keithics.com/blog/personal-thoughts/fixing-error-1093-mysql-you-cant-specify-target-table/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DOMPDF Tips &#8211; HTML to PDF using PHP5</title>
		<link>http://keithics.com/blog/personal-thoughts/freelance/dompdf-html-to-pdf-using-php5</link>
		<comments>http://keithics.com/blog/personal-thoughts/freelance/dompdf-html-to-pdf-using-php5#comments</comments>
		<pubDate>Sun, 25 Apr 2010 15:54:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Freelancing]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://keithics.com/blog/?p=282</guid>
		<description><![CDATA[ 1. Always ask to save the file , don&#8217;t load  the PDF directly. I have printing problems when printing it directly without saving.
2. Add memory limit to php.ini
ini_set("memory_limit","128M");
3. Debug the output html first before converting to pdf.
4. Load  images on the same server and with relative paths. You can&#8217;t load images using [...]]]></description>
			<content:encoded><![CDATA[<p><strong> </strong>1. Always ask to save the file , don&#8217;t load  the PDF directly. I have printing problems when printing it directly without saving.</p>
<p>2. Add memory limit to php.ini</p>
<pre>ini_set("memory_limit","128M");</pre>
<p>3. Debug the output html first before converting to pdf.</p>
<p>4. Load  images on the same server and with relative paths. You can&#8217;t load images using &#8220;http://domain.com&#8221;.</p>
<p>5. Use wordwrap with caution.</p>
<p>6. Always add width to your table and  first row cells</p>
<p>7. Make sure images are in correct format with correct extension. A BMP file with .jpg extension will trigger an error.</p>
<p>8. Avoid special characters if possible.</p>
<p>If you some trouble with DOMPDF, just comment and  maybe I can help you out.</p>
<p><strong> </strong></p>
<p><strong>All are based on experience!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://keithics.com/blog/personal-thoughts/freelance/dompdf-html-to-pdf-using-php5/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Dreamweaver Tips &#8211; Document Defaults</title>
		<link>http://keithics.com/blog/personal-thoughts/dreamweaver-tips-document-defaults</link>
		<comments>http://keithics.com/blog/personal-thoughts/dreamweaver-tips-document-defaults#comments</comments>
		<pubDate>Mon, 28 Dec 2009 13:06:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Personal Thoughts]]></category>

		<guid isPermaLink="false">http://keithics.com/blog/?p=264</guid>
		<description><![CDATA[Have been writing HTML and want to add a link to your CSS automatically?
For XP , just edit:
C:\Program Files\Adobe\Adobe Dreamweaver CS4\configuration\DocumentTypes\NewDocuments\Default.html
for my case I have this default below, this applies to all other documents like CSS, PHP, JS etc..



&#60;!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.0 Transitional//EN&#34; &#34;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#34;&#62;



&#60;html xmlns=&#34;http://www.w3.org/1999/xhtml&#34;&#62;



&#60;head&#62;



&#60;meta http-equiv=&#34;Content-Type&#34; content=&#34;text/html; charset=utf-8&#34; /&#62;



&#60;title&#62;Untitled Document&#60;/title&#62;



&#60;link rel=&#34;stylesheet&#34; type=&#34;text/css&#34; href=&#34;css/defaults.css&#34; [...]]]></description>
			<content:encoded><![CDATA[<p>Have been writing HTML and want to add a link to your CSS automatically?</p>
<p>For XP , just edit:<br />
C:\Program Files\Adobe\Adobe Dreamweaver CS4\configuration\DocumentTypes\NewDocuments\Default.html</p>
<p>for my case I have this default below, this applies to all other documents like CSS, PHP, JS etc..</p>
<div class="dean_ch" style="white-space: wrap;">
<ol>
<li class="li1">
<div class="de1">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
</div>
</li>
<li class="li1">
<div class="de1">&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;
</div>
</li>
<li class="li1">
<div class="de1">&lt;head&gt;
</div>
</li>
<li class="li1">
<div class="de1">&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;
</div>
</li>
<li class="li2">
<div class="de2">&lt;title&gt;Untitled Document&lt;/title&gt;
</div>
</li>
<li class="li1">
<div class="de1">&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;css/defaults.css&quot; /&gt;
</div>
</li>
<li class="li1">
<div class="de1">&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;css/styles.css&quot; /&gt;
</div>
</li>
<li class="li1">
<div class="de1">&lt;!&#8211;[if IE 6]&gt;
</div>
</li>
<li class="li1">
<div class="de1">&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;css/ie.css&quot; /&gt;
</div>
</li>
<li class="li2">
<div class="de2">&lt;![endif]&#8211;&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">&lt;/head&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">&lt;body&gt;
</div>
</li>
<li class="li2">
<div class="de2">&lt;/body&gt;
</div>
</li>
<li class="li1">
<div class="de1">&lt;/html&gt;</div>
</li>
</ol>
</div>
<p><span id="more-264"></span><!--more--></p>
]]></content:encoded>
			<wfw:commentRss>http://keithics.com/blog/personal-thoughts/dreamweaver-tips-document-defaults/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>http://tredosoft.com &#8211; Hacked</title>
		<link>http://keithics.com/blog/personal-thoughts/httptredosoftcom-hacked</link>
		<comments>http://keithics.com/blog/personal-thoughts/httptredosoftcom-hacked#comments</comments>
		<pubDate>Mon, 02 Mar 2009 16:47:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Personal Thoughts]]></category>

		<guid isPermaLink="false">http://keithics.com/blog/?p=218</guid>
		<description><![CDATA[I went to download a stand Alone version for IE7 and IE6 from tredosoft but was surprised by the &#8220;New&#8221; Homepage.
*** update : they moved their server to godaddy. more info here ****

]]></description>
			<content:encoded><![CDATA[<p>I went to download a stand Alone version for IE7 and IE6 from tredosoft but was surprised by the &#8220;New&#8221; Homepage.</p>
<p>*** update : they moved their server to godaddy. more info <a href="http://tredosoft.com/node/35" target="_blank">here</a> ****</p>
<p><img class="alignnone size-full wp-image-219" title="hacked" src="http://keithics.com/blog/wp-content/uploads/2009/03/hacked.jpg" alt="hacked" width="840" height="480" /></p>
]]></content:encoded>
			<wfw:commentRss>http://keithics.com/blog/personal-thoughts/httptredosoftcom-hacked/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Julie&#8217;s Bakeshop website</title>
		<link>http://keithics.com/blog/personal-thoughts/freelance/julies-bakeshop-website</link>
		<comments>http://keithics.com/blog/personal-thoughts/freelance/julies-bakeshop-website#comments</comments>
		<pubDate>Wed, 26 Nov 2008 21:51:15 +0000</pubDate>
		<dc:creator>keithics</dc:creator>
				<category><![CDATA[Freelancing]]></category>
		<category><![CDATA[Latest Works]]></category>
		<category><![CDATA[Julies Bakeshop]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://keithics.com/blog/?p=163</guid>
		<description><![CDATA[Julie&#8217;s Bakeshop is now online and designed and developed by yours truly.
Tasks includes redesign , coding of xhtml , php , forum integration and the hardest part is integration of existing users from the old site to the new site. This website also have a custom admin which can control almost any content of the [...]]]></description>
			<content:encoded><![CDATA[<p>Julie&#8217;s Bakeshop is now online and designed and developed by yours truly.</p>
<p>Tasks includes redesign , coding of xhtml , php , forum integration and the hardest part is integration of existing users from the old site to the new site. This website also have a custom admin which can control almost any content of the site, as well as flash animated and XML powered gallery!</p>
<p>Visit their site: <a href="http://www.juliesbakeshop.com.ph" target="_blank">http://www.juliesbakeshop.com.ph</a></p>
<p><a href="http://keithics.com/blog/wp-content/uploads/2008/11/jfc1.jpg"><img class="alignnone size-full wp-image-166" title="jfc1" src="http://keithics.com/blog/wp-content/uploads/2008/11/jfc1.jpg" alt="" width="794" height="549" /></a></p>
<p>(thanks Ms Niceless Morales for giving me the project!)</p>
]]></content:encoded>
			<wfw:commentRss>http://keithics.com/blog/personal-thoughts/freelance/julies-bakeshop-website/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Gmail homepage lacks creativity</title>
		<link>http://keithics.com/blog/personal-thoughts/freelance/gmail-homepage-lacks-creativity</link>
		<comments>http://keithics.com/blog/personal-thoughts/freelance/gmail-homepage-lacks-creativity#comments</comments>
		<pubDate>Fri, 21 Nov 2008 16:12:50 +0000</pubDate>
		<dc:creator>keithics</dc:creator>
				<category><![CDATA[Freelancing]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[Gmail homepage]]></category>
		<category><![CDATA[gmail new homepage]]></category>

		<guid isPermaLink="false">http://keithics.com/blog/?p=158</guid>
		<description><![CDATA[I just opened my gmail today and I was suprised by the new design. The text are hard to read, the color dull! the background image sucks!
Common Google, can you make it a bit lively and creative, please?
You can hire me if you want, I am confident I can make a better design! LOL


Background Image
]]></description>
			<content:encoded><![CDATA[<p>I just opened my gmail today and I was suprised by the new design. The text are hard to read, the color dull! the background image sucks!</p>
<p>Common Google, can you make it a bit lively and creative, please?</p>
<p>You can hire me if you want, I am confident I can make a better design! LOL</p>
<p><a href="http://keithics.com/blog/wp-content/uploads/2008/11/gmail.jpg"><img class="alignnone size-full wp-image-159" title="gmail" src="http://keithics.com/blog/wp-content/uploads/2008/11/gmail.jpg" alt="" width="864" height="411" /></a></p>
<p><a href="http://keithics.com/blog/wp-content/uploads/2008/11/skin_image.jpg"><img class="alignnone size-medium wp-image-160" title="skin_image" src="http://keithics.com/blog/wp-content/uploads/2008/11/skin_image-450x113.jpg" alt="" width="450" height="113" /></a></p>
<p>Background Image</p>
]]></content:encoded>
			<wfw:commentRss>http://keithics.com/blog/personal-thoughts/freelance/gmail-homepage-lacks-creativity/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

