<?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>PHP Trivandrum &#187; Uncategorized</title>
	<atom:link href="http://www.php-trivandrum.org/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.php-trivandrum.org</link>
	<description>Get addicted to PHP</description>
	<lastBuildDate>Fri, 27 Jan 2012 03:19:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Needed a random timed cron; Got it</title>
		<link>http://www.php-trivandrum.org/uncategorized/needed-a-random-timed-cron-got-it/</link>
		<comments>http://www.php-trivandrum.org/uncategorized/needed-a-random-timed-cron-got-it/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 02:45:55 +0000</pubDate>
		<dc:creator>jijutm</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cron]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/?p=886</guid>
		<description><![CDATA[Sorry this is nothing related to php, though I wanted to run a cron job or scheduled job at a random time, searching the Internet gave me lots of ideas but I found the apt solution only yesterday.

Create a shell script

#!/bin/bash

r=$(j=`dd if=/dev/urandom count=1 2> /dev/null &#124; cksum &#124; cut -f1 -d" "`; expr $j % [...]]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/uncategorized/needed-a-random-timed-cron-got-it/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>First taste of bbpress &#8211; was sweet but getting sour</title>
		<link>http://www.php-trivandrum.org/uncategorized/first-taste-of-bbpress-was-sweet-but-getting-sour/</link>
		<comments>http://www.php-trivandrum.org/uncategorized/first-taste-of-bbpress-was-sweet-but-getting-sour/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 14:55:45 +0000</pubDate>
		<dc:creator>jijutm</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bbpress]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/?p=534</guid>
		<description><![CDATA[Hey hey.. when we had to implement a bulletin board for an institution, the first thought was for phpbb, but the time limitation as well as lack of resources to hack through a completely new code took the turn and prompted us to take a new course. The bb press way. Atleast it was the [...]]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/uncategorized/first-taste-of-bbpress-was-sweet-but-getting-sour/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configure two mysql server and connecting php</title>
		<link>http://www.php-trivandrum.org/uncategorized/configure-two-mysql-server-and-connecting-php/</link>
		<comments>http://www.php-trivandrum.org/uncategorized/configure-two-mysql-server-and-connecting-php/#comments</comments>
		<pubDate>Fri, 09 Feb 2007 05:45:17 +0000</pubDate>
		<dc:creator>ericj</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/uncategorized/configure-two-mysql-server-and-connecting-php.html</guid>
		<description><![CDATA[One would think what is there in configuring two mysql server, or even think what the purpose behind achieving this. Well there are different requirements, and these different requirements may lead to take us through various possiblities. For instance it may be that certain projects may need the advanced features of MySQL 5.2, where as [...]]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/uncategorized/configure-two-mysql-server-and-connecting-php/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>12 PHP optimization tips</title>
		<link>http://www.php-trivandrum.org/uncategorized/12-php-optimization-tips/</link>
		<comments>http://www.php-trivandrum.org/uncategorized/12-php-optimization-tips/#comments</comments>
		<pubDate>Wed, 24 Jan 2007 17:47:24 +0000</pubDate>
		<dc:creator>jijutm</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fast code]]></category>
		<category><![CDATA[speedup php pages]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/2007/01/24/12-php-optimization-tips/</guid>
		<description><![CDATA[
If a method can be static, declare it static. Speed improvement is by a factor of 4.
Avoid magic like __get, __set, __autoload
require_once() is expensive
Use full paths in includes and requires, less time spent on resolving the OS paths.
If you need to find out the time when the script started executing, $_SERVER[â€™REQUEST_TIMEâ€™] is preferred to time()
See [...]]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/uncategorized/12-php-optimization-tips/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Hit the WDDX Bug twice</title>
		<link>http://www.php-trivandrum.org/uncategorized/hit-the-wddx-bug-twice/</link>
		<comments>http://www.php-trivandrum.org/uncategorized/hit-the-wddx-bug-twice/#comments</comments>
		<pubDate>Wed, 24 Jan 2007 17:21:30 +0000</pubDate>
		<dc:creator>jijutm</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[TSW]]></category>
		<category><![CDATA[wddx bug]]></category>
		<category><![CDATA[XUL]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/2007/01/24/hit-the-wddx-bug-twice/</guid>
		<description><![CDATA[In Saturn we had a handful of XUL projects where the XUL part was for backend administration. It was in the year 2004, when we developed most of the packages, and we were on php 4.2. There was heavy use of WDDX serialization, since that was found to be easy, we never knew about soap [...]]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/uncategorized/hit-the-wddx-bug-twice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rent A Coder &#8211; Resume Page Ratings to RSS</title>
		<link>http://www.php-trivandrum.org/uncategorized/rent-a-coder-resume-page-ratings-to-rss/</link>
		<comments>http://www.php-trivandrum.org/uncategorized/rent-a-coder-resume-page-ratings-to-rss/#comments</comments>
		<pubDate>Mon, 30 Oct 2006 06:10:13 +0000</pubDate>
		<dc:creator>jijutm</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/2006/10/30/rent-a-coder-resume-page-ratings-to-rss/</guid>
		<description><![CDATA[Myself is more or less active at RAC, and wanted to show off my buyers comments in a page for promoting me.  And wrote this script rac2rss. Download from here.
The main script is rac2rss.php, change the line [php] $coder_id = &#8220;1242159&#8243;; [/php], in rac2rss.php to get your resume. [php] $myFileMgr = new fileMgr(&#8217;./cache&#8217;,7 * [...]]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/uncategorized/rent-a-coder-resume-page-ratings-to-rss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>/* a timer class */</title>
		<link>http://www.php-trivandrum.org/uncategorized/a-timer-class/</link>
		<comments>http://www.php-trivandrum.org/uncategorized/a-timer-class/#comments</comments>
		<pubDate>Fri, 15 Sep 2006 20:39:49 +0000</pubDate>
		<dc:creator>jijutm</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[php snippets]]></category>
		<category><![CDATA[php tips]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/2006/09/16/a-timer-class/</guid>
		<description><![CDATA[The code: Source File in text
I usually use this to check the generation time for any page. There are critical applications which we are developing and will need less than a milli second generation time.
]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/uncategorized/a-timer-class/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Ajax Frameworks &#8211; Ajax Patterns</title>
		<link>http://www.php-trivandrum.org/uncategorized/php-ajax-frameworks-ajax-patterns/</link>
		<comments>http://www.php-trivandrum.org/uncategorized/php-ajax-frameworks-ajax-patterns/#comments</comments>
		<pubDate>Fri, 15 Sep 2006 01:44:35 +0000</pubDate>
		<dc:creator>jijutm</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/2006/09/15/php-ajax-frameworks-ajax-patterns/</guid>
		<description><![CDATA[Some web application frameworks with php and ajax which are open and available is discussed in this page.  I might some time use one of these or try and make one framework of my own.
PHP Ajax Frameworks &#8211; Ajax Patterns
]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/uncategorized/php-ajax-frameworks-ajax-patterns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search Engine Optimizing PHP Scripts</title>
		<link>http://www.php-trivandrum.org/uncategorized/search-engine-optimizing-php-scripts/</link>
		<comments>http://www.php-trivandrum.org/uncategorized/search-engine-optimizing-php-scripts/#comments</comments>
		<pubDate>Wed, 28 Jun 2006 16:16:14 +0000</pubDate>
		<dc:creator>jijutm</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[speedup php pages]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/2006/06/28/search-engine-optimizing-php-scripts/</guid>
		<description><![CDATA[PHP pages have a reputation of being more difficult (or at least different) to SEO than static HTML pages. Here is an overview of the major issues encountered when trying to optimize PHP script for search engines. While this focuses on PHP much of it is still relevant to SEO ing dynamic pages in general.
PHP [...]]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/uncategorized/search-engine-optimizing-php-scripts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

