<?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; library</title>
	<atom:link href="http://www.lalit.org/tag/library/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>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>Cookie Jar: Yummy JSON Cookies (using Prototype)</title>
		<link>http://www.lalit.org/lab/jsoncookies/</link>
		<comments>http://www.lalit.org/lab/jsoncookies/#comments</comments>
		<pubDate>Thu, 12 Apr 2007 07:09:16 +0000</pubDate>
		<dc:creator>Lalit</dc:creator>
				<category><![CDATA[lab]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[cookies]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[json]]></category>
		<category><![CDATA[library]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[prototype]]></category>

		<guid isPermaLink="false">http://www.lalit.org/?p=20</guid>
		<description><![CDATA[JavaScript code to store data as JSON strings in cookies. It uses prototype.js to store and retrieve JSON data from cookies. Now we can store and retrieve JavaScript Objects, Arrays, Boolean, String, Number values using cookies, just like storing Java &#8230; <a href="http://www.lalit.org/lab/jsoncookies/">more <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.lalit.org/lab/jsoncookies/feed/</wfw:commentRss>
		<slash:comments>36</slash:comments>
		</item>
		<item>
		<title>JavaScript/CSS Font Detector</title>
		<link>http://www.lalit.org/lab/javascript-css-font-detect/</link>
		<comments>http://www.lalit.org/lab/javascript-css-font-detect/#comments</comments>
		<pubDate>Sat, 10 Mar 2007 05:49:58 +0000</pubDate>
		<dc:creator>Lalit</dc:creator>
				<category><![CDATA[lab]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[fonts]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[library]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://www.orissabiz.com/?p=10</guid>
		<description><![CDATA[JavaScript code to detect available availability of a particular font in a browser using JavaScript and CSS. I wrote a JavaScript code which can be used to guess if a particular font is present in a machine. This may be &#8230; <a href="http://www.lalit.org/lab/javascript-css-font-detect/">more <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.lalit.org/lab/javascript-css-font-detect/feed/</wfw:commentRss>
		<slash:comments>70</slash:comments>
		</item>
	</channel>
</rss>

