<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>CatsWhoBlog.com</title>
	
	<link>http://www.catswhoblog.com</link>
	<description>Make money, Blog better</description>
	<lastBuildDate>Tue, 09 Mar 2010 18:36:07 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/catswhoblog" /><feedburner:info uri="catswhoblog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>catswhoblog</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>10 tips to finally make money with Google Adsense</title>
		<link>http://feedproxy.google.com/~r/catswhoblog/~3/cALIh2rwG7s/10-tips-to-finally-make-money-with-google-adsense</link>
		<comments>http://www.catswhoblog.com/10-tips-to-finally-make-money-with-google-adsense#comments</comments>
		<pubDate>Tue, 09 Mar 2010 07:57:52 +0000</pubDate>
		<dc:creator>Jean-Baptiste Jung</dc:creator>
				<category><![CDATA[Make money blogging]]></category>
		<category><![CDATA[adsense]]></category>

		<guid isPermaLink="false">http://www.catswhoblog.com/?p=1224</guid>
		<description><![CDATA[
When thinking about website monetization, Google Adsense is probably the first thing that came to the mind of many people. Created in 2004, Adsense is the easiest way to make money online. Making real money with Google Adsense is not as easy as it seems, but if Adsense wasn&#8217;t an efficient way to make money [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.catswhoblog.com/10-tips-to-finally-make-money-with-google-adsense" title="Permanent link to 10 tips to finally make money with Google Adsense"><img class="post_image alignright" src="http://www.catswhoblog.com/wp-content/uploads/2010/03/finally-make-money-adsense.jpg" width="285" height="330" alt="Post image for 10 tips to finally make money with Google Adsense" /></a>
</p><p>When thinking about website monetization, Google Adsense is probably the first thing that came to the mind of many people. Created in 2004, Adsense is the easiest way to make money online. Making real money with Google Adsense is not as easy as it seems, but if Adsense wasn&#8217;t an efficient way to make money online, people would stop using it.<br />
In this article, I&#8217;m going to show you 10 efficient tips to really make money with Adsense.<br />
<span id="more-1224"></span></p>
<h4 style="margin-bottom: -20px;">Understand on which sites Adsense works</h4>
<p><div class="tweetmeme"><script type="text/javascript">tweetmeme_source = 'catswhocode';</script><script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script></div>Is it possible to really make money with Adsense? The answer is definitely yes. But <strong>not on all kind of sites</strong>. For example, I own a blog in French about visiting New York City (it is called <a href="http://www.visiter-newyork.com">Visiter New York</a>) and Adsense works very well on it. On the other hand, my most popular site, <a href="http://www.catswhocode.com">Cats Who Code</a> always had terrible results with Adsense, because tech-savy people will not (or less) click on Adsense ads.</p>
<p>One of the best Adsense tip I can give you is to know which niche are good and wich ones are to avoid.</p>
<h4>Avoid &#8220;SmartPricing&#8221; like the plague</h4>
<p>Smartpricing (which is everything but smart&#8230;) is when Google automatically gives the advertiser a discount based on the perceived value of your web site. Certain types of sites supposedly generate more sales so get a higher cost per click while others are typically more lookers and get paid less per click.</p>
<p>If Google placed your blog in the second category, no luck for you. In fact, for the same click on the same ad, <strong>a website can earn $1 while another will get on 10 cents! </strong></p>
<p>In order to avoid getting &#8220;Smartpriced&#8221; by Google, you have to try to <strong>keep your CTR high</strong>. Low CTR sites (under 1 or 2%) generally ends up by being smartpriced.</p>
<h4>Place Adsense ads on old posts only</h4>
<p>In order to avoid smartpricing, a great idea is to display Adsense ads on old posts only. Why? Because <strong>the vast majority of your regular visitors don&#8217;t click on ads</strong>. By showing Adsense on old posts only, you&#8217;ll definitely keep your CTR high.</p>
<p>The following function have to be pasted in the <em>functions.php</em> file of your WordPress theme.</p>
<pre>function is_old_post($post_id=null){
   $days = 15;
   global $wp_query;
   if(is_single() || is_page()) {
      if(!$post_id) {
         $post_id = $wp_query-&gt;post-&gt;ID;
      }
      $current_date = time();
      $offset = $days *60*60*24;
      $post_id = get_post($post_id);
      $post_date = mysql2date('U',$post_id-&gt;post_date);
      $cunning_math = $post_date + $offset;
      $test = $current_date - $cunning_math;
      if($test &gt; 0){
         $return = true;
      }else{
         $return = false;
      }
   }else{
      $return = false;
   }
   return $return;
}</pre>
<p>Once you successfully inserted the code into your function.php file, you are now ready to call the functions in your <em>single.php</em> template as shown below:</p>
<pre>&lt;?php if(is_old_post()){ ?&gt;
INSERT AD CODE HERE
&lt;?php } ?&gt;</pre>
<h4>Identify high paying keywords</h4>
<p>To appear on Adsense ads, advertisers have to bid on a specific keyword. Some <strong>keywords, such as &#8220;mortgage&#8221; have a way higher CPC than others</strong>.</p>
<p>A great way to maximize your Adsense income is to<strong> identify those high paying keywords and use them in your blog</strong>. Several lists of high paying keywords are available on the Internet, some are free and some aren&#8217;t.<br />
A good list to start with is <a href="http://rumler.com/google/adsense/top-paying-keywords.php" target="blank">this one</a>, which is completely free.</p>
<h4>Work with keywords</h4>
<p>Although you can&#8217;t directly control which Adsense ads appears on your site, you can work with keywords in the hope that Google will display related contextual ads.</p>
<p>For example, if you&#8217;re writing a post about Javascript, the keyword &#8220;javascript&#8221; has strong chances of being used in Adsense ads. If you want Adsense to display ads based on high paying keywords, you have to put these keywords on your document. Don&#8217;t abuse though; you may be penalized by Google.</p>
<p>To check your keyword density, here is a great tool : <a href="http://www.ranks.nl/tools/spider.html" target="blank">http://www.ranks.nl/tools/spider.html</a></p>
<h4>Use section targeting</h4>
<p>As I said before, in order to maximize your revenue you have to work on keywords. But what if Adsense is displaying ads based on a keyword you don&#8217;t want to be used? Using section targeting, <strong>you can emphasis some text as well as asking Adsense to ignore some other</strong>.</p>
<p>The following example shows how to use section targeting in your posts:</p>
<pre>&lt;!-- google_ad_section_start --&gt;
    Content you want to emphasize.
&lt;!-- google_ad_section_end --&gt;

&lt;!-- google_ad_section_start(weight=ignore) --&gt;
    Content you want to be ignored by Adsense
&lt;!-- google_ad_section_end --&gt;</pre>
<h4>Display Adsense to search engine visitors only</h4>
<p>Another way to avoid being smartpriced is definitely to display Adsense ads only to visitors who came from search engines.<br />
The following WordPress hack will do that job perfectly. To apply it to your blog, insert the code below in your theme <em>functions.php</em> file.<br />
Note that the <em>$SE</em> array is where you specify search engines. You can easily ad new search engines by adding new elements to the array.</p>
<pre>function scratch99_fromasearchengine(){
  $ref = $_SERVER['HTTP_REFERER'];
  $SE = array('/search?', 'images.google.', 'web.info.com', 'search.', 'del.icio.us/search', 'soso.com', '/search/', '.yahoo.');
  foreach ($SE as $source) {
    if (strpos($ref,$source)!==false) return true;
  }
  return false;
}</pre>
<p>Once done, open the file where you want to display the ads and paste the following code:</p>
<pre>if (function_exists('scratch99_fromasearchengine')) {
  if (scratch99_fromasearchengine()) {
    INSERT YOUR CODE HERE
  }
}</pre>
<p>Save the file, and you’re done. Thanks to <a href="http://www.scratch99.com/" target="blank">Stephen Cronin</a> for the hack!</p>
<h4>Go Large!</h4>
<p>Adsense ads can be displayed in various formats, but they don&#8217;t provide the same results. Although it depends of many factors such as your blog niche and layout, <strong>the large rectangle (336&#215;280) has proven to be the best paying Adsense format</strong>. It is also one of the few Adsense block which can display video ads.</p>
<h4>Use a personalized Google search engine on your blog</h4>
<p>Many people don&#8217;t like the way WordPress search works, and I must admit that this is not the best feature of my favorite blogging engine. In order to have better search results for my readers, I decided to give a try to a Google custom search engine. You can try it, search form is located on my blog sidebar.</p>
<p>The tools works very well, and <strong>you can start monetizing it using Adsense</strong>. I found out that on Cats Who Blog, the search engine is very profitable. For those who&#8217;d like to learn how to add Google search to their blog, a <a href="http://www.catswhocode.com/blog/integrate-google-search-on-your-blog" target="blank">very old post</a> from Cats Who Code explains how to do it.</p>
<h4>Don&#8217;t break Adsense terms of service</h4>
<p>At last but not least, one of the best bits of advice I can give to anyone who&#8217;d like to make money online using Google Adsense is to be careful with the terms of service. For example, if you click on your own ads, or display incentive messages on your site, Google will quickly finds out and <strong>they will consenquently ban your site from Adsense</strong>.</p>
<p>You have to play by their rules, so don&#8217;t thing you are smarter than them. Respect the terms of services, optimize your ads using the tips I just gave you, and write great content so people will visit your site and click on your ads.</p>
<img src="http://feeds.feedburner.com/~r/catswhoblog/~4/cALIh2rwG7s" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.catswhoblog.com/10-tips-to-finally-make-money-with-google-adsense/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.catswhoblog.com/10-tips-to-finally-make-money-with-google-adsense</feedburner:origLink></item>
		<item>
		<title>How I make money…on Twitter</title>
		<link>http://feedproxy.google.com/~r/catswhoblog/~3/2kjxBEEBkYg/how-i-make-money-on-twitter</link>
		<comments>http://www.catswhoblog.com/how-i-make-money-on-twitter#comments</comments>
		<pubDate>Fri, 05 Mar 2010 14:22:25 +0000</pubDate>
		<dc:creator>Jean-Baptiste Jung</dc:creator>
				<category><![CDATA[Make money blogging]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.catswhoblog.com/?p=1210</guid>
		<description><![CDATA[m]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.catswhoblog.com/how-i-make-money-on-twitter" title="Permanent link to How I make money&#8230;on Twitter"><img class="post_image alignright" src="http://www.catswhoblog.com/wp-content/uploads/2010/03/make-mone-twitter.jpg" width="285" height="330" alt="Post image for How I make money&#8230;on Twitter" /></a>
</p><p>As you probably know if you&#8217;re reading this blog from the start, my startegy to make money online is to multiply income sources the most I can. I got some blogs and websites, I&#8217;m a domainer and an affiliate marketer.<br />
But as Twitter became more and more popular, many people, me inclued, saw how they can use it to make money online. In this article, I&#8217;m going to show you how I make money online using Twitter, and how you can do the same.<br />
<span id="more-1210"></span></p>
<h3 style="margin-bottom:-20px;">Promoting your blog and driving traffic</h3>
<p><div class="tweetmeme"><script type="text/javascript">tweetmeme_source = 'catswhocode';</script><script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script></div>This is obviously the easiest and more logical way of making money using Twitter. Have you seen the green and gray button &#8220;X tweets&#8221; just below the title? When a twitter user clicks on it, it will automatically post a link to my post on their Twitter timeline. When a post is interesting, followers of the first person who tweeted my post will retweet it, and so on. </p>
<p>When you get retweeted by popular tweeter accounts (Some have more than 20000 followers) at an hour of the day where many people are behind their computers, results can be extremely great. </p>
<p>As you can see on the screenshot below, taken from <a href="http://www.catswhocode.com">Cats Who Code</a> statistics, Twitter is one of my top sources of traffic.</p>
<p style="text-align:center"><img src="http://www.catswhoblog.com/wp-content/uploads/2010/03/twitter-traffic-stats.jpg" alt="" /></p>
<p>Some of my Cats Who Code posts are retweeted up to <a href="http://www.catswhocode.com/blog/10-ways-to-make-internet-explorer-act-like-a-modern-browser">700 times</a>. How it is possible?<br />
First, I use a Tweetmeme button which allow my readers to share my posts quickly and easily. The easier retweeting is for your visitors, the more they will retweet.<br />
Secondly, I often ask my followers to RT my posts. Some people may not agree on that one, but personally, I have no problem when someone ask for RTs because I&#8217;m still free to do it or not. The two remaining &#8220;techniques&#8221; I use are to get as many followers as possible (assuming they&#8217;re interested in my tweets, otherwise they scrictly don&#8217;t have any value) and to have lots of friends like I explained in <a href="http://www.catswhoblog.com/what-bloggers-can-do-to-help-each-other-reciprocally">this previous post</a>.</p>
<h3>Making money on Twitter directly</h3>
<p>Here we go: Lots of people are using Twitter to drive traffic to their blog posts, but just a few are making money directly on twitter, without even having a blog or website of anykind.</p>
<p>The only things you need are Twitter and Paypal accounts. Follow people who sell products such as WordPress themes, ebooks, etc. <strong>When they tweet about one of their products, simply retweet them</strong>. Of course, don&#8217;t forget to change the url used in the original tweet by your own affiliate url, so you&#8217;ll make the comission for the traffic you drove.</p>
<p style="text-align:center"><img src="http://www.catswhoblog.com/wp-content/uploads/2010/03/making-money-twitter.jpg" alt="" /></p>
<p>Easy, isn&#8217;t it?  The only thing you have to do is to get followers that are interested in the kind of products you&#8217;re tweeting about. <strong>A twitter account should be focused on a particular niche</strong> if you want to make money with it.</p>
<p><strong><em>By the way, I just created a new Twitter account dedicated to Cats Who Blog, so <a href="http://twitter.com/catswhoblog">click here</a> to follow my blogging tips!</em></strong></p>
<img src="http://feeds.feedburner.com/~r/catswhoblog/~4/2kjxBEEBkYg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.catswhoblog.com/how-i-make-money-on-twitter/feed</wfw:commentRss>
		<slash:comments>18</slash:comments>
		<feedburner:origLink>http://www.catswhoblog.com/how-i-make-money-on-twitter</feedburner:origLink></item>
		<item>
		<title>WordPress Defender ebook review</title>
		<link>http://feedproxy.google.com/~r/catswhoblog/~3/0vE-w-rf6Y8/wordpress-defender-ebook-review</link>
		<comments>http://www.catswhoblog.com/wordpress-defender-ebook-review#comments</comments>
		<pubDate>Tue, 02 Mar 2010 23:11:36 +0000</pubDate>
		<dc:creator>Jean-Baptiste Jung</dc:creator>
				<category><![CDATA[Blogging Tips]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.catswhoblog.com/?p=1190</guid>
		<description><![CDATA[
On the internet, security have always been a big concern. As an example, how many times did you heard friends complaining that their blog were hacked? The internet is full of good people, but just like in real life, there&#8217;s also thieves and vandals. Being a website owner, you have to deal with these people, [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.catswhoblog.com/wordpress-defender-ebook-review" title="Permanent link to WordPress Defender ebook review"><img class="post_image alignright" src="http://www.catswhoblog.com/wp-content/uploads/2010/03/wordpress-defender-review.jpg" width="285" height="330" alt="Post image for WordPress Defender ebook review" /></a>
</p><p>On the internet, security have always been a big concern. As an example, how many times did you heard friends complaining that their blog were hacked? The internet is full of good people, but just like in real life, there&#8217;s also thieves and vandals. Being a website owner, you have to deal with these people, and you have to be the stronger. Happilly, several tools can help you to protect your digital properties.<br />
Today, I&#8217;m having a look at the promising <a href="http://www.catswhocode.com/blog/wpdefender.html" target="blank">WordPress Defender</a>, an all new ebook written to help you protecting your blog.<br />
<span id="more-1190"></span></p>
<p class="alert">If you&#8217;d like to purchase WordPress Defender, you can get it with a $4 discount. <a href="http://couponsforbloggers.com/wordpress-defender-ebook-coupon" target="blank">click here</a> to get your discount code.</p>
<h3>Introducing WordPress Defender</h3>
<p><div class="tweetmeme"><script type="text/javascript">tweetmeme_source = 'catswhocode';</script><script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script></div>Security. This single word have more than 500 millions results on Google. Everyday, lots of bloggers are loosing their business because a hacker had &#8220;fun&#8221; destroying their work. This is sad to see people destroying other work instead of focusing on their own business, but we can&#8217;t do nothing about it.</p>
<p>Just like in real life, some people just like to bother others, and the only thing you can do against them is to protect yourself. Happilly, WordPress is by default quite secure and have a strong community behing it, which ensure that any potential security loophole will be corrected in a matter of hours. Some basic security tips, such as a strong password, a <a href="http://couponsforbloggers.com/go/vpsnet">quality host</a> and database/files backup will avoid most problems.</p>
<p>But, hackers are not silly people. Althought the 3 simple tips I just gave you will prevent from 99 percent of potential attacks, there&#8217;s always a risk. I don&#8217;t want to sound paranoid, but this risk is simple: loosing your blog, buisiness or customers. Remember how Designfloat.com were popular back in 2008? Unfortunely, it was hacked and taken offline for almost a week. It took a while for the site to get users back, and believe me, it could have been even worst.</p>
<h3>What you&#8217;re going to learn</h3>
<p>Most websites owners are not security expert, and a lot of them don&#8217;t even know how to develop websites. With tools like WordPress, creating a website have never been easier. Unfortunely, most users don&#8217;t know anything about website security or even worst, don&#8217;t pay attention to it. Of course, if one day they visit their site and see something like below, they&#8217;ll regret the bad decision of not paying enought attention to their blog security.</p>
<p><img src="http://www.catswhoblog.com/wp-content/uploads/2010/03/DigicapeHacked.jpg" alt="" /></p>
<p>Althought there&#8217;s no &#8220;perfect&#8221; protection for your blog, <a href="http://www.catswhocode.com/blog/wpdefender.html" target="blank">WordPress Defender</a> can help you to protect your blog, mostly by studying hackers techniques. For example, you&#8217;ll learn: </p>
<ul>
<li>Brute force password discovery</li>
<li>Hacking other sites to learn how to get into your site</li>
<li>Downloading viruses to your computer</li>
<li>Pose as friends you have and set up fake social media profiles</li>
<li>Gain access to your WordPress Dashboard by registering themselves for your blog</li>
<li>Hacking your FTP connection</li>
<li>Intercepting your username and password during WordPress logins</li>
<li>Exploiting weak plugins and themes</li>
<li>Using Google Search to find outdated blogs &#8211; could that be yours?</li>
</ul>
<p>And so on. Each of the techniques above are shown, discussed and at last but not least, <strong>you&#8217;ll see how to efficiently protect your blog from those attacks</strong>.</p>
<h3>My personnal advice on the book</h3>
<p>Althought great security tips can be found on the &#8220;<a href="http://www.catswhocode.com/blog/diw.html" target="blank">Digging into WordPress</a>&#8221; book and the <a href="http://www.amazon.com/gp/product/1847197388?ie=UTF8&#038;tag=cat0b4-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=1847197388">WordPress Cookbook</a> I wrote, the good point of <a href="http://www.catswhocode.com/blog/wpdefender.html" target="blank">WordPress Defender</a> is that the book is 100% focused on the security concern. <a href="http://www.catswhocode.com/blog/wpdefender.html" target="blank">WordPress Defender</a> is especially a great investment for beginners or people who don&#8217;t know a lot about websites security. Though, things are detailed deeply so WordPress experts will still have something new to learn.<br />
Just like the highly popular &#8220;<a href="http://www.catswhocode.com/blog/diw.html" target="blank">Digging into WordPress</a>&#8220;, this book is a definitive must have for WordPress bloggers. Click <a href="http://www.catswhocode.com/blog/wpdefender.html" target="blank">here</a> to buy.</p>
<img src="http://feeds.feedburner.com/~r/catswhoblog/~4/0vE-w-rf6Y8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.catswhoblog.com/wordpress-defender-ebook-review/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.catswhoblog.com/wordpress-defender-ebook-review</feedburner:origLink></item>
		<item>
		<title>How to take your blog to the next level</title>
		<link>http://feedproxy.google.com/~r/catswhoblog/~3/PXfhgX0qR2A/how-to-take-your-blog-to-the-next-level</link>
		<comments>http://www.catswhoblog.com/how-to-take-your-blog-to-the-next-level#comments</comments>
		<pubDate>Tue, 23 Feb 2010 15:49:38 +0000</pubDate>
		<dc:creator>Jean-Baptiste Jung</dc:creator>
				<category><![CDATA[Blogging Tips]]></category>

		<guid isPermaLink="false">http://www.catswhoblog.com/?p=1178</guid>
		<description><![CDATA[
In june 2008, I founded Cats Who Code. Less than two years later, I felt that I had to take this website to a new level, a transform a good blog into a great blog. In this article, I&#8217;ll let you know what I&#8217;ve done, what I&#8217;m doing and what I plan to do to [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.catswhoblog.com/how-to-take-your-blog-to-the-next-level" title="Permanent link to How to take your blog to the next level"><img class="post_image alignright" src="http://www.catswhoblog.com/wp-content/uploads/2010/02/take-blog-next-level.jpg" width="285" height="330" alt="Post image for How to take your blog to the next level" /></a>
</p><p>In june 2008, I founded Cats Who Code. Less than two years later, I felt that I had to take this website to a new level, a transform a good blog into a great blog. In this article, I&#8217;ll let you know what I&#8217;ve done, what I&#8217;m doing and what I plan to do to take my blog to the next level.<br />
<span id="more-1178"></span></p>
<h3>It all starts with a goal</h3>
<p><div class="tweetmeme"><script type="text/javascript">tweetmeme_source = 'catswhocode';</script><script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script></div> Cats Who Code have been here for a little less than 2 years and I realized that since summer 2009 it started to get a lot of traffic. (ie. 5000 to 8000 unique visitors per day) This blog have always been full of potential, but this potential had to be unleashed. At the end of 2009, Cats Who Code was admitted in the Smashing Network, which is good for both the traffic and the image of quality of the blog. </p>
<p>Why blogs like SixRevisions.com receive so many traffic? The answer is pretty simple. They produce lots of good content, and work a lot. Cats Who Code had good content, but this wasn&#8217;t enought. In January 2010, I decided to take it to the next level and make it one of the most popular web development blogs of the world. The first step will be to get 10000 RSS readers before the 2nd birthday in June.<br />
<strong>Yes, this is very ambitious. But without ambitions, you&#8217;re going to stay where you are.</strong></p>
<h3>First step: remove things that sucks</h3>
<p>Cats WHo Code was my first &#8220;pro&#8221; blog, so I made lots of mistakes on that one. <strong>Novice bloggers wants to make money quick, and often look for the most possible ways to get some cash</strong>. In the past years, I have made lots of crappy sponsored reviews on Cats Who Code. It made me earn $200 or $300, but it also made my blog look amateur.<br />
This is why, I removed most sponsored reviews. No one ever told me about it, which just shown how  useless those posts where to my readers.</p>
<p>I was also a Text Links Ads user. As most of you know, Google don&#8217;t want you to sell text links (they prefer you to use Adsense, no comments) and they noticied that I was doing it. They punished me for not obeying: Cats Who Code pagerank dropped down to zero in January.<br />
I definitely hate how Google is trying to get control over what you can and can&#8217;t do on your own website. In my opinion, this is clearly a dictatorial method. But you haven&#8217;t the choice, you can&#8217;t fight against them. So I did what they want, I removed text links to keep my credibility.</p>
<h3>Step 2: Polish you blog</h3>
<p>Although I wrote a post about <a href="http://www.catswhocode.com/blog/how-to-speed-up-your-blog-loading-time">speeding up your blog</a>, due to the high traffic Cats Who Code was desperatly slow. At the time, I was hosted at <a href="http://www.catswhocode.com/blog/wpwebhost.html">WpWebHost</a>, which is a great host (This blog is hosted by them) but when you receive so much traffic, shared hosting is not enought. I decided to make the move to a <em>virtual private server</em>, and chose <a href="http://couponsforbloggers.com/go/vpsnet">vpsnet</a> because they allow you to allocate more resources to your server when needed. For example, if you receive more traffic on mondays because you publish your posts that day, you can add more memory to your server for a day only. This is very a cool thing in my opinion.</p>
<p>Along with migrating to a <a href="http://couponsforbloggers.com/go/vpsnet">VPS server</a>, I created a new theme for the blog, which is more clean and more optimized for high traffic (less images, few scripts). I also replaced the horrible header banner by a second &#8220;above content&#8221; banner. This new spot, currently priced $100, sold on the first day. This is motivating.</p>
<h3>Step 3: Content, content, content!</h3>
<p>Having a beautiful and fast blog is good, but the only thing that make people come and visit your blog is content. It is clear that if I want to make Cats Who Code one of the most popular web development blogs of the world, I have to produce a lot of quality content.<br />
Currently, I can only produce one quality post per week, which is not enought. In my opinion, publishing 2/3 posts per week is the right thing. This is why I decided to hire guest bloggers, paid up to $75 for a cool web development post.</p>
<h3>Conclusion</h3>
<p>Two weeks after migrating cats Who Code to his new <a href="http://couponsforbloggers.com/go/vpsnet">VPS server</a>, I&#8217;m pretty happy by the encouraging results I got, both in terms of traffic and community feedback.<br />
Since two weeks, Cats Who Code RSS readers have slighty increased, peaking at 8300+ on Friday 19, 2010, which for the first time, was <strong>higher than the amount of WpRecipes readers</strong> (8100+). </p>
<p>An important thing to note is that this move to the new level is costing me a lot of money : The <a href="http://couponsforbloggers.com/go/vpsnet">VPS server</a> is priced $80/month and as I previously said, guest writers will be paid up to $75 per post. As I stopped selling text ads and sponsored reviews, the site income slighty lowered as well.<br />
So why am I doing it? This is simple: <strong>This is an investment on quality</strong>. Right now, the blog is not providing me as much money as it should because I have to pay the guest writers and the server, but it is a sure thing that with more quality articles, traffic will increase and ads price will be increased as well.</p>
<img src="http://feeds.feedburner.com/~r/catswhoblog/~4/PXfhgX0qR2A" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.catswhoblog.com/how-to-take-your-blog-to-the-next-level/feed</wfw:commentRss>
		<slash:comments>16</slash:comments>
		<feedburner:origLink>http://www.catswhoblog.com/how-to-take-your-blog-to-the-next-level</feedburner:origLink></item>
		<item>
		<title>WPShift Theme review</title>
		<link>http://feedproxy.google.com/~r/catswhoblog/~3/e-kRVnnfAyI/wpshift-theme-review</link>
		<comments>http://www.catswhoblog.com/wpshift-theme-review#comments</comments>
		<pubDate>Fri, 19 Feb 2010 09:44:39 +0000</pubDate>
		<dc:creator>Jean-Baptiste Jung</dc:creator>
				<category><![CDATA[Blogging Tips]]></category>
		<category><![CDATA[wordpress theme]]></category>

		<guid isPermaLink="false">http://www.catswhoblog.com/?p=1142</guid>
		<description><![CDATA[
I know I talked a lot about the Headway Theme recently, but as an efficient blogger there&#8217;s another WordPress theme you may want to try: It is called ShiftNews and it have just been released by WPShift, a company from England dedicated in producing high quality WordPress themes.
In this article, let&#8217;s have a look to [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.catswhoblog.com/wpshift-theme-review" title="Permanent link to WPShift Theme review"><img class="post_image alignright" src="http://www.catswhoblog.com/wp-content/uploads/2010/02/wpshift-post.jpg" width="285" height="330" alt="Post image for WPShift Theme review" /></a>
</p><p>I know I talked a lot about the Headway Theme recently, but as an efficient blogger there&#8217;s another WordPress theme you may want to try: It is called ShiftNews and it have just been released by WPShift, a company from England dedicated in producing high quality WordPress themes.</p>
<p>In this article, let&#8217;s have a look to <a href="http://couponsforbloggers.com/go/wpshift">ShiftNews</a> and let&#8217;s see what it have to offer.<br />
<span id="more-1142"></span></p>
<p class="alert">If you&#8217;d like to buy ShiftNews, don&#8217;t forget to visit my other site <a href="http://couponsforbloggers.com/wpshift-themes-coupon">Coupons for Bloggers</a> to get a 10% discount!</p>
<h3>The design</h3>
<p><div class="tweetmeme"><script type="text/javascript">tweetmeme_source = 'catswhocode';</script><script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script></div>Of course, the first thing you have to consider while purchasing a WordPress theme is indeed the design. Regarding the look of Alex Denning&#8217;s (One of WPShift&#8217;s founders) personal blog, I was quite afraid that the <a href="http://couponsforbloggers.com/go/wpshift">ShiftNews</a> design could not compete with the market. But the day they launched the theme, I was surprised to see how cool the design is. I still don&#8217;t understand why Alex Denning is not using it on WPShout!</p>
<p><img src="http://www.catswhoblog.com/wp-content/uploads/2010/02/wpshift.jpg" alt="" /></p>
<h3>Functionnalities</h3>
<p>Of course, when you spend money in a so-called &#8220;premium&#8221; WordPress theme, you want a great design, but you also need your theme to stand out of the crowd by its functionnalities. And <a href="http://couponsforbloggers.com/go/wpshift">ShiftNews</a> have a lot of functionnalities.</p>
<p>Recently WordPress themes have become a lot more advanced and <a href="http://couponsforbloggers.com/go/wpshift">ShiftNews</a> certainly doesn&#8217;t disappoint with the features. <strong>The homepage is completely widgetised</strong> meaning you can take advantage of the built in widgets (which include a choice of featured content sliders, a traditional blog style look and a magazine style column widget!) to create a layout that&#8217;s custom for your site. Because the theme uses WordPress&#8217; widgets, you can just drag and drop bits around your homepage which makes using <a href="http://couponsforbloggers.com/go/wpshift">ShiftNews</a> a pleasure.</p>
<p>The documentation included is impressive too &#8211; along with a 2000 word long written documentation, there are a whole load of video screencasts embedded in the theme itself so you&#8217;re never left wondering what to do next. For example, if you were configuring one of your featured content sliders, you could just watch a screencast right within the widget control panel to see what to do!</p>
<h4>Even more features</h4>
<ul>
<li>Built in contact form</li>
<li>Ten widget ready areas</li>
<li>Blog layout page template</li>
<li>Your own custom homepage layout</li>
<li>Effortless image resizing</li>
<li>Multiple post tempaltes</li>
<li>Multiple jQuery slider widgets</li>
<li>Awesome dropdown navigation</li>
<li>Four built in colour schemes with a colour picker to help you make your own</li>
<li>Social media links</li>
<li>Threaded comments</li>
<li>Built in support for popular plugins including PageNavi and YARPP</li>
<li>Custom search engine options</li>
<li>Optimised and efficient code</li>
</ul>
<p><strong><em><a href="http://couponsforbloggers.com/go/wpshift">ShiftNews</a> by WPShift. $59.95</em></strong></p>
<img src="http://feeds.feedburner.com/~r/catswhoblog/~4/e-kRVnnfAyI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.catswhoblog.com/wpshift-theme-review/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		<feedburner:origLink>http://www.catswhoblog.com/wpshift-theme-review</feedburner:origLink></item>
		<item>
		<title>What bloggers can do to help each other reciprocally</title>
		<link>http://feedproxy.google.com/~r/catswhoblog/~3/qv5y41tawn8/what-bloggers-can-do-to-help-each-other-reciprocally</link>
		<comments>http://www.catswhoblog.com/what-bloggers-can-do-to-help-each-other-reciprocally#comments</comments>
		<pubDate>Mon, 15 Feb 2010 10:23:21 +0000</pubDate>
		<dc:creator>Jean-Baptiste Jung</dc:creator>
				<category><![CDATA[Blogging Tips]]></category>

		<guid isPermaLink="false">http://www.catswhoblog.com/?p=1153</guid>
		<description><![CDATA[
You know it : Making money blogging and reaching online success aren&#8217;t easy things. There&#8217;s many things that you can do in order to maximize your chances of success. One of these things is reciprocal help, a technique that I&#8217;m using since years and which always providing great results.
In this article, I&#8217;m going to show [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.catswhoblog.com/what-bloggers-can-do-to-help-each-other-reciprocally" title="Permanent link to What bloggers can do to help each other reciprocally"><img class="post_image alignright" src="http://www.catswhoblog.com/wp-content/uploads/2010/02/help-bloggers-reciprocally.jpg" width="285" height="330" alt="Post image for What bloggers can do to help each other reciprocally" /></a>
</p><p>You know it : Making money blogging and reaching online success aren&#8217;t easy things. There&#8217;s many things that you can do in order to maximize your chances of success. One of these things is reciprocal help, a technique that I&#8217;m using since years and which always providing great results.<br />
In this article, I&#8217;m going to show what you can do to help other bloggers while they help you.<br />
<span id="more-1153"></span></p>
<h4>Link exchange</h4>
<p><div class="tweetmeme"><script type="text/javascript">tweetmeme_source = 'catswhocode';</script><script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script></div>Since the early days of the internet, link exchange have always been popular between websites owners. The benefits of links exchanges are a few visibility and a backlink, which is seen by Google as a proof of quality. </p>
<p>Personally, I&#8217;m not a fan of link exchange, mostly because it takes a big amount of space on your blog. Also, a great blog will naturally get backlinks by other sites. Though, my site Cats Who Code has been in Smashing Magazine&#8217;s blogroll for a while and it provided me more than 100 unique visitors on a daily basis. </p>
<p>Another problem with reciprocal links is that Google have told that they will not have the same &#8220;seo weight&#8221; than non-reciprocal links. Why? Because they thinks that a non reciprocal link have more value because it is not an agreement between bloggers.</p>
<h4>ReTweeting each other</h4>
<p><a href="http://www.twitter.com/catswhocode">Twitter</a> is an excellent way for bloggers to promote their content. On almost all my sites, Twitter is in the top five traffic providers. Depending on your number of followers and the time of the day, a single tweet could lead to 200+ unique visitors to your blog post.</p>
<p>Retweeting tweets from your friends is definitely a great way to help them. Of course, the best you can do is to set up alliances with your friends: You&#8217;ll retweet them, they&#8217;ll retweet you.</p>
<h4>Even better than retweeting&#8230;Using Tweeterfeed</h4>
<p>What about automating reciprocal help? If you&#8217;re used to retweet your friend&#8217;s tweets while they retweet yours, a great solution is to use <a href="http://www.twitterfeed.com">Twitterfeed</a>. What is Twitterfeed? It is a tool that allow you to automatically tweet an item from a RSS feed. Just sign in using your Twitter account, define which feeds have to be tweeted, and that&#8217;s all.<br />
<img src="http://www.catswhoblog.com/wp-content/uploads/2010/02/twitterfeed.jpg" alt="Twitterfeed" /><br />
I&#8217;m personally using this technique along with several friends and it is a very good solution to help each other.</p>
<h4>Voting at social bookmarking sites</h4>
<p>As a blogger, a great way to get quality backlinks and traffic is social bookmarking sites, such as Digg, Delicious and DesignBump. Reciprocal help is definitely the shortest way to achieve social bookmarking success. </p>
<p>I have experienced it personally with lots of friends, asking them to vote for my posts on bookmarkings sites while I vote for them. Some people might say it&#8217;s unfair, but at least, it works. Though, be aware that some sites are using complex algorithms in order to limit reciprocal help and make sure that people hitting the frontpage are &#8220;legitimate&#8221; users, not bloggers team who are voting for their friends.<br />
Digg and DesignBump are using that kind of algorithms, but most sites aren&#8217;t.</p>
<h4>Good communication</h4>
<p>At last but not least, a good communication is a very important thing in order to maintain solid relationships with your blogging friends. It can sounds not so important but believe me, if you want to have a team of bloggers helping each others it is very important to stay in touch regulary, on twitter or via email.</p>
<p><em>And you, have you already experienced reciprocal help in order to get more online success?</em></p>
<img src="http://feeds.feedburner.com/~r/catswhoblog/~4/qv5y41tawn8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.catswhoblog.com/what-bloggers-can-do-to-help-each-other-reciprocally/feed</wfw:commentRss>
		<slash:comments>28</slash:comments>
		<feedburner:origLink>http://www.catswhoblog.com/what-bloggers-can-do-to-help-each-other-reciprocally</feedburner:origLink></item>
		<item>
		<title>Top 10 Headway Theme customizations</title>
		<link>http://feedproxy.google.com/~r/catswhoblog/~3/gOjGuMS_CsM/top-10-headway-theme-customizations</link>
		<comments>http://www.catswhoblog.com/top-10-headway-theme-customizations#comments</comments>
		<pubDate>Tue, 02 Feb 2010 08:04:47 +0000</pubDate>
		<dc:creator>Jean-Baptiste Jung</dc:creator>
				<category><![CDATA[Blogging Tips]]></category>
		<category><![CDATA[headway]]></category>

		<guid isPermaLink="false">http://www.catswhoblog.com/?p=1102</guid>
		<description><![CDATA[
Some time ago I showed you some really cool customizations of the Thesis theme for WordPress and then reviewed a newer theme called Headway. Today let&#8217;s have a look to what Headway has to offer; not only you can customize it, but you can create your own layout within the theme so your blog will [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.catswhoblog.com/top-10-headway-theme-customizations" title="Permanent link to Top 10 Headway Theme customizations"><img class="post_image alignright" src="http://www.catswhoblog.com/wp-content/uploads/2009/12/headway-wordpress-theme-review.jpg" width="285" height="330" alt="Post image for Top 10 Headway Theme customizations" /></a>
</p><p>Some time ago I showed you some really cool customizations of the Thesis theme for WordPress and then reviewed a newer theme called <a href="http://www.catswhocode.com/blog/headway.html" target="blank">Headway</a>. Today let&#8217;s have a look to what Headway has to offer; not only you can customize it, but you can create your own layout within the theme so your blog will not look like something which already exists.</p>
<p><span id="more-1102"></span></p>
<h3>About Headway</h3>
<p><div class="tweetmeme"><script type="text/javascript">tweetmeme_source = 'catswhocode';</script><script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script></div>For those who don&#8217;t know yet, <a href="http://www.catswhocode.com/blog/headway.html" target="blank">Headway</a> is a very advanced WordPress theme framework, which provide lots of cool features such as SEO optimization and dropdown menus, but it also embeds tools to edit your blog layout and colors without having to type a single line of code.<br />
If you&#8217;d like to know a bit more about this great WordPress theme, make sure to read the <a href="http://www.catswhoblog.com/headway-wordpress-theme-review">Headway Theme review</a> I wrote a while ago.</p>
<p class="alert" style="margin-top: 25px;">If you&#8217;re interested in buying the Headway Theme, you can get a 20% discount <a href="http://couponsforbloggers.com/headway-theme">here</a>.</p>
<p>Time for showcase! Here are the 10 most awesome blog layouts created within <a href="http://www.catswhocode.com/blog/headway.html" target="blank">Headway</a>.</p>
<h3>Headway</h3>
<p><img src="http://www.catswhoblog.com/wp-content/uploads/2010/01/headway.png" alt="" /><br />
<strong><a href="http://www.catswhocode.com/blog/headway.html" target="blank">http://www.headwaythemes.com</a></strong></p>
<h3>Parent by heart</h3>
<p><img src="http://www.catswhoblog.com/wp-content/uploads/2010/01/parent.png" alt="" /><br />
<strong><a href="http://www.parentbyheart.com" target="blank">http://www.parentbyheart.com</a></strong></p>
<h3>Legal Practice Pro</h3>
<p><img src="http://www.catswhoblog.com/wp-content/uploads/2010/01/legal.png" alt="" /><br />
<strong><a href="http://www.legalpracticepro.com" target="blank">http://www.legalpracticepro.com</a></strong></p>
<h3>Danny Brown</h3>
<p><img src="http://www.catswhoblog.com/wp-content/uploads/2010/01/dannybrown.png" alt="" /><br />
<strong><a href="http://www.dannybrown.me" target="blank">http://www.dannybrown.me</a></strong></p>
<h3>Thomas Schoenweitz</h3>
<p><img src="http://www.catswhoblog.com/wp-content/uploads/2010/01/thomas.png" alt="" /><br />
<strong><a href="http://www.thomasschoenweitz.com" target="blank">http://www.thomasschoenweitz.com</a></strong></p>
<h3>Headway Hacks</h3>
<p><img src="http://www.catswhoblog.com/wp-content/uploads/2010/01/headwayhacks.png" alt="" /><br />
<strong><a href="http://www.headwayhacks.com" target="blank">http://www.headwayhacks.com</a></strong></p>
<h3>Remarkablogger</h3>
<p><img src="http://www.catswhoblog.com/wp-content/uploads/2010/01/remarkablogger.png" alt="" /><br />
<strong><a href="http://www.remarkablogger.com" target="blank">http://www.remarkablogger.com</a></strong></p>
<h3>Homepage Construction Company</h3>
<p><img src="http://www.catswhoblog.com/wp-content/uploads/2010/01/hpcco.png" alt="" /><br />
<strong><a href="http://www.homepageconstructionco.com" target="blank">http://www.homepageconstructionco.com</a></strong></p>
<h3>Jim Conolly</h3>
<p><img src="http://www.catswhoblog.com/wp-content/uploads/2010/01/jim.png" alt="" /><br />
<strong><a href="http://jimsmarketingblog.com" target="blank">http://jimsmarketingblog.com</a></strong></p>
<h3>Springfield Chiropractor</h3>
<p><img src="http://www.catswhoblog.com/wp-content/uploads/2010/01/springfield.png" alt="" /><br />
<strong><a href="http://www.springfieldchiropractorblog.com" target="blank">http://www.springfieldchiropractorblog.com</a></strong></p>
<img src="http://feeds.feedburner.com/~r/catswhoblog/~4/gOjGuMS_CsM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.catswhoblog.com/top-10-headway-theme-customizations/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		<feedburner:origLink>http://www.catswhoblog.com/top-10-headway-theme-customizations</feedburner:origLink></item>
		<item>
		<title>7 things to do on week ends to enhance your blog</title>
		<link>http://feedproxy.google.com/~r/catswhoblog/~3/Vgsu7dGVzEg/7-things-to-do-on-week-ends-to-enhance-your-blog</link>
		<comments>http://www.catswhoblog.com/7-things-to-do-on-week-ends-to-enhance-your-blog#comments</comments>
		<pubDate>Thu, 28 Jan 2010 15:00:16 +0000</pubDate>
		<dc:creator>Jean-Baptiste Jung</dc:creator>
				<category><![CDATA[Blogging Tips]]></category>

		<guid isPermaLink="false">http://www.catswhoblog.com/?p=321</guid>
		<description><![CDATA[
That&#8217;s a sure thing, the week end is definitely the favorite time of the week for many people. But how can you use efficiently the spare time you have on week ends to enhance your blog? In this article, I&#8217;m going to show you how I use my week end time and give you some [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.catswhoblog.com/7-things-to-do-on-week-ends-to-enhance-your-blog" title="Permanent link to 7 things to do on week ends to enhance your blog"><img class="post_image alignright" src="http://www.catswhoblog.com/wp-content/uploads/2009/11/relaxing-cat.jpg" width="285" height="330" alt="Post image for 7 things to do on week ends to enhance your blog" /></a>
</p><p>That&#8217;s a sure thing, the week end is definitely the favorite time of the week for many people. But how can you use efficiently the spare time you have on week ends to enhance your blog? In this article, I&#8217;m going to show you how I use my week end time and give you some tips.</p>
<p><span id="more-321"></span></p>
<h4>Take the time to relax</h4>
<p><div class="tweetmeme"><script type="text/javascript">tweetmeme_source = 'catswhocode';</script><script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script></div>Althought this post is about things to do to enhance your blog, taking the time to relax is something essential if you want to make a good job on your blog.<br />
When you have too much work to do, it can be very tempting to do it on a &#8220;quick and dirty&#8221; way, which is never good. If you take the necessary time to relax and be with your family, you&#8217;ll build forces for a better blogging all along the week.</p>
<h4 style="margin-top:25px;">Make your schedule for the week</h4>
<p>Being organized is very good for efficient blogging. Each week end, I take an average 30 minutes to think about what posts I should write and what improvements I could make to my blogs during the week.</p>
<p>I use a <a target="blank" href="http://www.amazon.com/gp/redirect.html?ie=UTF8&#038;location=http%3A%2F%2Fwww.amazon.com%2Fs%3Fie%3DUTF8%26x%3D0%26ref_%3Dnb%255Fss%26y%3D0%26field-keywords%3Dmoleskine%26url%3Dsearch-alias%253Daps&#038;tag=cat0b4-20&#038;linkCode=ur2&#038;camp=1789&#038;creative=390957">Moleskine notebook</a> to write my ideas, organize my schedule and remeber what I have to do. It is a real life saver for a busy person like me, who own <a href="http://www.catswhoblog.com/how-to-manage-multiple-blogs-efficiently">more than 10 blogs</a>!</p>
<h4>Upgrade WordPress</h4>
<p>WordPress upgrades are boring, but necessary to make sure your blog is secure. I personally like to upgrade WordPress as well as the plugins I use on week ends, to make sure I&#8217;ll have the required time to repair my blog if a problem happens.<br />
WordPress upgrades problems are quite rare, but that doesn&#8217;t mean they can&#8217;t happen. And if it happen, you&#8217;ll be happy to be able to repair your blog right now!</p>
<h4>Perform maintenance</h4>
<p>You probably have noticied that on week ends, your blog is getting less visitors than during the week. This means week ends are the best time to change your WordPress theme or implement design changes.<br />
Remember to use the <a href="#">maintenance mode</a> WordPress plugin if you want to prevent visitors accessing your blog while performing maintenance.</p>
<h4>Work on the week posts</h4>
<p>By definition, saturdays and sundays are the days of the week where you have spare time. In order to have less work to do on the other week days, what about starting to work on your scheduled blog posts?<br />
Especially in the case of very long and complex articles, you&#8217;ll be very happy to have some advance.</p>
<h4>Guest blog</h4>
<p>I have already demonstrated how <a href="http://www.catswhoblog.com/10-tips-to-be-an-efficient-guest-blogger">guest blogging is good for you and your blog</a>. So what about using some of your week end spare time to give it a try? You&#8217;ll probably be very happy with it!</p>
<h4>Read other blogs</h4>
<p>Reading other blogs is one of the best &#8211; if not the best &#8211; way to stay tuned with what&#8217;s hot in the blogging world theses days.<br />
When you&#8217;re a blogger yourself, it can be hard to find the time to read 15 or 20 blogs on a daily basis. But on week ends, you can easily take the time to read your favorite blogs and stay tuned with the latest news and trends.</p>
<h3></h3>
<h3></h3>
<h3></h3>
<img src="http://feeds.feedburner.com/~r/catswhoblog/~4/Vgsu7dGVzEg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.catswhoblog.com/7-things-to-do-on-week-ends-to-enhance-your-blog/feed</wfw:commentRss>
		<slash:comments>24</slash:comments>
		<feedburner:origLink>http://www.catswhoblog.com/7-things-to-do-on-week-ends-to-enhance-your-blog</feedburner:origLink></item>
		<item>
		<title>Why a blog should always be niche focused</title>
		<link>http://feedproxy.google.com/~r/catswhoblog/~3/mSphpt6mur0/why-a-blog-should-always-be-niche-focused</link>
		<comments>http://www.catswhoblog.com/why-a-blog-should-always-be-niche-focused#comments</comments>
		<pubDate>Mon, 25 Jan 2010 05:12:58 +0000</pubDate>
		<dc:creator>Jean-Baptiste Jung</dc:creator>
				<category><![CDATA[Blogging Tips]]></category>

		<guid isPermaLink="false">http://www.catswhoblog.com/?p=717</guid>
		<description><![CDATA[
So you want to create a (new) blog? Congratulations! This is a very good idea!
Before your blog goes live you have to be sure about something really important things: what you will talk about and how you&#8217;ll do it so you&#8217;ll not end up with an abandonned blog one year after launching your new project. [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.catswhoblog.com/why-a-blog-should-always-be-niche-focused" title="Permanent link to Why a blog should always be niche focused"><img class="post_image alignright" src="http://www.catswhoblog.com/wp-content/uploads/2009/12/find-a-niche-for-your-blog.jpg" width="285" height="330" alt="Post image for Why a blog should always be niche focused" /></a>
</p><p>So you want to create a (new) blog? Congratulations! This is a very good idea!<br />
Before your blog goes live you have to be sure about something really important things: what you will talk about and how you&#8217;ll do it so you&#8217;ll not end up with an abandonned blog one year after launching your new project. In fact, choosing a niche and stay sticked to it is one of the essential keys for success in blogging.</p>
<p><span id="more-717"></span></p>
<h4>Why your blog should stick to a single topic</h4>
<p><div class="tweetmeme"><script type="text/javascript">tweetmeme_source = 'catswhocode';</script><script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script></div>You probably know it; there are millions of blogs all over the internet and everyday countless new blogs are created. After one year, less than 1% of all those new blogs are still maintained.</p>
<p>Reaching success in blogging isn&#8217;t easy, especially if you never blogged before and don&#8217;t know how social media and blogging works. The biggest mistake in blogging, which cause failure to many blogs is definitely blogs which aren&#8217;t focused to a particular niche.</p>
<p>Let&#8217;s take an easy example : John works at a library, so he knows a lot about books. He also like heavy metal music and would like to share his passion for this music with others. John decides to create his blog and start by publishing 5 books reviews.<br />
In another place, an old woman who recently bought a computer find John&#8217;s blog. She really enjoyed his books reviews, so she grabbed the RSS feed and add it to her google reader. (<em>Yeah, I know, she&#8217;s a modern grandma&#8230;</em>)</p>
<p>The next day, John decide to publish a review of his favorite metal band. A couple of minutes later, the grandma sees a new item on her RSS reader and reads it, believing it was a new book review like those she enjoyed.</p>
<p>I guess you imagine how surprised the grandma should be. She wanted to see books reviews like she was used to, and ended up reading a metal album review. <strong>You guessed it, she unsubscribed from the feed and John lost his most loyal reader</strong>.</p>
<p>As shown in the example, John&#8217;s posts were good, but he lost readers because his blog was talking about too many different subjects.</p>
<h4>But what I like different things?</h4>
<p>In life, this is in my opinion a good thing to be interested by many different things. To tell you a bit about myself, of course I love blogging, web development and WordPress, but I also love music, guitars, politics, animals and many others.</p>
<p>Imagine just a second that I start to publish  articles showing how to play the guitar and playing with your dog on <a href="http://www.wprecipes.com">WpRecipes</a>. Those article might be great, but people visit WpRecipes to read about WordPress hacks, not something else.</p>
<p>This is why you should stick to your niche. One of the biggest mistake I&#8217;ve done when I started Cats Who Code was to blog about web development, Linux, and blogging tips on the same blog. Since I created this blog and began to remove &#8220;blogging tips&#8221; articles from Cats Who Code, I got more RSS subscribers than before.</p>
<h4>Tips to get a great niche idea</h4>
<p>The first tip I&#8217;d give is obviously to follow your interest. If you&#8217;re a soccer fan, a soccer blog makes sense. But instead of creating another soccer blog, you should find something more specific, as such as transferts or goal videos.</p>
<p>No idea? Visit <a href="http://www.dmoz.com">Dmoz.com</a>. Despite its horrible 90&#8217;s looking design, this site is one of the largest directories on the internet, and there&#8217;s no doubt that you may find some great niche ideas on there.</p>
<p>Another way to find a great niche is to start with something you love and then move forward to a smaller and more specific niche. For example, let&#8217;s start with &#8220;Internet&#8221;: web development, PHP language, PHP framework&#8230;The PHP <a href="http://www.symfony-project.org">Symfony framework</a>. In fact, there&#8217;s no (or maybe one or two) blogs about the very cool Symfony framework for the PHP programming language.<br />
If you know your subject (of course!) you should definitely focus on a smaller and unexploited niche.</p>
<img src="http://feeds.feedburner.com/~r/catswhoblog/~4/mSphpt6mur0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.catswhoblog.com/why-a-blog-should-always-be-niche-focused/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		<feedburner:origLink>http://www.catswhoblog.com/why-a-blog-should-always-be-niche-focused</feedburner:origLink></item>
		<item>
		<title>8 reasons why negative comments are good for your blog</title>
		<link>http://feedproxy.google.com/~r/catswhoblog/~3/lA0iTM5Wpk8/8-reasons-why-negative-comments-are-good-for-your-blog</link>
		<comments>http://www.catswhoblog.com/8-reasons-why-negative-comments-are-good-for-your-blog#comments</comments>
		<pubDate>Thu, 21 Jan 2010 15:03:14 +0000</pubDate>
		<dc:creator>Jean-Baptiste Jung</dc:creator>
				<category><![CDATA[Blogging Tips]]></category>
		<category><![CDATA[criticism]]></category>
		<category><![CDATA[negative comments]]></category>

		<guid isPermaLink="false">http://www.catswhoblog.com/?p=64</guid>
		<description><![CDATA[
All bloggers loves to receive comments and feedback on their articles. But how do you handle negative feedback? As a blog grows, it becomes more exposed to negative comments. Despite the fact theses comments aren’t flattering, they’re good for your blog. Don&#8217;t believe me? Here’s 8 reasons to show you why.

You can be wrong
Yes, really. [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.catswhoblog.com/8-reasons-why-negative-comments-are-good-for-your-blog" title="Permanent link to 8 reasons why negative comments are good for your blog"><img class="post_image alignright" src="http://www.catswhoblog.com/wp-content/uploads/2009/10/why-negative-comments-are-good-for-your-blog.jpg" width="290" height="352" alt="Post image for 8 reasons why negative comments are good for your blog" /></a>
</p><p>All bloggers loves to receive comments and feedback on their articles. But how do you handle negative feedback? As a blog grows, it becomes more exposed to negative comments. Despite the fact theses comments aren’t flattering, they’re good for your blog. Don&#8217;t believe me? Here’s 8 reasons to show you why.<br />
<span id="more-64"></span></p>
<h4>You can be wrong</h4>
<p><div class="tweetmeme"><script type="text/javascript">tweetmeme_source = 'catswhocode';</script><script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script></div>Yes, really. Everyone can make a typo, forgot to say something important or just being plain wrong. In theses cases, the negative comment is just a way to improve your article. Blogging is all about exchange: You give to your readers, why shouldn&#8217;t they give to you?</p>
<h4 style="margin-top:25px;">Criticized posts are&#8230;popular posts</h4>
<p>Last year, my &#8220;<a href="http://www.catswhocode.com/blog/os/how-to-customize-your-gnulinux-desktop-in-7-easy-steps-112">How to: Customize your GNU/Linux desktop in 7 easy steps</a>&#8221; article hitted digg.com front page. Many readers and digg users left negative comments on the article, mostly saying that the article was for Ubuntu instead of GNU/Linux. It can be very easy to think that this article sucks because of the important amount of negative feedback. But hey, wait. You said, it hitted digg.com front page, right?<br />
So, despite the negative comments, more than 700 people digged this article, which is definitely not a bad deal!</p>
<h4>Negative comments on your blog shows that you respect your readers and their thoughts</h4>
<p>Some blog owners delete negative comments. Sure, negative comments aren&#8217;t flattering, but well, if you provide a way for your readers to express their views about your article, you should respect their right to criticize.<br />
Not censoring negative comments shows that you respect your readers point of view and that you are an open-minded person. </p>
<h4>Negative comments can create a debate</h4>
<p>Debates are always a good thing for your blog: They encourages rss subscriptions, comments and can provide new backlinks.<br />
So, when someone left a negative comment, maybe another reader will respond, and a new debate will start, which is good for your blog.</p>
<h4>Negative comments don&#8217;t devalue your blog</h4>
<p>When I was younger, I use to think that a negative comment can influence other people. But people have their own advice about things. If I find a very cool blog post, I&#8217;ll leave a comment saying I loved it, nevermind if 1, 5 or even 10 peoples left negatives comments.<br />
<img src="http://www.catswhoblog.com/wp-content/uploads/2009/10/criticism.png" alt="" /></p>
<h4>Negative comments are&#8230;content</h4>
<p>That&#8217;s simple as that. A comment is content and there&#8217;s nothing better for seo than content.</p>
<h4>Only the unknown aren&#8217;t criticized</h4>
<p>Think about Microsoft: If you google the term <em>Fuck Microsoft</em>, you&#8217;ll get 418.000 results. That&#8217;s really a lot of people who doesn&#8217;t like them. But they&#8217;re also being criticized a lot because it&#8217;s a very big company and everyone knows Microsoft, even my grandmother.<br />
As a blog grows, it become more and more exposed to negative feedback. Negative feedback is definitely a good indication of growth. </p>
<h4>What about you?</h4>
<p>And you, what&#8217;s your thoughts on negative blog comments? Do you hate it, or do you think it&#8217;s a great way to improve your blog general quality? Let&#8217;s talk about it. </p>
<img src="http://feeds.feedburner.com/~r/catswhoblog/~4/lA0iTM5Wpk8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.catswhoblog.com/8-reasons-why-negative-comments-are-good-for-your-blog/feed</wfw:commentRss>
		<slash:comments>40</slash:comments>
		<feedburner:origLink>http://www.catswhoblog.com/8-reasons-why-negative-comments-are-good-for-your-blog</feedburner:origLink></item>
	</channel>
</rss>
