<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>It is Bip Bip Bipool</title>
	<atom:link href="http://bipool.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://bipool.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Sun, 16 Nov 2008 17:59:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='bipool.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>It is Bip Bip Bipool</title>
		<link>http://bipool.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://bipool.wordpress.com/osd.xml" title="It is Bip Bip Bipool" />
	<atom:link rel='hub' href='http://bipool.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Delete all rows from table in javascript</title>
		<link>http://bipool.wordpress.com/2008/11/14/delete-all-rows-from-table-in-javascript/</link>
		<comments>http://bipool.wordpress.com/2008/11/14/delete-all-rows-from-table-in-javascript/#comments</comments>
		<pubDate>Fri, 14 Nov 2008 21:17:35 +0000</pubDate>
		<dc:creator>bipool</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bipool.wordpress.com/?p=17</guid>
		<description><![CDATA[for(var i = document.getElementById(&#8220;tableId&#8221;).rows.length; i &#62; 0;i&#8211;) { document.getElementById(&#8220;tableId&#8221;).deleteRow(i -1); } If you do this it generates an error : for(var i = 0; i &#60;document.getElementById(&#8220;tableId&#8221;).rows.length; i++) { document.getElementById(&#8220;tableId&#8221;).deleteRow(i -1); } The code above wont delete all the rows because &#8220;i&#8221; is not set back to 0 although the table rows&#8217; index will be set [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bipool.wordpress.com&amp;blog=723872&amp;post=17&amp;subd=bipool&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>for(var i = document.getElementById(&#8220;tableId&#8221;).rows.length; i &gt; 0;i&#8211;)<br />
{<br />
document.getElementById(&#8220;tableId&#8221;).deleteRow(i -1);<br />
}</p>
<p>If you do this it generates an error :</p>
<p>for(var i = 0; i &lt;document.getElementById(&#8220;tableId&#8221;).rows.length; i++)<br />
{<br />
document.getElementById(&#8220;tableId&#8221;).deleteRow(i -1);<br />
}</p>
<p>The code above wont delete all the rows because &#8220;i&#8221; is not set back to 0 although the table rows&#8217; index will be set again beginning from zero after any row is deleted from the table.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bipool.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bipool.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bipool.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bipool.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bipool.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bipool.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bipool.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bipool.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bipool.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bipool.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bipool.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bipool.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bipool.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bipool.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bipool.wordpress.com&amp;blog=723872&amp;post=17&amp;subd=bipool&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bipool.wordpress.com/2008/11/14/delete-all-rows-from-table-in-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9f23d482da3a48f61cdb15ff9b785c76?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bipool</media:title>
		</media:content>
	</item>
		<item>
		<title>String Concate In JavaScript</title>
		<link>http://bipool.wordpress.com/2008/05/23/string-concate-in-javascript/</link>
		<comments>http://bipool.wordpress.com/2008/05/23/string-concate-in-javascript/#comments</comments>
		<pubDate>Fri, 23 May 2008 18:30:33 +0000</pubDate>
		<dc:creator>bipool</dc:creator>
				<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://bipool.wordpress.com/?p=16</guid>
		<description><![CDATA[In JavaScript , String concatenation is too much slow. If you have some long string and need to concate in a loop.  It will take long  time to execute the process. If your loop iteration is like 2000 times and your string like 100 characters long, then it might take 7-8 seconds to execute. Thats [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bipool.wordpress.com&amp;blog=723872&amp;post=16&amp;subd=bipool&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In JavaScript , String concatenation is too much slow. If you have some long string and need to concate in a loop.  It will take long  time to execute the process. If your loop iteration is like 2000 times and your string like 100 characters long, then it might take 7-8 seconds to execute. Thats a real fact for optimization. JavaScript actually store data in many places when concate  the string.</p>
<p>If you do following way then process time will reduce significantly. If you store every string in an array and then join the string using array.join(&#8220;&#8221;) function , it will reduce time. I got it reduces 70-75% time of previous one .</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bipool.wordpress.com/16/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bipool.wordpress.com/16/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bipool.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bipool.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bipool.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bipool.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bipool.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bipool.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bipool.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bipool.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bipool.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bipool.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bipool.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bipool.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bipool.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bipool.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bipool.wordpress.com&amp;blog=723872&amp;post=16&amp;subd=bipool&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bipool.wordpress.com/2008/05/23/string-concate-in-javascript/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9f23d482da3a48f61cdb15ff9b785c76?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bipool</media:title>
		</media:content>
	</item>
		<item>
		<title>strpos vs strrpos</title>
		<link>http://bipool.wordpress.com/2008/02/13/strpos-vs-strrpos/</link>
		<comments>http://bipool.wordpress.com/2008/02/13/strpos-vs-strrpos/#comments</comments>
		<pubDate>Wed, 13 Feb 2008 16:24:34 +0000</pubDate>
		<dc:creator>bipool</dc:creator>
				<category><![CDATA[Php]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://bipool.wordpress.com/?p=15</guid>
		<description><![CDATA[In php, today i found that &#8216;strpos&#8217;  return the first occurrence of the looking string in the full string and &#8216;strrpos&#8217; should do the last occurrence . But it is not looking last occurrence string , looking last occurrence character. Why this ? :S<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bipool.wordpress.com&amp;blog=723872&amp;post=15&amp;subd=bipool&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In php, today i found that &#8216;strpos&#8217;  return the first occurrence of the looking string in the full string and &#8216;strrpos&#8217; should do the last occurrence . But it is not looking last occurrence string , looking last occurrence character. Why this ? :S</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bipool.wordpress.com/15/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bipool.wordpress.com/15/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bipool.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bipool.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bipool.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bipool.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bipool.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bipool.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bipool.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bipool.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bipool.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bipool.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bipool.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bipool.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bipool.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bipool.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bipool.wordpress.com&amp;blog=723872&amp;post=15&amp;subd=bipool&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bipool.wordpress.com/2008/02/13/strpos-vs-strrpos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9f23d482da3a48f61cdb15ff9b785c76?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bipool</media:title>
		</media:content>
	</item>
		<item>
		<title>Java script framework comparison</title>
		<link>http://bipool.wordpress.com/2007/12/23/java-script-framework-comparison/</link>
		<comments>http://bipool.wordpress.com/2007/12/23/java-script-framework-comparison/#comments</comments>
		<pubDate>Sun, 23 Dec 2007 07:07:47 +0000</pubDate>
		<dc:creator>bipool</dc:creator>
				<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://bipool.wordpress.com/2007/12/23/java-script-framework-comparison/</guid>
		<description><![CDATA[&#8216;EXT&#8217; is a very rich javascript framework. There is lots of components like Grid, Tree, Tab, dialogbox, Debug consol, toolbar, menu etc.It is based on YUI[1], JQuery[2], Prototype[3] &#38; Script.aculo.us[4] framework. Ext framework is included those frameworks. So, when you will work by this framework,can get access other framework&#8217;s advantages. Ext has also its own [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bipool.wordpress.com&amp;blog=723872&amp;post=14&amp;subd=bipool&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&#8216;EXT&#8217; is a very rich javascript framework. There is lots of components<br />
like Grid, Tree, Tab, dialogbox, Debug consol, toolbar, menu etc.It is<br />
based on YUI[1], JQuery[2], Prototype[3] &amp; Script.aculo.us[4] framework.<br />
Ext framework is included those frameworks. So, when you will work by this<br />
framework,can get access other framework&#8217;s advantages. Ext has also its<br />
own library in ext.js which is added in 2.0 . So here you are getting a<br />
huge library to work.</p>
<p>But the problem is onloading time, it will take loooong time to load a<br />
page.On the other hand, if you use Mootools[5], it is super lightweight.<br />
A lot of components also in here but not like EXT. It is tremendous<br />
fast. The mechanism of Moo is, there has individual package for each<br />
components. There is no too much dependency to another packages. So you<br />
can include those packages in a page what you needed, no need to load<br />
another.</p>
<p>JQuery also a very good framework.It is easiest one and it has very good<br />
documentations.The main difference between JQuery and mootools/prototype<br />
is DOM travers . JQuery make it very simple , just give the id of an<br />
element and get the object. On the otherhand Moo do it by making<br />
classes. JQuery also work fine on AJAX. JQuery is simple and easy to<br />
remember. I think, JQuery and Moo both are good. JQuery is good for<br />
simple small projects and Moo is for complicated projects where object<br />
oriented programming really helps.</p>
<p>Thanks</p>
<p>[1] <a href="http://developer.yahoo.com/yui/" target="_blank">http://developer.yahoo.com/yui/</a><br />
[2] <a href="http://jquery.com/" target="_blank">http://jquery.com/</a><br />
[3] <a href="http://www.prototypejs.org/" target="_blank">http://www.prototypejs.org/</a><br />
[4] <a href="http://script.aculo.us/" target="_blank">http://script.aculo.us/</a><br />
[5] <a href="http://mootools.net/" target="_blank">http://mootools.net/</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bipool.wordpress.com/14/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bipool.wordpress.com/14/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bipool.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bipool.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bipool.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bipool.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bipool.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bipool.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bipool.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bipool.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bipool.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bipool.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bipool.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bipool.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bipool.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bipool.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bipool.wordpress.com&amp;blog=723872&amp;post=14&amp;subd=bipool&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bipool.wordpress.com/2007/12/23/java-script-framework-comparison/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9f23d482da3a48f61cdb15ff9b785c76?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bipool</media:title>
		</media:content>
	</item>
		<item>
		<title>Ajax Limitation</title>
		<link>http://bipool.wordpress.com/2007/10/23/ajax-limitation/</link>
		<comments>http://bipool.wordpress.com/2007/10/23/ajax-limitation/#comments</comments>
		<pubDate>Tue, 23 Oct 2007 22:23:03 +0000</pubDate>
		<dc:creator>bipool</dc:creator>
				<category><![CDATA[ajax]]></category>

		<guid isPermaLink="false">http://bipool.wordpress.com/2007/10/23/ajax-limitation/</guid>
		<description><![CDATA[Today I faced a problem, when i was using AJAX for saving data from a page. But I was getting always script error. But I could not find out , what was the problem . After sometimes, I got the problem. The problem was ajax can not submit more than 2KB data. Then I break [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bipool.wordpress.com&amp;blog=723872&amp;post=13&amp;subd=bipool&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today I faced a problem, when i was using AJAX for saving data from a page. But I was getting always script error. But I could not find out , what was the problem . After sometimes, I got the problem. The problem was ajax can not submit more than 2KB data.</p>
<p>Then I break out the data and send those data by using multiple ajaxing. And then that was working fine <img src='http://s2.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bipool.wordpress.com/13/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bipool.wordpress.com/13/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bipool.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bipool.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bipool.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bipool.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bipool.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bipool.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bipool.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bipool.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bipool.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bipool.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bipool.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bipool.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bipool.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bipool.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bipool.wordpress.com&amp;blog=723872&amp;post=13&amp;subd=bipool&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bipool.wordpress.com/2007/10/23/ajax-limitation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9f23d482da3a48f61cdb15ff9b785c76?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bipool</media:title>
		</media:content>
	</item>
		<item>
		<title>PHP : usort function</title>
		<link>http://bipool.wordpress.com/2007/10/22/php-usort-function/</link>
		<comments>http://bipool.wordpress.com/2007/10/22/php-usort-function/#comments</comments>
		<pubDate>Mon, 22 Oct 2007 16:57:58 +0000</pubDate>
		<dc:creator>bipool</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bipool.wordpress.com/2007/10/22/php-usort-function/</guid>
		<description><![CDATA[Before somedays , I was working on sorting issue. I was using usort function. In this function, you can define sort criteria. Here you can send 2 variable as parameter , then write ascending or descending or any criteria . I was using this and I had multi-dimensional array . Thats why, I was writing [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bipool.wordpress.com&amp;blog=723872&amp;post=12&amp;subd=bipool&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Before somedays , I was working on sorting issue. I was using usort function. In this function, you can define sort criteria. Here you can send 2 variable as parameter , then write ascending or descending or any criteria .</p>
<p>I was using this and I had multi-dimensional array . Thats why, I was writing  in the body part of the usort like following<br />
$a[0] &gt;  $b[0]</p>
<p>And this way, It is working fine.</p>
<p>But When I using a variable instead of hard code &#8217;0&#8242; like following</p>
<p>$index = 0;</p>
<p>$a[$index] &gt;  $b[$index]</p>
<p>It is not working. It is not accepting variable here.</p>
<p>Then I was trying to use &#8216;create_function()&#8217;  where i was using variable and thats work really fine</p>
<p>Thanks</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bipool.wordpress.com/12/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bipool.wordpress.com/12/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bipool.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bipool.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bipool.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bipool.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bipool.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bipool.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bipool.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bipool.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bipool.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bipool.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bipool.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bipool.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bipool.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bipool.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bipool.wordpress.com&amp;blog=723872&amp;post=12&amp;subd=bipool&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bipool.wordpress.com/2007/10/22/php-usort-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9f23d482da3a48f61cdb15ff9b785c76?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bipool</media:title>
		</media:content>
	</item>
		<item>
		<title>arguments.callee :: javascript</title>
		<link>http://bipool.wordpress.com/2007/08/08/argumentscallee-javascript/</link>
		<comments>http://bipool.wordpress.com/2007/08/08/argumentscallee-javascript/#comments</comments>
		<pubDate>Wed, 08 Aug 2007 21:00:32 +0000</pubDate>
		<dc:creator>bipool</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://bipool.wordpress.com/2007/08/08/argumentscallee-javascript/</guid>
		<description><![CDATA[If you want to use anonymouse function in javascript then you can easily use arguments.callee As example : function makeFactorial(){ return function fact(x) { if(x &#62; 1) return x * argument.callee(x-1) } } makeFactorial()(4) ; output is 24. also you can see the arguments by using func_name.arguments<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bipool.wordpress.com&amp;blog=723872&amp;post=11&amp;subd=bipool&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you want to use anonymouse function in javascript then you can easily use arguments.callee</p>
<p>As example :</p>
<p>function makeFactorial(){</p>
<p>return function fact(x)</p>
<p>{</p>
<p>if(x &gt; 1)</p>
<p>return x * argument.callee(x-1)</p>
<p>}</p>
<p>}</p>
<p>makeFactorial()(4) ;</p>
<p>output is 24.</p>
<p>also you can see the arguments by using func_name.arguments</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bipool.wordpress.com/11/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bipool.wordpress.com/11/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bipool.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bipool.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bipool.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bipool.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bipool.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bipool.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bipool.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bipool.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bipool.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bipool.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bipool.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bipool.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bipool.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bipool.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bipool.wordpress.com&amp;blog=723872&amp;post=11&amp;subd=bipool&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bipool.wordpress.com/2007/08/08/argumentscallee-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9f23d482da3a48f61cdb15ff9b785c76?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bipool</media:title>
		</media:content>
	</item>
		<item>
		<title>javascript :: function</title>
		<link>http://bipool.wordpress.com/2007/08/08/javascript-function/</link>
		<comments>http://bipool.wordpress.com/2007/08/08/javascript-function/#comments</comments>
		<pubDate>Wed, 08 Aug 2007 20:47:05 +0000</pubDate>
		<dc:creator>bipool</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bipool.wordpress.com/2007/08/08/javascript-function/</guid>
		<description><![CDATA[There are several ways you can write a function in javaScript. 1. first of all a simple and popular way &#8220;Function Statement&#8221;. function  func_name ([param],[param],&#8230;&#8230;[param] ){ // statement } 2. Second way is &#8220;function Operator&#8221; var func_name  = function ([param],[param],&#8230;&#8230;[param] ){ //statement } 3.  Another way is &#8220;function constructor&#8221; var  func_name = new function ([param],[param],&#8230;&#8230;[param] [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bipool.wordpress.com&amp;blog=723872&amp;post=10&amp;subd=bipool&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There are several ways you can write a function in javaScript.</p>
<p>1. first of all a simple and popular way &#8220;Function Statement&#8221;.</p>
<p>function  func_name ([param],[param],&#8230;&#8230;[param] ){</p>
<p>// statement</p>
<p>}</p>
<p>2. Second way is &#8220;function Operator&#8221;</p>
<p>var func_name  = function ([param],[param],&#8230;&#8230;[param] ){</p>
<p>//statement</p>
<p>}</p>
<p>3.  Another way is &#8220;function constructor&#8221;</p>
<p>var  func_name = new function ([param],[param],&#8230;&#8230;[param] ){</p>
<p>//statement</p>
<p>}</p>
<p>In function operator , you can assign the function to another variable but in function statement You can not do this.</p>
<p>In function operator, you can use array of function . as Example&#8230;</p>
<p>var fn = array[  function (x )  {return x;} , function (x )  {return x*x ;},function (x )  {return x*X*x;}</p>
<p>]</p>
<p>for  fn[0](5) , output is 5</p>
<p>for  fn[1](5) , output is 25</p>
<p>for  fn[2](5) , output is 125</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bipool.wordpress.com/10/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bipool.wordpress.com/10/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bipool.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bipool.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bipool.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bipool.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bipool.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bipool.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bipool.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bipool.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bipool.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bipool.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bipool.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bipool.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bipool.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bipool.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bipool.wordpress.com&amp;blog=723872&amp;post=10&amp;subd=bipool&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bipool.wordpress.com/2007/08/08/javascript-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9f23d482da3a48f61cdb15ff9b785c76?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bipool</media:title>
		</media:content>
	</item>
		<item>
		<title>Google Reader, Thanks!!!!!</title>
		<link>http://bipool.wordpress.com/2007/07/22/google-reader-thanks/</link>
		<comments>http://bipool.wordpress.com/2007/07/22/google-reader-thanks/#comments</comments>
		<pubDate>Sun, 22 Jul 2007 09:32:11 +0000</pubDate>
		<dc:creator>bipool</dc:creator>
				<category><![CDATA[ETc]]></category>
		<category><![CDATA[Myself]]></category>

		<guid isPermaLink="false">http://bipool.wordpress.com/2007/07/22/google-reader-thanks/</guid>
		<description><![CDATA[Now I am using Google Reader to read blog and various news. If that site RSS is enabled then Google reader will feed that news from that site. You have to give just RSS address then Google reader will pull news. I generally read from many sites. Now i don&#8217;t need to go to that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bipool.wordpress.com&amp;blog=723872&amp;post=9&amp;subd=bipool&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Now I am using Google Reader to read blog and various news. If that site RSS is enabled then Google reader will feed that news from that site. You have to give just RSS address then Google reader will pull news. I generally read from many sites. Now i don&#8217;t need to go to that site everyday. In one place i got the news. It is easy to read and flexible . I can maintain or sort this news easily. Also I can store this news in offline.  <img src='http://s2.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Thanks GooGle Reader !!!!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bipool.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bipool.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bipool.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bipool.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bipool.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bipool.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bipool.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bipool.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bipool.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bipool.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bipool.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bipool.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bipool.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bipool.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bipool.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bipool.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bipool.wordpress.com&amp;blog=723872&amp;post=9&amp;subd=bipool&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bipool.wordpress.com/2007/07/22/google-reader-thanks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9f23d482da3a48f61cdb15ff9b785c76?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bipool</media:title>
		</media:content>
	</item>
		<item>
		<title>Multiple ajax call at a time</title>
		<link>http://bipool.wordpress.com/2007/05/01/multiple-ajax-call-at-a-time/</link>
		<comments>http://bipool.wordpress.com/2007/05/01/multiple-ajax-call-at-a-time/#comments</comments>
		<pubDate>Tue, 01 May 2007 21:14:24 +0000</pubDate>
		<dc:creator>bipool</dc:creator>
				<category><![CDATA[ajax]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://bipool.wordpress.com/2007/05/01/multiple-ajax-call-at-a-time/</guid>
		<description><![CDATA[Before some days, I was facing a problem for multiple request by ajax at a time.Generally , when i request for multiple pages by ajax , if second request is sent before first response is come then first call is no found. For that, I have made a queuing system for multiple call. When a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bipool.wordpress.com&amp;blog=723872&amp;post=5&amp;subd=bipool&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Before some days, I was facing a problem for multiple request by ajax at a time.Generally , when i request for multiple pages by ajax , if second request is sent before first response is come then first call is no found. For that, I have made a queuing system for multiple call. When a request is made i am storing this information in an array . After getting response, I am just removing  those info  from the array. Then  checking any more info is left in array, If yes then I call again. </p>
<p><code><br />
   arrInfo.push(info);</p>
<p>funciton : AjaxCall()<br />
{<br />
 ....<br />
....<br />
 // take info from array's 1st element<br />
 // and call the ajax<br />
}</p>
<p>function : getResponse()<br />
{<br />
  ...<br />
 ...<br />
arrInfo.splice(0,1); // removing this info<br />
 if(arrInfo.length) AjaxCall();</p>
<p>}<br />
</code></p>
<p>Actually, it will call one by one. But no risk to lost any response.:) </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bipool.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bipool.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bipool.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bipool.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bipool.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bipool.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bipool.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bipool.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bipool.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bipool.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bipool.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bipool.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bipool.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bipool.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bipool.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bipool.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bipool.wordpress.com&amp;blog=723872&amp;post=5&amp;subd=bipool&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bipool.wordpress.com/2007/05/01/multiple-ajax-call-at-a-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9f23d482da3a48f61cdb15ff9b785c76?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bipool</media:title>
		</media:content>
	</item>
	</channel>
</rss>
