<?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>Bin-Blog &#187; blog</title>
	<atom:link href="http://www.bin-co.com/blog/tag/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bin-co.com/blog</link>
	<description>Learn about the latest in Web Development - as soon as I do.</description>
	<lastBuildDate>Tue, 13 Oct 2009 18:55:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Avoid Duplicate Content &#8211; Use Canonical URL in WordPress</title>
		<link>http://www.bin-co.com/blog/2009/02/avoid-duplicate-content-use-canonical-url-in-wordpress-fix-plugin/</link>
		<comments>http://www.bin-co.com/blog/2009/02/avoid-duplicate-content-use-canonical-url-in-wordpress-fix-plugin/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 18:28:53 +0000</pubDate>
		<dc:creator>Binny V A</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[canonical]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[URL]]></category>

		<guid isPermaLink="false">http://www.bin-co.com/blog/?p=233</guid>
		<description><![CDATA[The new talk of the SEO world is '<a href="http://googlewebmastercentral.blogspot.com/2009/02/specify-your-canonical.html">Canonical URL</a>'. What is canonical URL? This is the definition given in Google's Webmaster Central Blog...]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.bin-co.com/blog/wp-content/uploads/2008/10/wordpress_logo.png" alt="WordPress Logo" title="WordPress Logo" width="183" height="145" class="alignnone size-full wp-image-136 intro" align="right" /></p>
<p class="intro">The new talk of the SEO world is &#8216;<a href="http://googlewebmastercentral.blogspot.com/2009/02/specify-your-canonical.html">Canonical URL</a>&#8216;. What is canonical URL? This is the definition given in Google&#8217;s Webmaster Central Blog&#8230;</p>
<blockquote><p>a format that allows you to <strong class="highlight">publicly specify your preferred version of a URL</strong>. If your site has identical or vastly similar content that&#8217;s accessible through multiple URLs, this format provides you with more control over the URL returned in search results. It also helps to make sure that properties such as link popularity are consolidated to your preferred version.</p>
<p>Emphasis mine</p>
</blockquote>
<p>It is very easy to specify the canonical URL of a page &#8211; all you have to do is <strong class="highlight">add this line in the head section</strong>&#8230;</p>
<pre><code class="html">&lt;link rel="canonical" href="http://binnyva.com/" /&gt;</code></pre>
<p>The purpose of this tag is to <a href="http://www.dailyseoblog.com/2009/02/duplicate-content-canonical-tag-to-your-rescue/">prevent the problem of duplicate content</a>.</p>
<p>The best thing about this tag is that all three major search engines(<a href="http://googlewebmastercentral.blogspot.com/2009/02/specify-your-canonical.html">Google</a>, <a href="http://ysearchblog.com/2009/02/12/fighting-duplication-adding-more-arrows-to-your-quiver/">Yahoo</a> and <a href="http://blogs.msdn.com/webmaster/archive/2009/02/12/partnering-to-help-solve-duplicate-content-issues.aspx">MS Live</a>) support this initiative.</p>
<h2>WordPress</h2>
<p>If you are on wordpress, this tag can be integrated into your theme easily. <a href="http://yoast.com/wordpress/canonical/">There is a plugin</a> to do the job for you &#8211; but you don&#8217;t need a plugin to do something as simple as this.</p>
<h3>header.php</h3>
<p>Go to the <strong class="highlight">theme folder</strong> in wordpress(wp-content/themes/&lt;theme_name&gt;) and <strong class="highlight">open the file <code>header.php</code></strong> in your favorite editor. Now <strong class="highlight">find the line</strong>&#8230;</p>
<pre><code class="html">&lt;/head&gt;</code></pre>
<p>and add the following code <strong class="highlight">before</strong> that line&#8230;</p>
<pre><code class="html">&lt;?php if ( is_singular() ) { ?&gt;
&lt;link rel="canonical" href="&lt;?php the_permalink(); ?&gt;" /&gt;
&lt;?php } ?&gt;</code></pre>
<p>Now, it should look something like this&#8230;</p>
<pre><code class="html">&lt;?php if ( is_singular() ) { ?&gt;
&lt;link rel="canonical" href="&lt;?php the_permalink(); ?&gt;" /&gt;
&lt;?php } ?&gt;
&lt;/head&gt;</code></pre>
<p>That&#8217;s it &#8211; you are done! <strong class="highlight">Save the file and upload it</strong> to your server.</p>
<p>This fix will add the canonical URL tag to all the posts and pages of your blog. If you want to see a blog that have implemented this fix, take a look at the source of this page.</p>
<h2>Related Links</h2>
<ul>
<li><a href="http://www.seobuzzbox.com/what-is-a-canonical-url/">Canonical URL</a></li>
<li><a href="http://mrjavo.com/what-is-a-canonical-url/">What Is A Canonical URL?</a></li>
<li><a href="http://ifacethoughts.net/2009/02/14/canonical-urls-to-avoid-duplicate-content/">Canonical URLs To Avoid Duplicate Content</a></li>
<li><a href="http://www.mattcutts.com/blog/canonical-link-tag/">Learn about the Canonical Link Element in 5 minutes</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.bin-co.com/blog/2009/02/avoid-duplicate-content-use-canonical-url-in-wordpress-fix-plugin/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>Human Generated Spam</title>
		<link>http://www.bin-co.com/blog/2007/12/human-generated-spam/</link>
		<comments>http://www.bin-co.com/blog/2007/12/human-generated-spam/#comments</comments>
		<pubDate>Mon, 10 Dec 2007 18:02:52 +0000</pubDate>
		<dc:creator>Binny V A</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[comment]]></category>
		<category><![CDATA[lindesk]]></category>
		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://www.bin-co.com/blog/2007/12/human-generated-spam/</guid>
		<description><![CDATA[I am looking at some spam I received at LinDesk. These are not your average spam &#8211; they are real good. I even let one through before I understood they were spam. spartan300 &#124; tcssey@aol.com &#124; dolcemp3.com &#124; IP: 64.12.116.138 Hhmmm,, this sounds good. but I not yet into upgrading my Fedora7 to 8. iâ€™m [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://www.bin-co.com/blog/wp-content/uploads/2007/12/spam.jpg' class="intro" align="right" alt='Spam' /></p>
<p class="intro">I am looking at some spam I received at <a href="http://lindesk.com/">LinDesk</a>. These are not your average spam &#8211; they are real good. I even let one through before I understood they were spam.</p>
<ul>
<li>spartan300 | tcssey@aol.com | dolcemp3.com | IP: 64.12.116.138<br />
Hhmmm,, this sounds good. but I not yet into upgrading my Fedora7 to 8. iâ€™m not that afraid of changes, but I might incur another error with my linux. I still have lot of work to do, maybe iâ€™ll try this later next week. Thanks though for this blog. <img src='http://www.bin-co.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> <br />
In article <a href="http://lindesk.com/2007/11/sound-issue-in-fedora-8/">Sound Issue in Fedora 8</a></li>
<li>2cool2sexy | tcssey@aol.com | dolcemp3.com | IP: 64.12.116.138<br />
Have you checked on its system requirements? You should try checking of their site. http://banshee-project.org/<br />
I believe there are helpdesk there that can support you.<br />
In article Banshee &#8211; <a href="http://lindesk.com/2007/11/banshee-music-management-and-playback-for-gnome/">Music Management and Playback for GNOME</a></li>
<li>audio-fanatic | tcssey@aol.com | dolcemp3.com | IP: 64.12.116.138<br />
another nice review here Lin. You really adore using Linux-based software? I think this mp3 software is the one fit for my notebook.<br />
In article <a href="http://lindesk.com/2007/10/audacious-media-player/">Audacious Media Player</a></li>
</ul>
<p>First of all, do you agree with me? Are these spam?</p>
<p>The reason why I think they are spam are the following&#8230;</p>
<ul>
<li>Same URL and Email &#8211; but different names.</li>
<li>Zero content comments &#8211; they add no value to the post.</li>
<li>My previous experience has taught me that comments with @aol.com email addresses are often spam.</li>
<li>This guy has only commented on MP3 related posts &#8211; his URL leads to an MP3 site.</li>
</ul>
<p>The reason why they may not be spam are just as valid.</p>
<ul>
<li>These comments are written by humans &#8211; not bots.</li>
<li>The writer of the second comment(about banshee) has obviously read the post.</li>
<li>The commenter has at least a passing knowledge of Linux and Linux softwares.</li>
</ul>
<p>So, have you received any spam like this &#8211; comments that you are unsure about? These three comments are still in my moderation queue. I need advice on how to deal with them.</p>
<p>I could let them through &#8211; if no one looks closely, they will think these are actual comments. That will give the articles an appearance of popularity. It is a good thing for me. But I have a zero tolerance policy towards spam. If the comment is a spam, I will not allow it on my site. Its a matter of principle.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bin-co.com/blog/2007/12/human-generated-spam/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>LinDesk &#8211; Linux on the Desktop</title>
		<link>http://www.bin-co.com/blog/2007/09/lindesk-linux-on-the-desktop/</link>
		<comments>http://www.bin-co.com/blog/2007/09/lindesk-linux-on-the-desktop/#comments</comments>
		<pubDate>Sat, 01 Sep 2007 17:19:09 +0000</pubDate>
		<dc:creator>Binny V A</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[lindesk]]></category>
		<category><![CDATA[me]]></category>

		<guid isPermaLink="false">http://www.bin-co.com/blog/2007/09/lindesk-linux-on-the-desktop/</guid>
		<description><![CDATA[I have a new blog &#8211; LinDesk. LinDesk concentrates on the use of Linux on the Desktop. I am trying to keep it distro agnostic &#8211; but there is a slight leaning towards Fedora &#8211; as it is the distro I am using. Also, you might find a disproportionate amount of articles about KDE. Actually [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://lindesk.com/' title='LinDesk'><img src='http://www.bin-co.com/blog/wp-content/uploads/2007/09/lindesk.png' alt='LinDesk' class="intro" align="right" /></a></p>
<p class="intro">I have a new blog &#8211; <a href="http://lindesk.com/">LinDesk</a>. LinDesk concentrates on the use of Linux on the Desktop. I am trying to keep it distro agnostic &#8211; but there is a slight leaning towards Fedora &#8211; as it is the distro I am using. Also, you might find a disproportionate amount of articles about KDE.</p>
<p>Actually this blog has been around for some time. The <a href="http://lindesk.com/2007/04/fishfriendly-interactive-shell/">first article</a> appeared on April 8. But I did not announce it so that there can be a build up of articles before it goes public.</p>
<p>Take a look at <a href="http://lindesk.com/">LinDesk</a> &#8211; and if you are a fan of the Linux operating system, <a href="http://feeds.feedburner.com/Lindesk">subscribe</a>.</p>
<h2>Some Popular Posts</h2>
<ul>
<li><a href="http://lindesk.com/2007/04/konqueror-a-killer-app-for-linux/">Konqueror &#8211; A Killer App for Linux</a></li>
<li><a href="http://lindesk.com/2007/05/konqueror-the-browser/">Konqueror, The Browser</a></li>
<li><a href="http://lindesk.com/2007/05/using-konqueror-as-an-ftp-client/">Using Konqueror as an FTP Client</a></li>
<li><a href="http://lindesk.com/2007/04/internet-connection-sharing-using-iptables/">Internet Connection Sharing using iptables</a></li>
<li><a href="http://lindesk.com/2007/05/how-to-mount-isomdf-images-in-linux/">How to Mount ISO/MDF Images in Linux</a></li>
<li><a href="http://lindesk.com/2007/05/top-5-video-players-in-linux/">Top 5 Video Players in Linux</a></li>
<li><a href="http://lindesk.com/2007/05/wesnoth-the-battle-for-productivity/">Wesnoth &#8211; The Battle for Productivity</a></li>
</ul>
<p>So what do you guys think of the new blog? Is it a good move? Or am I moving towards an early burnout?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bin-co.com/blog/2007/09/lindesk-linux-on-the-desktop/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>New Blog</title>
		<link>http://www.bin-co.com/blog/2007/04/new-blog/</link>
		<comments>http://www.bin-co.com/blog/2007/04/new-blog/#comments</comments>
		<pubDate>Fri, 20 Apr 2007 16:28:48 +0000</pubDate>
		<dc:creator>Binny V A</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blogger]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[introduction]]></category>

		<guid isPermaLink="false">http://www.bin-co.com/blog/2007/04/new-blog/</guid>
		<description><![CDATA[Welcome, one and all, to my new ..er.. old blog. Well, new location of the old blog. Liked the theme? All the WordPress themes were kinda beautiful. So I took the default wordpress theme(Kuberic, I think it was called) and, for the lack of a better term, desecrated it. You are viewing the results. The [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://www.bin-co.com/blog/wp-content/uploads/2007/04/fireworks.png' alt='Celibration' class="intro" align="right" /></p>
<p class="intro">Welcome, one and all, to my new ..er.. old blog. Well, new location of the old blog. Liked the theme? All the WordPress themes were kinda beautiful. So I took the default wordpress theme(Kuberic, I think it was called) and, for the lack of a better term, desecrated it. You are viewing the results.</p>
<h2>The Past</h2>
<p>For those who are new to this blog, a bit of history &#8211; I have a blog at <a href="http://binnyva.blogspot.com/">http://binnyva.blogspot.com/</a>. I recently decided that <a href="http://binnyva.blogspot.com/2007/04/should-i-move-my-blog.html">I should move the blog</a> to one of my own servers. I did not import the old posts to this site due to the issue of duplicate content.</p>
<h2>The Future</h2>
<p>From the next post onwards, the post will be duplicated here and in my Blogger site. At the end of this month, I will abandon the old blog and focus on this one.</p>
<p>Abandon does not mean that I will delete the blog or its contents &#8211; that will stay. I will stop posting there. I will still carry out some maintenance tasks like weeding out the spam, repling to comments etc. However, from next month, no more new content will appear there.</p>
<h2>The Present</h2>
<p>In short, <strong class="highlight">Welcome All!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bin-co.com/blog/2007/04/new-blog/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
	</channel>
</rss>

