<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.1.3" -->
<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/"
	>

<channel>
	<title>Techno WeBlog</title>
	<link>http://blog.codlib.com</link>
	<description>Blogging about tech, the tech, and everything tech, for techno addicts!</description>
	<pubDate>Tue, 02 Feb 2010 09:32:07 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1.3</generator>
	<language>en</language>
			<item>
		<title>PHP: Multiplication without multiplication operator.</title>
		<link>http://blog.codlib.com/2010/02/02/php-multiplication-without-multiplication-operator/</link>
		<comments>http://blog.codlib.com/2010/02/02/php-multiplication-without-multiplication-operator/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 09:32:07 +0000</pubDate>
		<dc:creator>Jans</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://blog.codlib.com/2010/02/02/php-multiplication-without-multiplication-operator/</guid>
		<description><![CDATA[Recently one of my friend asked me to write a function in PHP for multiplying two numbers without * or / operators. Also we should not use any loops. I got the following solution.
function mul($a,$b)
{
if($b==1){return $a;}
return $a+mul($a,$b-1);
}
echo mul(5,6);
One more solution which i found is as follows. But is is using the division(/) operator.
function mul($a,$b)
{
return $a/(1/$b);
}
echo [...]]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://blog.codlib.com/2010/02/02/php-multiplication-without-multiplication-operator/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Our ancestors were using Bluetooth and Wireless technology before 5000</title>
		<link>http://blog.codlib.com/2010/01/12/our-ancestors-were-using-bluetooth-and-wireless-technology-before-5000/</link>
		<comments>http://blog.codlib.com/2010/01/12/our-ancestors-were-using-bluetooth-and-wireless-technology-before-5000/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 12:10:08 +0000</pubDate>
		<dc:creator>Jans</dc:creator>
		
		<category><![CDATA[Geeky-Fun]]></category>

		<guid isPermaLink="false">http://blog.codlib.com/2010/01/12/our-ancestors-were-using-bluetooth-and-wireless-technology-before-5000/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://blog.codlib.com/2010/01/12/our-ancestors-were-using-bluetooth-and-wireless-technology-before-5000/feed/</wfw:commentRss>
		</item>
		<item>
		<title>MVC Song Again - Video Version</title>
		<link>http://blog.codlib.com/2010/01/07/mvc-song-again-video-version/</link>
		<comments>http://blog.codlib.com/2010/01/07/mvc-song-again-video-version/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 04:26:25 +0000</pubDate>
		<dc:creator>Jans</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://blog.codlib.com/2010/01/07/mvc-song-again-video-version/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://blog.codlib.com/2010/01/07/mvc-song-again-video-version/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What is CDN?</title>
		<link>http://blog.codlib.com/2010/01/06/what-is-cdn/</link>
		<comments>http://blog.codlib.com/2010/01/06/what-is-cdn/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 05:10:07 +0000</pubDate>
		<dc:creator>Jans</dc:creator>
		
		<category><![CDATA[Web]]></category>

		<category><![CDATA[What is?]]></category>

		<guid isPermaLink="false">http://blog.codlib.com/2010/01/06/what-is-cdn/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://blog.codlib.com/2010/01/06/what-is-cdn/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Five HTML5 Presentations To Help You Get Started</title>
		<link>http://blog.codlib.com/2009/11/05/five-html5-presentations-to-help-you-get-started/</link>
		<comments>http://blog.codlib.com/2009/11/05/five-html5-presentations-to-help-you-get-started/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 03:31:28 +0000</pubDate>
		<dc:creator>Jans</dc:creator>
		
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://blog.codlib.com/2009/11/05/five-html5-presentations-to-help-you-get-started/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://blog.codlib.com/2009/11/05/five-html5-presentations-to-help-you-get-started/feed/</wfw:commentRss>
		</item>
		<item>
		<title>PHP session is not working in IFrames in IE browsers</title>
		<link>http://blog.codlib.com/2009/06/18/php-session-is-not-working-in-iframes-in-ie-browsers/</link>
		<comments>http://blog.codlib.com/2009/06/18/php-session-is-not-working-in-iframes-in-ie-browsers/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 06:22:05 +0000</pubDate>
		<dc:creator>Jans</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://blog.codlib.com/2009/06/18/php-session-is-not-working-in-iframes-in-ie-browsers/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://blog.codlib.com/2009/06/18/php-session-is-not-working-in-iframes-in-ie-browsers/feed/</wfw:commentRss>
		</item>
		<item>
		<title>HTML5 - New Feature - Storage Tables</title>
		<link>http://blog.codlib.com/2009/06/14/html5-new-feature-storage-tables/</link>
		<comments>http://blog.codlib.com/2009/06/14/html5-new-feature-storage-tables/#comments</comments>
		<pubDate>Mon, 15 Jun 2009 03:51:52 +0000</pubDate>
		<dc:creator>Jans</dc:creator>
		
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://blog.codlib.com/2009/06/14/html5-new-feature-storage-tables/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://blog.codlib.com/2009/06/14/html5-new-feature-storage-tables/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Web 3.0 Concepts explained</title>
		<link>http://blog.codlib.com/2009/06/05/web-30-concepts-explained/</link>
		<comments>http://blog.codlib.com/2009/06/05/web-30-concepts-explained/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 13:02:23 +0000</pubDate>
		<dc:creator>Jans</dc:creator>
		
		<category><![CDATA[Web]]></category>

		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://blog.codlib.com/2009/06/05/web-30-concepts-explained/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://blog.codlib.com/2009/06/05/web-30-concepts-explained/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Overriding Inline css style definitions.</title>
		<link>http://blog.codlib.com/2009/06/04/overriding-inline-css-style-definitions/</link>
		<comments>http://blog.codlib.com/2009/06/04/overriding-inline-css-style-definitions/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 04:41:56 +0000</pubDate>
		<dc:creator>Jans</dc:creator>
		
		<category><![CDATA[Css]]></category>

		<guid isPermaLink="false">http://blog.codlib.com/2009/06/04/overriding-inline-css-style-definitions/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://blog.codlib.com/2009/06/04/overriding-inline-css-style-definitions/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Google Internet Campaign - The Internet Bus</title>
		<link>http://blog.codlib.com/2009/02/03/google-internet-campaign-the-internet-bus/</link>
		<comments>http://blog.codlib.com/2009/02/03/google-internet-campaign-the-internet-bus/#comments</comments>
		<pubDate>Wed, 04 Feb 2009 04:54:32 +0000</pubDate>
		<dc:creator>Jans</dc:creator>
		
		<category><![CDATA[Announcements]]></category>

		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://blog.codlib.com/2009/02/03/google-internet-campaign-the-internet-bus/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://blog.codlib.com/2009/02/03/google-internet-campaign-the-internet-bus/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
