<?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>Srijith Unplugged</title>
	<atom:link href="http://blog.sriunplugged.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sriunplugged.com</link>
	<description>The place where I share my experiments on my computer</description>
	<lastBuildDate>Sun, 25 Jul 2010 10:35:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Generate Date from a range in Mysql and pad the results where no date is present</title>
		<link>http://blog.sriunplugged.com/mysql/generate-date-range/</link>
		<comments>http://blog.sriunplugged.com/mysql/generate-date-range/#comments</comments>
		<pubDate>Sun, 25 Jul 2010 10:35:03 +0000</pubDate>
		<dc:creator>Srijith R</dc:creator>
				<category><![CDATA[mysql]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[generate]]></category>
		<category><![CDATA[Generate Date]]></category>
		<category><![CDATA[padding]]></category>
		<category><![CDATA[query]]></category>
		<category><![CDATA[select]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[union]]></category>

		<guid isPermaLink="false">http://blog.sriunplugged.com/?p=299</guid>
		<description><![CDATA[If you want to generate dates, MYSQL doesn&#8217;t have a range function, so I wrote a work around for the same. So how  it works is I have reused a code to generate numbers from my previous post. So I added date function to that query and reduce the generated numbers from the date. Hence [...]]]></description>
		<wfw:commentRss>http://blog.sriunplugged.com/mysql/generate-date-range/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Generate 1 to 1000 in mysql</title>
		<link>http://blog.sriunplugged.com/mysql/1-1000-mysql/</link>
		<comments>http://blog.sriunplugged.com/mysql/1-1000-mysql/#comments</comments>
		<pubDate>Sun, 25 Jul 2010 09:24:11 +0000</pubDate>
		<dc:creator>Srijith R</dc:creator>
				<category><![CDATA[mysql]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[dates]]></category>
		<category><![CDATA[generate]]></category>
		<category><![CDATA[numbers]]></category>
		<category><![CDATA[rows]]></category>
		<category><![CDATA[select]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[union]]></category>

		<guid isPermaLink="false">http://blog.sriunplugged.com/?p=285</guid>
		<description><![CDATA[Sometimes its necessary to have thousand rows to join or generate new values, we need to get the thousand rows first. For this I used union of numbers 0-9.  I have joined four of these to get to four digit values. So here is the code: SELECT @row := @row + 1 as row FROM [...]]]></description>
		<wfw:commentRss>http://blog.sriunplugged.com/mysql/1-1000-mysql/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Web page Performance for a Blog &#8211; Part 1</title>
		<link>http://blog.sriunplugged.com/performance/web-page-performance-1/</link>
		<comments>http://blog.sriunplugged.com/performance/web-page-performance-1/#comments</comments>
		<pubDate>Sat, 17 Jul 2010 11:43:00 +0000</pubDate>
		<dc:creator>Srijith R</dc:creator>
				<category><![CDATA[Performance]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blog performance]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[etag]]></category>
		<category><![CDATA[Expiry Header]]></category>
		<category><![CDATA[favicon]]></category>
		<category><![CDATA[FILE]]></category>
		<category><![CDATA[gzip]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[minify]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[static contents]]></category>

		<guid isPermaLink="false">http://blog.sriunplugged.com/?p=305</guid>
		<description><![CDATA[I have always under the notion that page performance for big websites or websites that have a sole server and various resources like CDN and load balancers. So I wanted to know if this is true. I set out to try web page performance my blog. I just wanted to see how much I can [...]]]></description>
		<wfw:commentRss>http://blog.sriunplugged.com/performance/web-page-performance-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sort according to the nth Column in Shell Script</title>
		<link>http://blog.sriunplugged.com/shell-scripting/sort-nth-column-shell-script/</link>
		<comments>http://blog.sriunplugged.com/shell-scripting/sort-nth-column-shell-script/#comments</comments>
		<pubDate>Mon, 21 Jun 2010 14:37:41 +0000</pubDate>
		<dc:creator>Srijith R</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[shell scripting]]></category>
		<category><![CDATA[column]]></category>
		<category><![CDATA[csv]]></category>
		<category><![CDATA[number sort]]></category>
		<category><![CDATA[shell script]]></category>
		<category><![CDATA[sort]]></category>
		<category><![CDATA[sorting]]></category>

		<guid isPermaLink="false">http://blog.sriunplugged.com/?p=281</guid>
		<description><![CDATA[You have a file that has multiple columns separated by a specific delimiter and you need to sort it according to a specific column which need not be the 1st column. If its not the 1st column then ordinary sort wont work. So we need to use the parameters of sort to specify the exact [...]]]></description>
		<wfw:commentRss>http://blog.sriunplugged.com/shell-scripting/sort-nth-column-shell-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check the port in which the Mysql is running on</title>
		<link>http://blog.sriunplugged.com/mysql/check-port-mysql-running/</link>
		<comments>http://blog.sriunplugged.com/mysql/check-port-mysql-running/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 12:21:43 +0000</pubDate>
		<dc:creator>Srijith R</dc:creator>
				<category><![CDATA[mysql]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[global variables]]></category>
		<category><![CDATA[like]]></category>
		<category><![CDATA[PORT]]></category>
		<category><![CDATA[running]]></category>
		<category><![CDATA[show]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[VARIABLES]]></category>

		<guid isPermaLink="false">http://blog.sriunplugged.com/?p=279</guid>
		<description><![CDATA[Mysql can be configured to run other ports other than the default port (of 3306). So what will you do when you need to find the port on which a mysql server runs on. If you don&#8217;t have access to the server files and can access the server only using the mysql client, the only [...]]]></description>
		<wfw:commentRss>http://blog.sriunplugged.com/mysql/check-port-mysql-running/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Group by Date when Stored in Mysql DataBase as Date Time</title>
		<link>http://blog.sriunplugged.com/mysql/group-date-stored-mysql-database-date-time/</link>
		<comments>http://blog.sriunplugged.com/mysql/group-date-stored-mysql-database-date-time/#comments</comments>
		<pubDate>Mon, 10 May 2010 16:44:52 +0000</pubDate>
		<dc:creator>Srijith R</dc:creator>
				<category><![CDATA[mysql]]></category>
		<category><![CDATA[as mysql]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[date function]]></category>
		<category><![CDATA[date time]]></category>
		<category><![CDATA[group by]]></category>
		<category><![CDATA[order by]]></category>

		<guid isPermaLink="false">http://blog.sriunplugged.com/?p=187</guid>
		<description><![CDATA[I have a table called date_count with 2 columns one is a value and another is a date time, say called date_time in mysql. Date Time in mysql is stored as dd-mm-yy hh:mm:ss. The issue comes when I need to get the number of rows per day. As its stored as date time format in [...]]]></description>
		<wfw:commentRss>http://blog.sriunplugged.com/mysql/group-date-stored-mysql-database-date-time/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Pass cookie from script to firefox</title>
		<link>http://blog.sriunplugged.com/firefox/pass-cookie-script-firefox/</link>
		<comments>http://blog.sriunplugged.com/firefox/pass-cookie-script-firefox/#comments</comments>
		<pubDate>Sat, 01 May 2010 09:30:39 +0000</pubDate>
		<dc:creator>Srijith R</dc:creator>
				<category><![CDATA[firefox]]></category>
		<category><![CDATA[cookie]]></category>
		<category><![CDATA[logged in]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[print]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[Set Cookie]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://blog.sriunplugged.com/?p=181</guid>
		<description><![CDATA[I had a requirement to get firefox to open a logged in page in firefox. I used it for automated opening of some logged in pages. But there is another use for it. It can be used for opening mail or any other site that needs to be logged in. The only issue, this method [...]]]></description>
		<wfw:commentRss>http://blog.sriunplugged.com/firefox/pass-cookie-script-firefox/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Print Array in PHP</title>
		<link>http://blog.sriunplugged.com/php/print-array-php/</link>
		<comments>http://blog.sriunplugged.com/php/print-array-php/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 07:21:21 +0000</pubDate>
		<dc:creator>Srijith R</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[print]]></category>
		<category><![CDATA[print_r]]></category>
		<category><![CDATA[var_dump]]></category>
		<category><![CDATA[var_export]]></category>

		<guid isPermaLink="false">http://blog.sriunplugged.com/?p=178</guid>
		<description><![CDATA[There are various methods and commands used in PHP to print an array of elements. They are different in the way they print the array elements. I will cover three main ones I usually use. Lets assume an array as follows to explain the various types of printing. $array = array( 'string' =&#62; 'abcd', 'bool' [...]]]></description>
		<wfw:commentRss>http://blog.sriunplugged.com/php/print-array-php/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Check if a table exists in MySQL from PHP</title>
		<link>http://blog.sriunplugged.com/php/check-table-exists-mysql-php/</link>
		<comments>http://blog.sriunplugged.com/php/check-table-exists-mysql-php/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 10:55:55 +0000</pubDate>
		<dc:creator>Srijith R</dc:creator>
				<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[DBNAME]]></category>
		<category><![CDATA[query]]></category>
		<category><![CDATA[table]]></category>

		<guid isPermaLink="false">http://blog.sriunplugged.com/?p=170</guid>
		<description><![CDATA[Sometimes its necessary to execute a query or execute some code if a table exists or not. So a bit of searching got me to the conclusion that mysql doesn&#8217;t have a direct query or method for it from php. So there are two methods to do it. Use the mysql command show tables . [...]]]></description>
		<wfw:commentRss>http://blog.sriunplugged.com/php/check-table-exists-mysql-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Display row number in Mysql Select Query</title>
		<link>http://blog.sriunplugged.com/mysql/display-row-number-mysql-select-query/</link>
		<comments>http://blog.sriunplugged.com/mysql/display-row-number-mysql-select-query/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 08:35:29 +0000</pubDate>
		<dc:creator>Srijith R</dc:creator>
				<category><![CDATA[mysql]]></category>
		<category><![CDATA[query]]></category>
		<category><![CDATA[row number]]></category>
		<category><![CDATA[select]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[variable]]></category>

		<guid isPermaLink="false">http://blog.sriunplugged.com/?p=168</guid>
		<description><![CDATA[How many times did want to have the row number or the position of the row in the selected query? I had many cases where I needed this feature. I needed the feature for printing the rank of a person where each row is the mark of the person. So lets see how to implement [...]]]></description>
		<wfw:commentRss>http://blog.sriunplugged.com/mysql/display-row-number-mysql-select-query/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
