<?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</title>
	<atom:link href="http://www.lalit.org/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>Dish TV Password Menance</title>
		<link>http://www.lalit.org/blog/dishtv-password-menance/</link>
		<comments>http://www.lalit.org/blog/dishtv-password-menance/#comments</comments>
		<pubDate>Sat, 26 Mar 2011 08:26:54 +0000</pubDate>
		<dc:creator>Lalit</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[dishtv]]></category>
		<category><![CDATA[fail]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[reviews]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://www.lalit.org/?p=470</guid>
		<description><![CDATA[I got a new Dish TV HD connection. Watching Live Cricket in HD is a very amazing experience. I tried to create a new online account to manage subscription etc. Immediately after signup (choosing a new password at the time &#8230; <a href="http://www.lalit.org/blog/dishtv-password-menance/">more <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.lalit.org/blog/dishtv-password-menance/feed/</wfw:commentRss>
		<slash:comments>1</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>Vacation Relaxation?</title>
		<link>http://www.lalit.org/inspiration/vacation-relaxation/</link>
		<comments>http://www.lalit.org/inspiration/vacation-relaxation/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 17:28:20 +0000</pubDate>
		<dc:creator>Lalit</dc:creator>
				<category><![CDATA[inspiration]]></category>
		<category><![CDATA[comics]]></category>
		<category><![CDATA[humor]]></category>

		<guid isPermaLink="false">http://www.lalit.org/?p=388</guid>
		<description><![CDATA[exactly how I feel]]></description>
		<wfw:commentRss>http://www.lalit.org/inspiration/vacation-relaxation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Looking for Geek Ninjas</title>
		<link>http://www.lalit.org/blog/looking-for-geek-ninjas/</link>
		<comments>http://www.lalit.org/blog/looking-for-geek-ninjas/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 16:13:03 +0000</pubDate>
		<dc:creator>Lalit</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[bitrhymes]]></category>
		<category><![CDATA[jobs]]></category>
		<category><![CDATA[startups]]></category>

		<guid isPermaLink="false">http://www.lalit.org/?p=376</guid>
		<description><![CDATA[There is always so much to do in a startup that people won&#8217;t be too picky about your paper qualifications, if you can solve problems for them without screwing up. &#8211; Paul Graham My startup BitRhymes is looking for such &#8230; <a href="http://www.lalit.org/blog/looking-for-geek-ninjas/">more <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.lalit.org/blog/looking-for-geek-ninjas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

