<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2" -->
<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>xLab</title>
	<link>http://xlab.co.in</link>
	<description>lets start sharing......</description>
	<pubDate>Tue, 15 Apr 2008 17:31:34 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2</generator>
	<language>en</language>
			<item>
		<title>Get paid for your post</title>
		<link>http://xlab.co.in/index.php/2008/03/30/get-paid-for-your-blog-monetize-your-blog/</link>
		<comments>http://xlab.co.in/index.php/2008/03/30/get-paid-for-your-blog-monetize-your-blog/#comments</comments>
		<pubDate>Sun, 30 Mar 2008 15:11:33 +0000</pubDate>
		<dc:creator>Deepak</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Tips &amp; Tricks]]></category>
<category>General</category><category>Tips &amp;amp; Tricks</category>
		<guid isPermaLink="false">http://xlab.co.in/index.php/2008/03/30/get-paid-for-your-blog-monetize-your-blog/</guid>
		<description><![CDATA[Blogging is the latest buzz these days, every next child too loves to blog. According to a survey countless new blogs are unrivaled. But what if you get paid for your writing each post? 
Pay per Post is such cash in hand offer for all bloggers. It pays you for each of the post. Being [...]]]></description>
			<content:encoded><![CDATA[<p>Blogging is the latest buzz these days, every next child too loves to blog. According to a survey countless new blogs are unrivaled. But what if you get paid for your writing each post?<o:p> </o:p></p>
<p class="MsoNormal"><strong><a href="http://payperpost.com" title="Visit Pay Per Post" target="_blank">Pay per Post</a></strong> is such cash in hand offer for all bloggers. It pays you for each of the post. Being a blogger I personally I have been through many sites and visited many blogs daily but services of pay per post in true sense impressed in comparison to other <a href="http://payperpost.com/advertisers/marketplace.html">blog ads</a> paying services.</p>
<p class="MsoNormal">The interface of process of <a href="http://payperpost.com" title="Visit Pay Per Post" target="_blank">PPP</a> is quite user friendly. I signed up recently and posted my first qualified review from PPP, it was a kind of new experience for me with pay per post. But the review was approved and transactions were made in a short span of time. In build criteria of separating open opportunities and qualified opportunities for blogger makes it easy to search for topic of interest and choose a topic.</p>
<p class="MsoNormal">Other think which attracted me in Pay per post is ‘PPP tools’, these tools makes it easily accessible straight from one’s blog and also to increase traffic and generated revenue by referral programs.</p>
<p class="MsoNormal">By me its 4/5 for Pay per post, so what are you waiting for. Start writing and let your monetize your blog.</p>
<p class="MsoNormal"><o:p></o:p><strong>Happy Blogging!</strong></p>
<p><img src="http://tinyurl.com/2bry62" /><br />
<a href="http://www.payperpost.com/?utm_source=opportunity&amp;utm_medium=disclosure%2Bbadge"><img src="http://tinyurl.com/2er3eu" border="0" /></a></p>
<p class="akst_link"><a href="http://xlab.co.in/?p=83&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_83" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://xlab.co.in/index.php/2008/03/30/get-paid-for-your-blog-monetize-your-blog/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Javascript hit/visit counter</title>
		<link>http://xlab.co.in/index.php/2008/02/27/javascript-hit-counter/</link>
		<comments>http://xlab.co.in/index.php/2008/02/27/javascript-hit-counter/#comments</comments>
		<pubDate>Wed, 27 Feb 2008 17:04:07 +0000</pubDate>
		<dc:creator>Deepak</dc:creator>
		
		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[Code Snippet/Scripts]]></category>
<category>Code Snippet/Scripts</category><category>Javascript</category>
		<guid isPermaLink="false">http://xlab.co.in/index.php/2008/02/27/javascript-hit-counter/</guid>
		<description><![CDATA[This code adds a simple hit counter on the page, which keeps track of number of hits on that page.
&#60;!&#8211; Head tag code starts &#8211;&#62;
&#60;SCRIPT LANGUAGE=&#8221;JavaScript&#8221;&#62;
&#60;!&#8211;
function nameDefined(ckie,nme)
{
var splitValues
var i
for (i=0;i&#60;ckie.length;++i)
{
splitValues=ckie[i].split(&#8221;=&#8221;)
if (splitValues[0]==nme) return true
}
return false
}
function delBlanks(strng)
{
var result=&#8221;"
var i
var chrn
for (i=0;i&#60;strng.length;++i) {
chrn=strng.charAt(i)
if (chrn!=&#8221; &#8220;) result += chrn
}
return result
}
function getCookieValue(ckie,nme)
{
var splitValues
var i
for(i=0;i&#60;ckie.length;++i) {
splitValues=ckie[i].split(&#8221;=&#8221;)
if(splitValues[0]==nme) return splitValues[1]
}
return &#8220;&#8221;
}
function insertCounter() {
readCookie()
displayCounter()
}
function [...]]]></description>
			<content:encoded><![CDATA[<p>This code adds a simple hit counter on the page, which keeps track of number of hits on that page.</p>
<p>&lt;!&#8211; Head tag code starts &#8211;&gt;</p>
<p>&lt;SCRIPT LANGUAGE=&#8221;JavaScript&#8221;&gt;</p>
<p>&lt;!&#8211;<br />
function nameDefined(ckie,nme)<br />
{<br />
var splitValues<br />
var i<br />
for (i=0;i&lt;ckie.length;++i)<br />
{<br />
splitValues=ckie[i].split(&#8221;=&#8221;)<br />
if (splitValues[0]==nme) return true<br />
}<br />
return false<br />
}</p>
<p>function delBlanks(strng)<br />
{<br />
var result=&#8221;"<br />
var i<br />
var chrn<br />
for (i=0;i&lt;strng.length;++i) {<br />
chrn=strng.charAt(i)<br />
if (chrn!=&#8221; &#8220;) result += chrn<br />
}<br />
return result<br />
}<br />
function getCookieValue(ckie,nme)<br />
{<br />
var splitValues<br />
var i<br />
for(i=0;i&lt;ckie.length;++i) {<br />
splitValues=ckie[i].split(&#8221;=&#8221;)<br />
if(splitValues[0]==nme) return splitValues[1]<br />
}<br />
return &#8220;&#8221;<br />
}<br />
function insertCounter() {<br />
readCookie()<br />
displayCounter()<br />
}<br />
function displayCounter() {<br />
document.write(&#8217;&lt;H3 ALIGN=&#8221;CENTER&#8221;&gt;&#8217;)<br />
document.write(&#8221;You&#8217;ve visited this page &#8220;)<br />
if(counter==1) document.write(&#8221;the first time.&#8221;)<br />
else document.write(counter+&#8221; times.&#8221;)<br />
document.writeln(&#8217;&lt;/H3&gt;&#8217;)<br />
}<br />
function readCookie() {<br />
var cookie=document.cookie<br />
counter=0<br />
var chkdCookie=delBlanks(cookie)  //are on the client computer<br />
var nvpair=chkdCookie.split(&#8221;;&#8221;)<br />
if(nameDefined(nvpair,&#8221;pageCount&#8221;))<br />
counter=parseInt(getCookieValue(nvpair,&#8221;pageCount&#8221;))<br />
++counter<br />
var futdate = new Date()<br />
var expdate = futdate.getTime()<br />
expdate += 3600000 * 24 *30  //expires in 1 hour<br />
futdate.setTime(expdate)</p>
<p>var newCookie=&#8221;pageCount=&#8221;+counter<br />
newCookie += &#8220;; expires=&#8221; + futdate.toGMTString()<br />
window.document.cookie=newCookie<br />
}<br />
// &#8211;&gt;<br />
&lt;/SCRIPT&gt;</p>
<p>&lt;!&#8211; Head tag code ends &#8211;&gt;</p>
<p>&lt;!&#8211; Body tag code starts &#8211;&gt;</p>
<p>&lt;SCRIPT LANGUAGE=&#8221;JavaScript&#8221;&gt;</p>
<p>&lt;!&#8211;<br />
insertCounter()<br />
// &#8211;&gt;<br />
&lt;/SCRIPT&gt;</p>
<p>&lt;!&#8211; Body  tag code ends &#8211;&gt;</p>
<p class="akst_link"><a href="http://xlab.co.in/?p=82&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_82" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://xlab.co.in/index.php/2008/02/27/javascript-hit-counter/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Select - delete multiple records from sql</title>
		<link>http://xlab.co.in/index.php/2008/01/09/select-or-delete-duplicate-records-from-sql-server/</link>
		<comments>http://xlab.co.in/index.php/2008/01/09/select-or-delete-duplicate-records-from-sql-server/#comments</comments>
		<pubDate>Wed, 09 Jan 2008 14:54:21 +0000</pubDate>
		<dc:creator>Deepak</dc:creator>
		
		<category><![CDATA[Code Snippet/Scripts]]></category>

		<category><![CDATA[Tips &amp; Tricks]]></category>
<category>Code Snippet/Scripts</category><category>Tips &amp;amp; Tricks</category>
		<guid isPermaLink="false">http://xlab.co.in/index.php/2008/01/09/select-or-delete-duplicate-records-from-sql-server/</guid>
		<description><![CDATA[Here a nice way to find all the duplicate records within a table, without going through all the bulky code by just using a simple sql query.
 SELECT email,
COUNT(email) AS NumOccurrences
FROM users
GROUP BY email
HAVING ( COUNT(email) &#62; 1 )
We can use groupby on more than one column:
SELECT * FROM

GROUP BY ,,
HAVING COUNT(*) > 1
Share This
]]></description>
			<content:encoded><![CDATA[<p>Here a nice way to find all the duplicate records within a table, without going through all the bulky code by just using a simple sql query.<br />
<strong> SELECT email,<br />
COUNT(email) AS NumOccurrences<br />
FROM users<br />
GROUP BY email<br />
HAVING ( COUNT(email) &gt; 1 )</strong></p>
<p>We can use groupby on more than one column:<br />
SELECT * FROM<br />
<tableName>
GROUP BY <field1>,<field2>,<field3><br />
HAVING COUNT(*) > 1</p>
<p class="akst_link"><a href="http://xlab.co.in/?p=81&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_81" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://xlab.co.in/index.php/2008/01/09/select-or-delete-duplicate-records-from-sql-server/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Visual Studio Keyboard Shortcuts</title>
		<link>http://xlab.co.in/index.php/2008/01/06/visual-studio-keyboard-shortcuts/</link>
		<comments>http://xlab.co.in/index.php/2008/01/06/visual-studio-keyboard-shortcuts/#comments</comments>
		<pubDate>Sun, 06 Jan 2008 10:00:49 +0000</pubDate>
		<dc:creator>Deepak</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Developer's Resources]]></category>

		<category><![CDATA[Tips &amp; Tricks]]></category>
<category>Developers Resources</category><category>General</category><category>Tips &amp;amp; Tricks</category>
		<guid isPermaLink="false">http://xlab.co.in/index.php/2008/01/06/visual-studio-keyboard-shortcuts/</guid>
		<description><![CDATA[Its been long when last time i posted any article, well mean while in this time i have gone through some new products of Microsoft and also the .net framework 3.5 &#38; sharepoint. Those are marvelous and just a good hand for all the developers. Today i will just like to share some of keyboard [...]]]></description>
			<content:encoded><![CDATA[<p>Its been long when last time i posted any article, well mean while in this time i have gone through some new products of Microsoft and also the <strong>.net framework 3.5</strong> &amp; <strong>sharepoint</strong>. Those are marvelous and just a good hand for all the developers. Today i will just like to share some of keyboard shortcuts of Visual Studio to start with:</p>
<ul>
<li><strong> Go to declaration</strong>: F12</li>
<li><strong>Debug: step over</strong>: F10</li>
<li><strong>Debug: run to cursor</strong>: Ctrl + F10</li>
<li><strong>Debug: step into</strong>: F11</li>
<li><strong>Debug: step out</strong>: Shift + F11</li>
<li><strong>Toggle a breakpoint</strong>: F9</li>
<li><strong>Go to next item in task list or search results</strong>: F8</li>
<li><strong>Go to previous item in task list or search results</strong>: Shift + F8</li>
<li><strong>Switch to code view</strong>: F7</li>
<li><strong>Switch to designer view</strong>: Shift + F7</li>
<li><strong>Run with debugging</strong>: F5</li>
<li><strong>Stop debugging</strong>: Shift + F5</li>
<li><strong>Run without debugging</strong>: Ctrl + F5</li>
<li><strong>Move to previous edit point</strong>: Ctrl + -</li>
<li><strong>Switch to the Task List</strong>: Ctrl + Alt + K</li>
<li><strong>Switch to the Immediate window</strong>: Ctrl + Alt + I</li>
<li><strong>Switch to the Output window</strong>: Ctrl + Alt + O</li>
<li><strong>Find</strong>: Ctrl + F</li>
<li><strong>Find in all files</strong>: Ctrl + Shift + F</li>
<li><strong>Replace</strong>: Ctrl + H</li>
</ul>
<p class="akst_link"><a href="http://xlab.co.in/?p=80&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_80" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://xlab.co.in/index.php/2008/01/06/visual-studio-keyboard-shortcuts/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Why to pay when you can host for free?</title>
		<link>http://xlab.co.in/index.php/2007/10/12/free-image-hosting-hotlinks-unlimited-bandwidth/</link>
		<comments>http://xlab.co.in/index.php/2007/10/12/free-image-hosting-hotlinks-unlimited-bandwidth/#comments</comments>
		<pubDate>Fri, 12 Oct 2007 15:35:12 +0000</pubDate>
		<dc:creator>Deepak</dc:creator>
		
		<category><![CDATA[General]]></category>

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

		<category><![CDATA[Developer's Resources]]></category>
<category>Developers Resources</category><category>General</category><category>Tools</category>
		<guid isPermaLink="false">http://xlab.co.in/index.php/2007/10/12/why-to-pay-when-you-can-host-for-free/</guid>
		<description><![CDATA[Whether you’re looking for a free way to cut down on bandwidth costs or need an easy-to-use and powerful Image hosting service to manage your pictures on social networking sites or your site, blog, forum etc than this is for you.
iSharePic provide user&#8217;s functionality to upload their images and share them on other sites.
No popup&#8217;s, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://isharePic.com"><img src="http://xlab.co.in/wp-content/uploads/2007/10/isharepic.PNG" alt="iSharePic" class="img_bdr" align="left" /></a>Whether you’re looking for a free way to cut down on bandwidth costs or need an easy-to-use and powerful Image hosting service to manage your pictures on social networking sites or your site, blog, forum etc than this is for you.</p>
<p><a href="http://isharepic.com" title="Free Image Hosting" target="_blank"><strong>iSharePic</strong></a> provide user&#8217;s functionality to upload their images and share them on other sites.</p>
<p>No popup&#8217;s, no undesired images, no spyware just a simple and impresive free hosting service with<strong> unlimited uploads/downloads, direct linking and Best thing your files remain uploaded foreever</strong>.</p>
<p>User are allowed to create their own personal albums. Unlike other hosting sites iSharePic provides a better interface to user which helps them to manage their images better, personally i liked the sidebar menu of iSharePic. <a href="http://xlab.co.in/wp-content/uploads/2007/10/isharepic-sidebar.PNG" title="iSharePic Sidebar"><img src="http://xlab.co.in/wp-content/uploads/2007/10/isharepic-sidebar.thumbnail.PNG" alt="iSharePic Sidebar" class="img_bdr" align="left" /></a>ya i agree it not so conventional as like a for a file hosting service but the features provided in sidebar are really cool. RSS, Album management, Tags, Uploaded items Management these all really made me think to write this post for iSharePic.</p>
<p>One more thing i liked about it and which again mark it odd in compare to all other hosting services is its high resolution pictures and the categorization of images as it really made it easy to browse all the shared images uploaded by other users. Formatted url&#8217;s to post your image on Blogs/Forums etc are also available.</p>
<p>Well on my side 3.5/5 to iSharePic, What you say?</p>
<p class="akst_link"><a href="http://xlab.co.in/?p=77&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_77" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://xlab.co.in/index.php/2007/10/12/free-image-hosting-hotlinks-unlimited-bandwidth/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Do Alexa&#8217;s redirect URL Really Increase Alexa Ranking!</title>
		<link>http://xlab.co.in/index.php/2007/10/09/alexa-redirect-url-increase-your-search-rank/</link>
		<comments>http://xlab.co.in/index.php/2007/10/09/alexa-redirect-url-increase-your-search-rank/#comments</comments>
		<pubDate>Tue, 09 Oct 2007 17:28:35 +0000</pubDate>
		<dc:creator>Deepak</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Search Engines]]></category>

		<category><![CDATA[Tips &amp; Tricks]]></category>
<category>General</category><category>Search Engines</category><category>Tips &amp;amp; Tricks</category>
		<guid isPermaLink="false">http://xlab.co.in/index.php/2007/10/09/do-alexas-redirect-url-really-increase-alexa-ranking/</guid>
		<description><![CDATA[Just read an article on Johnny&#8217;s blog about Alexa Redirect Url, where it was mentioned how to increase alexa ranking using the Alexa Redirect Url, but do alexa redirect really helps? How could anyone believe that a redirect through another site would benefit them more than a direct link to their blogs? I agree that [...]]]></description>
			<content:encoded><![CDATA[<p>Just read an article on <a href="http://makemoneyonblog.blogspot.com" target="_blank">Johnny&#8217;s blog</a> about <a href="http://makemoneyonblog.blogspot.com/2007/05/alexas-redirect-url.html" target="_blank">Alexa Redirect Url</a>, where it was mentioned how to increase alexa ranking using the Alexa Redirect Url, but do alexa redirect really helps? How could anyone believe that a redirect through another site would benefit them more than a direct link to their blogs? I agree that alexa is a great source for web stats, traffic etc but still how can one rely completely on alexa ranking? I have visited many sites which have a quite high alexa ranking but no google page rank and even visa versa.</p>
<p>All the tricks are explained in good manner in post but still according to me alexa&#8217;s ranking show the actual traffic of particular website and only a small percentage of internet users use Alexa Toolbar. so how a Traffic ranking algorithm can be worked on such a small number of data and provide the final ranking.</p>
<p>Even as a general internet user this may help with getting more money on adsense side Whatever sites, but it&#8217;s a pain to visitor and doesn&#8217;t really help anyone know accurate reader stats and providing fake ranks which is just generated using fake urls can increase one&#8217;s adsense money but not the visitors.</p>
<p class="akst_link"><a href="http://xlab.co.in/?p=76&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_76" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://xlab.co.in/index.php/2007/10/09/alexa-redirect-url-increase-your-search-rank/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Google faces hacker Threats</title>
		<link>http://xlab.co.in/index.php/2007/10/07/google-faces-hacker-threats/</link>
		<comments>http://xlab.co.in/index.php/2007/10/07/google-faces-hacker-threats/#comments</comments>
		<pubDate>Sun, 07 Oct 2007 06:04:17 +0000</pubDate>
		<dc:creator>Deepak</dc:creator>
		
		<category><![CDATA[General]]></category>
<category>General</category>
		<guid isPermaLink="false">http://xlab.co.in/index.php/2007/10/07/google-faces-hacker-threats/</guid>
		<description><![CDATA[You may need be careful when you next log into your gmail accout. Indian Computer Emergency Repsponse Team (CERTAIN), working under the department of Information Technology (DIT) has noticed a &#8220;persistent email theft issue&#8221; affecting the popular gmail service.
The advisory has been put on CERTIN&#8217;s website. An active Indian white hat (a hacker who operates [...]]]></description>
			<content:encoded><![CDATA[<blockquote>You may need be careful when you next log into your gmail accout. Indian Computer Emergency Repsponse Team (CERTAIN), working under the department of Information Technology (DIT) has noticed a &#8220;persistent email theft issue&#8221; affecting the popular gmail service.</p></blockquote>
<p>The advisory has been put on <a href="http://cert-in.org.in/advisory/ciad-2007-50.htm" target="_blank">CERTIN&#8217;s website</a>. An active Indian white hat (a hacker who operates in and &#8216;ethical or legal&#8217; domain ) said he is not aware of google system turning vulnerable. CERTIN claimed that cross scripting (XSS) vulnerabilities has been reported in google XSS, it said, occured when a web application gathered malicious data from a user.</p>
<p>CERTIN aims to become the &#8220;most trusted referral agency of the Indian Community&#8221; for responding to computer security incidents as and when they occur. It also intends to assist members of the Indian community in implementing &#8220;proactive measures to reduce the risks of computer security incidents&#8221;</p>
<p>(extracts of article from TOI)</p>
<p class="akst_link"><a href="http://xlab.co.in/?p=75&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_75" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://xlab.co.in/index.php/2007/10/07/google-faces-hacker-threats/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Wordpress Broken Links Plugin</title>
		<link>http://xlab.co.in/index.php/2007/10/04/wordpress-broken-links-plugin/</link>
		<comments>http://xlab.co.in/index.php/2007/10/04/wordpress-broken-links-plugin/#comments</comments>
		<pubDate>Thu, 04 Oct 2007 11:17:13 +0000</pubDate>
		<dc:creator>Deepak</dc:creator>
		
		<category><![CDATA[Wordpress]]></category>

		<category><![CDATA[Developer's Resources]]></category>

		<category><![CDATA[open source]]></category>
<category>Developers Resources</category><category>open source</category><category>Wordpress</category>
		<guid isPermaLink="false">http://xlab.co.in/index.php/2007/10/04/wordpress-broken-links-plugin/</guid>
		<description><![CDATA[I was working on new blog where post contains many outgoing links to other server, it was getting hard to manage links as after a span of time some of them might change into broken links, which may results as inconvenience for the blog readers.
So i just played with an wordpress plugin. It simple scans [...]]]></description>
			<content:encoded><![CDATA[<p>I was working on new blog where post contains many outgoing links to other server, it was getting hard to manage links as after a span of time some of them might change into broken links, which may results as inconvenience for the blog readers.</p>
<p>So i just played with an wordpress plugin. It simple scans every post and check for the broken links, if any if link is found broken it is displayed as strikethrough and a text as &#8216;<em><strong>Broken Link</strong></em>&#8216; is laced next to link. &#8216;<strong>BrokenLink</strong>&#8216; plugin will help you to manage your sites link and keep search engines too happy with your site as search engines hate broken links.</p>
<p>Below is an example of Broken Link:</p>
<p>(Link when Plugin is not activated)</p>
<p><a href="xlab.co.in/nofile.zip">This link is not alive so will be marked as broken by Plugin</a></p>
<p>(Link&#8217;s screen shot when plugin is activated)</p>
<p><img src="http://xlab.co.in/wp-content/uploads/2007/10/brokenlink_plugin.GIF" alt="Wordpress Broken Links Plugin" /></p>
<p>Its good for sites in managing links and helpful in SEO but personally i feel its not to be activated on blogs which have numberless links in there post ( <img src='http://xlab.co.in/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> its rare case) as it may slow down the speed of that page a bit.</p>
<p><strong><a href="http://xlab.co.in/resources/demo/search-dead-links.rar">Download Plugin</a></strong></p>
<p class="akst_link"><a href="http://xlab.co.in/?p=72&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_72" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://xlab.co.in/index.php/2007/10/04/wordpress-broken-links-plugin/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Top Wordpress Themes</title>
		<link>http://xlab.co.in/index.php/2007/10/04/free-wordpress-themes/</link>
		<comments>http://xlab.co.in/index.php/2007/10/04/free-wordpress-themes/#comments</comments>
		<pubDate>Thu, 04 Oct 2007 05:43:17 +0000</pubDate>
		<dc:creator>Deepak</dc:creator>
		
		<category><![CDATA[Wordpress]]></category>

		<category><![CDATA[open source]]></category>
<category>open source</category><category>Wordpress</category>
		<guid isPermaLink="false">http://xlab.co.in/index.php/2007/10/04/top-wordpress-themes/</guid>
		<description><![CDATA[Wordpress the Blog publishing system coded in PHP and backed by MySQL has has widely increased among the developers and webmaster in past five years. Earlier there was just one category &#8216;Webmasters&#8217; but now scenario has changed and who has to think again that who he/she is - Webmaster or Blogger. Popularity of Blogs is [...]]]></description>
			<content:encoded><![CDATA[<p>Wordpress the Blog publishing system coded in PHP and backed by MySQL has has widely increased among the developers and webmaster in past five years. Earlier there was just one category &#8216;Webmasters&#8217; but now scenario has changed and who has to think again that who he/she is - Webmaster or Blogger. Popularity of Blogs is growing in such a way that more and more blogs are being written every day.One among the many reason for this popularity is easy maintenance in compare to traditional sites, as themes, templates plugins and many more tool make it quite easy to manage a blog. By my past experience on site and blogs i’ve built up a kind of repertoire, which I’ll share with you below. This is by no means a definitive list as taste is always a subjective affair, but I guess you’ll just have to trust me on that one.</p>
<p>Well here are few wordpress themes for your blog&#8230; I will keep updating it along with more plugins and tool, Feel Free to update me if you have any good theme/plugin , so keep blogging and Enjoy.</p>
<p>Its a Random Collection list and doesn&#8217;t reflect any any sort of ranking etc.</p>
<p><strong>1. </strong><strong>Skittlish</strong></p>
<p><img src="http://xlab.co.in/wp-content/uploads/2007/10/skittlish.jpg" alt="Skittlish" /></p>
<p>Theme by <a href="http://journal.barleyhut.com/the-skittlish-theme-for-wordpress/">A.M. Griffin</a> | <a href="http://themes.barleyhut.com/">Live Demo</a> | <a href="http://journal.barleyhut.com/?dl=12">Download</a></p>
<p> <a href="http://xlab.co.in/index.php/2007/10/04/free-wordpress-themes/#more-51" class="more-link">(more&#8230;)</a></p>
<p class="akst_link"><a href="http://xlab.co.in/?p=51&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_51" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://xlab.co.in/index.php/2007/10/04/free-wordpress-themes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Online FLV Converter</title>
		<link>http://xlab.co.in/index.php/2007/10/03/convert-to-flv/</link>
		<comments>http://xlab.co.in/index.php/2007/10/03/convert-to-flv/#comments</comments>
		<pubDate>Wed, 03 Oct 2007 18:46:33 +0000</pubDate>
		<dc:creator>Deepak</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Tools]]></category>
<category>General</category><category>Tools</category><category>Web Reousrces</category>
		<guid isPermaLink="false">http://xlab.co.in/index.php/2007/10/03/online-flv-converter/</guid>
		<description><![CDATA[I uploaded some tutorials on video site few days back and now i was in need of those media files which i uploaded, finally i decided to grab flv files from that site, but still there was an issue converting them to other format from flv. I browsed using google and found some media file [...]]]></description>
			<content:encoded><![CDATA[<p>I uploaded some tutorials on video site few days back and now i was in need of those media files which i uploaded, finally i decided to grab flv files from that site, but still there was an issue converting them to other format from flv. I browsed using google and found some media file converters but no one of them was quite impressive.</p>
<p>Finally i searched &#8216;Online Flv Converter&#8217; its quite impressive, converts file to Mp3, Mp4, avi, 3gp and more formats for your laptop, ipod or mobile and overall an Open source, what more a developer can ask for <img src='http://xlab.co.in/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p style="text-align: center"><img src="http://xlab.co.in/wp-content/uploads/2007/10/flvconverter.PNG" class="img_bdr" alt="Online Flv Converter" /></p>
<p>FLV to MPEG4 Conveter engine is now  				<a href="http://sourceforge.net/projects/vixynet/" target="_top"> 					OpenSource. 				</a> 				You can download the source code via subversion:  				<a href="http://sourceforge.net/svn/?group_id=183657" target="_new"> 					http://sourceforge.net/svn/?group_id=183657</a></p>
<p><a href="http://vixy.net/">Visit Online Flv Converter</a></p>
<p class="akst_link"><a href="http://xlab.co.in/?p=69&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_69" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://xlab.co.in/index.php/2007/10/03/convert-to-flv/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
