<?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>lalit.org &#187; lab</title>
	<atom:link href="http://www.lalit.org/category/lab/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lalit.org</link>
	<description>greater than 0, less than 1</description>
	<lastBuildDate>Sun, 29 Jan 2012 16:29:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>MySQL Union is column name and data-type agnostic</title>
		<link>http://www.lalit.org/lab/mysql-union-is-column-name-and-data-type-agnostic/</link>
		<comments>http://www.lalit.org/lab/mysql-union-is-column-name-and-data-type-agnostic/#comments</comments>
		<pubDate>Wed, 21 Dec 2011 05:30:05 +0000</pubDate>
		<dc:creator>Lalit</dc:creator>
				<category><![CDATA[lab]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.lalit.org/?p=653</guid>
		<description><![CDATA[I stumbled upon a rare care while working on one of my projects. The data in one of my variables in PHP was being jumbled up. It took an hour of debugging my PHP code till I realized the the &#8230; <a href="http://www.lalit.org/lab/mysql-union-is-column-name-and-data-type-agnostic/">more <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.lalit.org/lab/mysql-union-is-column-name-and-data-type-agnostic/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Greedy Regular Expressions</title>
		<link>http://www.lalit.org/lab/how-to-disable-greedy-mode-regular-expressions/</link>
		<comments>http://www.lalit.org/lab/how-to-disable-greedy-mode-regular-expressions/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 10:15:38 +0000</pubDate>
		<dc:creator>Lalit</dc:creator>
				<category><![CDATA[lab]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[regex]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.lalit.org/?p=629</guid>
		<description><![CDATA[By default the pattern matching in regular expressions is greedy in nature. The regex engine will try to match the largest string possible for the given expression rather than the first smallest match, which may not be desired behavior every &#8230; <a href="http://www.lalit.org/lab/how-to-disable-greedy-mode-regular-expressions/">more <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.lalit.org/lab/how-to-disable-greedy-mode-regular-expressions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Base62: Convert a number to base 62 for short URLs in PHP</title>
		<link>http://www.lalit.org/lab/base62-php-convert-number-to-base-62-for-short-urls/</link>
		<comments>http://www.lalit.org/lab/base62-php-convert-number-to-base-62-for-short-urls/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 11:39:20 +0000</pubDate>
		<dc:creator>Lalit</dc:creator>
				<category><![CDATA[lab]]></category>
		<category><![CDATA[base62]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[library]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[url]]></category>

		<guid isPermaLink="false">http://www.lalit.org/?p=611</guid>
		<description><![CDATA[Base62 is a PHP class to convert a number to and from any base between 2-62. There is no native function in PHP to convert upto base 62. The native function base_convert converts numbers upto base 36, ie. using 0-9 &#8230; <a href="http://www.lalit.org/lab/base62-php-convert-number-to-base-62-for-short-urls/">more <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.lalit.org/lab/base62-php-convert-number-to-base-62-for-short-urls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XML2Array: Convert XML to Array in PHP</title>
		<link>http://www.lalit.org/lab/convert-xml-to-array-in-php-xml2array/</link>
		<comments>http://www.lalit.org/lab/convert-xml-to-array-in-php-xml2array/#comments</comments>
		<pubDate>Wed, 07 Dec 2011 15:27:04 +0000</pubDate>
		<dc:creator>Lalit</dc:creator>
				<category><![CDATA[lab]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[library]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[xml]]></category>
		<category><![CDATA[xml2array]]></category>

		<guid isPermaLink="false">http://www.lalit.org/?p=592</guid>
		<description><![CDATA[XML2Array is a class to convert XML to an array in PHP. It returns an array which can be converted back to XML using the Array2XML class. It can take a string XML as input or an object of type &#8230; <a href="http://www.lalit.org/lab/convert-xml-to-array-in-php-xml2array/">more <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.lalit.org/lab/convert-xml-to-array-in-php-xml2array/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Array2XML: convert PHP Array to XML (with attributes and CDATA)</title>
		<link>http://www.lalit.org/lab/convert-php-array-to-xml-with-attributes/</link>
		<comments>http://www.lalit.org/lab/convert-php-array-to-xml-with-attributes/#comments</comments>
		<pubDate>Sun, 10 Jul 2011 16:44:28 +0000</pubDate>
		<dc:creator>Lalit</dc:creator>
				<category><![CDATA[lab]]></category>
		<category><![CDATA[array2xml]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[library]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://www.lalit.org/?p=513</guid>
		<description><![CDATA[Array2XML is a class to convert an array in PHP to XML. It allows you to parse a multidimensional array into XML including attributes unlike other scripts available on the internet. It returns the XML in form of DOMDocument object &#8230; <a href="http://www.lalit.org/lab/convert-php-array-to-xml-with-attributes/">more <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.lalit.org/lab/convert-php-array-to-xml-with-attributes/feed/</wfw:commentRss>
		<slash:comments>31</slash:comments>
		</item>
		<item>
		<title>Talk: Facebook Platform Best Practices</title>
		<link>http://www.lalit.org/lab/talk-facebook-platform-best-practices/</link>
		<comments>http://www.lalit.org/lab/talk-facebook-platform-best-practices/#comments</comments>
		<pubDate>Tue, 12 Oct 2010 12:25:24 +0000</pubDate>
		<dc:creator>Lalit</dc:creator>
				<category><![CDATA[lab]]></category>
		<category><![CDATA[bitrhymes]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[presentation]]></category>
		<category><![CDATA[talk]]></category>

		<guid isPermaLink="false">http://www.lalit.org/?p=426</guid>
		<description><![CDATA[My talk at Facebook Developer Garage at Bangalore on 10th Oct 2010. The talk was about how to make your application grow viraly on Facebook and few best practices to retain your users. Slideshow (view on SlideShare) Photos]]></description>
		<wfw:commentRss>http://www.lalit.org/lab/talk-facebook-platform-best-practices/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ternary nuances in PHP</title>
		<link>http://www.lalit.org/lab/ternary-operator-nuances-in-php/</link>
		<comments>http://www.lalit.org/lab/ternary-operator-nuances-in-php/#comments</comments>
		<pubDate>Tue, 18 May 2010 08:20:31 +0000</pubDate>
		<dc:creator>Lalit</dc:creator>
				<category><![CDATA[lab]]></category>

		<guid isPermaLink="false">http://www.lalit.org/?p=408</guid>
		<description><![CDATA[Yesterday while working on one of my projects, I came across a weird scenario: a very simple statement written in PHP was not behaving the way it should. Below is the simplified version of the code I was working with: &#8230; <a href="http://www.lalit.org/lab/ternary-operator-nuances-in-php/">more <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.lalit.org/lab/ternary-operator-nuances-in-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Getting most out of Amazon S3</title>
		<link>http://www.lalit.org/lab/setting-cache-headers-files-in-amazon-s3/</link>
		<comments>http://www.lalit.org/lab/setting-cache-headers-files-in-amazon-s3/#comments</comments>
		<pubDate>Sun, 02 Nov 2008 10:19:35 +0000</pubDate>
		<dc:creator>Lalit</dc:creator>
				<category><![CDATA[lab]]></category>
		<category><![CDATA[amazon]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[s3]]></category>

		<guid isPermaLink="false">http://www.lalit.org/?p=259</guid>
		<description><![CDATA[Amazon S3 is a very useful service. S3, according to the official Amazon Web Services website is Amazon S3 is storage for the Internet. It is designed to make web-scale computing easier for developers. Its a no frills service and &#8230; <a href="http://www.lalit.org/lab/setting-cache-headers-files-in-amazon-s3/">more <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.lalit.org/lab/setting-cache-headers-files-in-amazon-s3/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Powerpoint / Slideshow Karaoke</title>
		<link>http://www.lalit.org/lab/powerpoint-slideshow-karaoke/</link>
		<comments>http://www.lalit.org/lab/powerpoint-slideshow-karaoke/#comments</comments>
		<pubDate>Mon, 29 Sep 2008 13:43:21 +0000</pubDate>
		<dc:creator>Lalit</dc:creator>
				<category><![CDATA[lab]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[karaoke]]></category>
		<category><![CDATA[slideshare]]></category>
		<category><![CDATA[slideshow]]></category>

		<guid isPermaLink="false">http://www.lalit.org/?p=239</guid>
		<description><![CDATA[Last year while I was at SlideShare.net, me and my friends were thinking of some cool ways to use our API. At the same time we were checking out emails from our users about how they are using sideshows in &#8230; <a href="http://www.lalit.org/lab/powerpoint-slideshow-karaoke/">more <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.lalit.org/lab/powerpoint-slideshow-karaoke/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>At the end of the tunnel&#8230; there is Internet</title>
		<link>http://www.lalit.org/lab/at-the-end-of-the-tunnel-there-is-internet/</link>
		<comments>http://www.lalit.org/lab/at-the-end-of-the-tunnel-there-is-internet/#comments</comments>
		<pubDate>Sun, 24 Aug 2008 07:08:10 +0000</pubDate>
		<dc:creator>Lalit</dc:creator>
				<category><![CDATA[lab]]></category>
		<category><![CDATA[college]]></category>
		<category><![CDATA[geeks]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.lalit.org/?p=118</guid>
		<description><![CDATA[Linux is so cool. Using Linux or Linux tools can give you tiny moments of joy, just like anything built by geeks, like iPhone, Skype etc. Today as I woke up, I found that one of the 12 servers we &#8230; <a href="http://www.lalit.org/lab/at-the-end-of-the-tunnel-there-is-internet/">more <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.lalit.org/lab/at-the-end-of-the-tunnel-there-is-internet/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

