<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.2" -->
<rss version="0.92">
<channel>
	<title>Techno WeBlog</title>
	<link>http://blog.codlib.com</link>
	<description>Blogging about tech, the tech, and everything tech, for techno addicts!</description>
	<lastBuildDate>Thu, 04 Nov 2010 04:05:35 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>How Search Works?</title>
		<description><![CDATA[The life span of a Google query is usually less than half a second, yet involves quite a few steps that must be completed before you see the most relevant results. Here is a video demonstrating how the google search works.

Source: http://www.google.com/howgoogleworks/
Related Posts:MVC Song Again &#8211; Video VersionSocial Media Explained in Plain EnglishGoogle URL Shortening toolAOL [...]]]></description>
		<link>http://blog.codlib.com/2010/11/03/how-search-works/</link>
			</item>
	<item>
		<title>Google URL Shortening tool</title>
		<description><![CDATA[Google has launched a web page for the Google URL Shortening tool, named Goo.gl. It has been available for use for almost a year in the Google Toolbar, and it finally has its own website. Previously it was available in Google Toolbar, Feedburner, Google News, Blogger and Picasa. Now they have launched a public website [...]]]></description>
		<link>http://blog.codlib.com/2010/10/05/google-url-shortening-tool/</link>
			</item>
	<item>
		<title>Top 10 Icon Search Engines</title>
		<description><![CDATA[  
An icon is a graphic image, a small picture   or object that represents a file, program, web page, or command. Icons play an important roll in the look &#38; feel of a web page or a desktop application. Ever since internet got it&#8217;s popularity, Icons are playing an important roll to [...]]]></description>
		<link>http://blog.codlib.com/2010/03/19/top-10-icon-search-engines/</link>
			</item>
	<item>
		<title>PHP: Multiplication without multiplication operator.</title>
		<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>
		<link>http://blog.codlib.com/2010/02/02/php-multiplication-without-multiplication-operator/</link>
			</item>
	<item>
		<title>Our ancestors were using Bluetooth and Wireless technology before 5000</title>
		<description><![CDATA[After digging to a depth of 100 meters last year, Russian scientists found traces of copper wire dating back 1000 years, and came to the conclusion that their ancestors already had a telephone network one thousand years ago.
So, not to be outdone, in the weeks that followed, American scientists dug 200 meters and the headlines [...]]]></description>
		<link>http://blog.codlib.com/2010/01/12/our-ancestors-were-using-bluetooth-and-wireless-technology-before-5000/</link>
			</item>
	<item>
		<title>MVC Song Again &#8211; Video Version</title>
		<description><![CDATA[Two Years back i have written a post about the MVC(Model-View-Controller) song in this blog. Yesterday while surfing the web I found a video of James singing it live on WWDC 2003 in youtube. Here is the youtube video:

And those who wish to read the lyrics, check it here&#8230; Song about MVC…..Yeah, yeah, yeah
.
Related Posts:How [...]]]></description>
		<link>http://blog.codlib.com/2010/01/07/mvc-song-again-video-version/</link>
			</item>
	<item>
		<title>What is CDN?</title>
		<description><![CDATA[In the late 90&#8217;s where internet start its booming, The content(Web page/Images/Video/MP3 etc&#8230;.) was delivering from a central server. This affects the loading and response time if large number of users hits the same server at a time. So people strats to thisnk how to deliver the contents more fastly. One solution was deploying the [...]]]></description>
		<link>http://blog.codlib.com/2010/01/06/what-is-cdn/</link>
			</item>
	<item>
		<title>Five HTML5 Presentations To Help You Get Started</title>
		<description><![CDATA[If you want to know more about HTML 5, here are links to some presentations, video recordings and web article that you may find useful.

HTML 5 Reference – A official guide to HTML 5 for developers.
Preview of HTML 5 – An overview of HTML 5 in simple English for non-developers.
New in HTML 5 – This [...]]]></description>
		<link>http://blog.codlib.com/2009/11/05/five-html5-presentations-to-help-you-get-started/</link>
			</item>
	<item>
		<title>PHP session is not working in IFrames in IE browsers</title>
		<description><![CDATA[Recently I have faced an issue with session in IFrames in IE Browsers. The issue is like session is not sharing between pages inside iframe particularly if you are accessing it in a different domain. The script will run smoothly without the iframe, but when i use the iframe in IE and safari it doesn&#8217;t [...]]]></description>
		<link>http://blog.codlib.com/2009/06/18/php-session-is-not-working-in-iframes-in-ie-browsers/</link>
			</item>
	<item>
		<title>HTML5 &#8211; New Feature &#8211; Storage Tables</title>
		<description><![CDATA[HTML5 is introducing a new feature called &#8220;Storage Tables&#8221;. With &#8220;Storage Tables&#8221; can be described as a simple database in the browser. This allows you to store and retrieve a value even when the user has closed his browser and reopened it.
Like session HTML storage is in server and it is more useful because it [...]]]></description>
		<link>http://blog.codlib.com/2009/06/14/html5-new-feature-storage-tables/</link>
			</item>
</channel>
</rss>

