<?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>CatsWhoCode.com</title>
	
	<link>http://www.catswhocode.com/blog</link>
	<description>BloggingCodingAndEvenMore</description>
	<lastBuildDate>Wed, 11 Nov 2009 23:37:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</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" href="http://feeds.feedburner.com/Catswhocode" type="application/rss+xml" /><feedburner:emailServiceId>Catswhocode</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Animated background image with jQuery</title>
		<link>http://feedproxy.google.com/~r/Catswhocode/~3/3yvP11xVbIk/animated-background-image-with-jquery</link>
		<comments>http://www.catswhocode.com/blog/animated-background-image-with-jquery#comments</comments>
		<pubDate>Wed, 11 Nov 2009 22:05:22 +0000</pubDate>
		<dc:creator>Jean-Baptiste Jung</dc:creator>
				<category><![CDATA[Web development]]></category>

		<guid isPermaLink="false">http://www.catswhocode.com/blog/?p=2814</guid>
		<description><![CDATA[If you're used to work with the jQuery library, there's no doubt that you know how powerful it is. In this tutorial, we are going to create a basic web page layout which include a super cool animated background image, using jQuery.<p><em>Get 20% off on the <a href="http://www.wprecipes.com/myhomepro.html">MyHomePro Premium WordPress Theme</a> by using this exclusive code: <strong>wpcats20</strong>.</em><br/><br/><a href="http://www.catswhocode.com/blog/animated-background-image-with-jquery">Animated background image with jQuery</a></p>
]]></description>
			<content:encoded><![CDATA[<h2>Getting ready</h2>
<p>In this tutorial, we are going to create a simple layout for a website, which include a very cool animated background. Here is how the final result will look:<br />
<a href="http://codingkitty.com/demo/animated-background/"><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/11/animated-background.jpg" alt="" /></a><br />
As you can see, as this is only I example I have used Twitter clouds backgrounds, which looks really nice.<br />
<strong>This tutorial have been inspired by the one called <a href="http://www.devirtuoso.com/2009/07/how-to-build-an-animated-header-in-jquery/" target="blank">How To Build an Animated Header in jQuery</a> that I definitely recommend you to check out.</strong></p>
<h2>Let's doing it</h2>
<p><strong>1.</strong> The first step of this tutorial is to download our background image. I have used <a href="http://a3.twimg.com/a/1257465343/images/bg-clouds.png">this one</a> from Twitter, but of course feel free to use any other image you'd like.</p>
<p><strong>2.</strong> Once done, let's create a a file called <em>index.html</em>. In order to get started with the basic html structure, paste the following code in your file:</p>
<pre>
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;
&lt;html&gt;
	&lt;head&gt;
		&lt;meta http-equiv=&quot;Content-type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;
		&lt;title&gt;Animated background Image&lt;/title&gt;
	&lt;/head&gt;

	&lt;body&gt;
	&lt;/body&gt;
&lt;/html&gt;
</pre>
<p><strong>3.</strong> Now, let's define our document structure. As we want to do a simple layout, we'll only need to create a header and a content. Paste the following within the <em>&lt;body&gt;</em> and <em>&lt;/body&gt;</em> tags:</p>
<pre>
&lt;div id=&quot;container&quot;&gt;
	&lt;div id=&quot;header&quot;&gt;
		&lt;h1&gt;Animated Background Image&lt;/h1&gt;
	&lt;/div&gt;&lt;!-- #header --&gt;

	&lt;div id=&quot;content&quot;&gt;
		&lt;!-- Your content will go here --&gt;
	&lt;/div&gt;&lt;!-- #content --&gt;
&lt;/div&gt;&lt;!-- #container --&gt;
</pre>
<p><strong>4.</strong> Well done! We already have our XHTML. Now, what we have to do is obviously to use some CSS and give some style to our document.<br />
To do so, copy the code below and paste it within the <em>&lt;head&gt;</em> and <em>&lt;head&gt;</em> tags of the <em>index.html</em> file.</p>
<pre>
&lt;style type=&quot;text/css&quot; media=&quot;screen&quot;&gt;
	body{
		background-color: #C0DEED;
		margin:0;
		padding:0;
	}

	#header{
		height:180px;
		background: #8EC1DA url(bg-clouds.png) repeat-y scroll left top;
		text-align:center;
		margin-top:-30px;
	}

	#header h1{
		padding-top:35px;
		font-family: &quot;Myriad Pro&quot;, Helvetica, Arial, sans-serif;
		color:white;
		font-size:45px;
	}

	#content{
		background-color:#fff;
		height:500px;
		width:980px;
		margin:25px auto 0 auto;
		-moz-border-radius:10px;
		-webkit-border-radius:10px;
	}
&lt;/style&gt;
</pre>
<p><strong>5.</strong> At this point, you can save your work and take a look at the index.html page using your web browser. If everything is ok, your index.html page should looks like the screenshot above, with fixed clouds, of course.</p>
<p><strong>6.</strong> Now, it's time to give life to the layout by using the power of jQuery. As you probably guessed it, what we have to do right now is of course, to include the library. As Google host a version that you can use it, there's definitely no need to download a copy. Just use the one from Google.</p>
<p>To do so, paste the following line of code in your <em>index.html</em> file, after the closing &lt;/body&gt; tag:</p>
<pre>
&lt;script src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js&quot; type=&quot;text/javascript&quot; charset=&quot;utf-8&quot;&gt;&lt;/script&gt;
</pre>
<p><strong>7.</strong> Now that jQuery have been loaded, we can code a function to animate the background. Copy the code below and paste it on your index.html file, just after the line where you imported jQuery into the file. </p>
<pre>
&lt;script type=&quot;text/javascript&quot; charset=&quot;utf-8&quot;&gt;
	var scrollSpeed = 70;
	var step = 1;
	var current = 0;
	var imageWidth = 2247;
	var headerWidth = 800;		

	var restartPosition = -(imageWidth - headerWidth);

	function scrollBg(){
		current -= step;
		if (current == restartPosition){
			current = 0;
		}

		$('#header').css(&quot;background-position&quot;,current+&quot;px 0&quot;);
	}

	var init = setInterval(&quot;scrollBg()&quot;, scrollSpeed);
&lt;/script&gt;
</pre>
<p>There's nothing really hard with that code. First, we declare a set of variables to control the animation (image width, scroll speed, etc). Then, we created a function to automatically move the background. The most tricky part is to calculate when we need to reste the position. If you have a better idea about doing it, let me know in a comment <img src='http://www.catswhocode.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<h2>Demo &#038; Download</h2>
<p>I hope you enjoyed this tutorial and that it will help you to create very nice websites. If you want, you can see a <a href="http://codingkitty.com/demo/animated-background/">Demo</a> of this code, or you can <a href="http://www.catswhocode.com/blog/wp-content/uploads/2009/11/animated-background-image.zip">Download</a> source files.</p>
<p><em>Get 20% off on the <a href="http://www.wprecipes.com/myhomepro.html">MyHomePro Premium WordPress Theme</a> by using this exclusive code: <strong>wpcats20</strong>.</em><br/><br/><a href="http://www.catswhocode.com/blog/animated-background-image-with-jquery">Animated background image with jQuery</a></p>
<img src="http://feeds.feedburner.com/~r/Catswhocode/~4/3yvP11xVbIk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.catswhocode.com/blog/animated-background-image-with-jquery/feed</wfw:commentRss>
		<slash:comments>22</slash:comments>
		<feedburner:origLink>http://www.catswhocode.com/blog/animated-background-image-with-jquery</feedburner:origLink></item>
		<item>
		<title>Introducing CatsWhoBlog.com</title>
		<link>http://feedproxy.google.com/~r/Catswhocode/~3/s_JGjAAwIpY/introducing-catswhoblog-com</link>
		<comments>http://www.catswhocode.com/blog/introducing-catswhoblog-com#comments</comments>
		<pubDate>Mon, 09 Nov 2009 14:59:29 +0000</pubDate>
		<dc:creator>Jean-Baptiste Jung</dc:creator>
				<category><![CDATA[Blogging Tips]]></category>

		<guid isPermaLink="false">http://www.catswhocode.com/blog/?p=2834</guid>
		<description><![CDATA[Almost one year after successfully launching WpRecipes.com, I am extremely happy to introduce you my new blog, 100% dedicated to blogging tips and named <a href="http://www.catswhoblog.com" target="blank">CatsWhoBlog.com</a>.<p><em>Get 20% off on the <a href="http://www.wprecipes.com/myhomepro.html">MyHomePro Premium WordPress Theme</a> by using this exclusive code: <strong>wpcats20</strong>.</em><br/><br/><a href="http://www.catswhocode.com/blog/introducing-catswhoblog-com">Introducing CatsWhoBlog.com</a></p>
]]></description>
			<content:encoded><![CDATA[<h2>A new blog? Why?</h2>
<p>When I launched Cats Who Code in June 2008, there was a "Blogging Tips" category, in which I posted some posts about affiliate marketing, blogging advice and making money online tips.<br />
Even we had some really nice articles in there, Cats Who Code is mostly a Web Development blog and most of my readers are more interested in stuff as such as jQuery or WordPress than how to make some money with affiliate marketing.</p>
<p>This is why CWC "Blogging Tips" category quickly became neglected and just a few posts were written. Though, I really like that kind of tip and I also thought that my experience as a blogger could benefit some people. This is why, on October 10, 2009, I decided to create a "sister-site" to Cats Who Code with a content dedicated to blogging tips. <a href="http://www.catswhoblog.com">Cats Who Blog</a> were born.<br />
<a href="http://www.catswhoblog.com"><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/11/Image-5.jpg" lat="" /></a><br />
As a part of my blogs network, Cats Who Blog features my cat Fisto. The drawning was made by <a href="http://www.greenbubbles.org.ua" target="blank">Zira Zulu</a>, who had created mascots for Cats Who Code and WpRecipes as well.</p>
<h2>What you're going to read on Cats Who Blog.com</h2>
<p>Cats Who Blog mades its debut a month ago, so I already have some nice articles for you to read. Here a selection:</p>
<ul>
<li><a href="http://www.catswhoblog.com/how-to-write-a-great-blog-post-title" target="blank">How to write a great blog post title</a></li>
<li><a href="http://www.catswhoblog.com/how-to-manage-multiple-blogs-efficiently" target="blank">How to manage multiple blogs efficiently</a></li>
<li><a href="http://www.catswhoblog.com/20-blogs-that-use-the-comment-luv-plugin" target="blank">20+ blogs that use the Comment Luv plugin</a></li>
<li><a href="http://www.catswhoblog.com/7-essential-things-to-do-to-protect-your-name-and-branding" target="blank">7 essential things to do to protect your name and branding</a></li>
<li><a href="http://www.catswhoblog.com/how-to-display-adsense-ads-only-when-you-want-to" target="blank">How to display Adsense ads only when you want to</a></li>
<li><a href="http://www.catswhoblog.com/10-professional-wordpress-themes-to-start-your-online-business" target="blank">10 professional WordPress themes to start your online business</a></li>
<li><a href="http://www.catswhoblog.com/talking-about-success-7-questions-to-pavel-ciorici-of-wpzoom" target="blank">Talking about success : 7 questions to Pavel Ciorici of WpZoom</a></li>
<li><a href="http://www.catswhoblog.com/how-i-made-delicious-com-front-page-one-week-after-launching-my-blog" target="blank">How I made delicious.com front page one week after launching my blog</a></li>
<li><a href="http://www.catswhoblog.com/top-10-wordpress-plugins-to-monetize-your-blog" target="blank">Top 10 WordPress plugins to monetize your blog</a></li>
</ul>
<p><strong>Also, please note that I just published a great post about <a href="http://www.catswhoblog.com/10-wordpress-hacks-to-make-more-money-online">10 WordPress hacks to make more money online</a>.</strong></p>
<p>Now, what about the existing "Blogging Tips" category on Cats Who Code? As I now have a blog fully dedicated to that subject, this category will be closed. Existing posts will be moved to Cats Who Blog, or deleted when their quality isn't good enought in my opinion.<br />
Of course, my readers opinion matters so don't hesitate to let me know about what you think.</p>
<p>Now, it should be time for you to go to <a href="http://www.catswhoblog.com">Cats Who Blog</a> and discover it. Or you can already <a href="http://feeds.feedburner.com/catswhoblog">grab the RSS feed</a> so you'll never miss any of my posts there.<br />
And don't worry, a very cool Web Development tutorial will be published right here on Cats Who Code on wednesday!</p>
<p><em>Get 20% off on the <a href="http://www.wprecipes.com/myhomepro.html">MyHomePro Premium WordPress Theme</a> by using this exclusive code: <strong>wpcats20</strong>.</em><br/><br/><a href="http://www.catswhocode.com/blog/introducing-catswhoblog-com">Introducing CatsWhoBlog.com</a></p>
<img src="http://feeds.feedburner.com/~r/Catswhocode/~4/s_JGjAAwIpY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.catswhocode.com/blog/introducing-catswhoblog-com/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		<feedburner:origLink>http://www.catswhocode.com/blog/introducing-catswhoblog-com</feedburner:origLink></item>
		<item>
		<title>CWC Freebie : Bulletin Board WordPress Theme</title>
		<link>http://feedproxy.google.com/~r/Catswhocode/~3/sW-JMH0mAeY/cwc-freebie-bulletin-board-wordpress-theme</link>
		<comments>http://www.catswhocode.com/blog/cwc-freebie-bulletin-board-wordpress-theme#comments</comments>
		<pubDate>Thu, 05 Nov 2009 15:17:48 +0000</pubDate>
		<dc:creator>Jean-Baptiste Jung</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.catswhocode.com/blog/?p=2801</guid>
		<description><![CDATA[Especially created for Cats Who Code's readers,  this Wordpress theme will definitely make your personal blog be an eye catcher. Enjoy this latest Wordpress theme designed by our friends from TemplateLite!<p><em>Get 20% off on the <a href="http://www.wprecipes.com/myhomepro.html">MyHomePro Premium WordPress Theme</a> by using this exclusive code: <strong>wpcats20</strong>.</em><br/><br/><a href="http://www.catswhocode.com/blog/cwc-freebie-bulletin-board-wordpress-theme">CWC Freebie : Bulletin Board WordPress Theme</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Today, I'm glad to present to you a nice WordPress theme called Bulletin Board, which is released officially just moment ago!<br />
<img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/11/screenshot.jpg"></p>
<p>When Brian from <a href="http://www.templatelite.com/">TemplateLite</a> contacted me and offered to release this theme for my readers, I accepted it with pleasure. Discover what you will get from  this theme below or <a href="http://www.templatelite.com/download/dl.php?theme=28">download the theme</a> now. </p>
<h3>Main Features</h3>
<p><strong>Quick Installation</strong><br />
Brian's themes are very easy to install for even a newbie. No exception for this one. Installation is done with just a few clicks. You don't need to install any plugins to make it work on your blog.</p>
<p><strong>Cross Browser Compatibility</strong><br />
This theme is tested for  major browsers including Firefox, IE7, IE8, Chrome, Safari and Opera.</p>
<p><strong>Code Compliant</strong><br />
High coding standard is applied for this theme. Try validate the theme against W3C XHTML and CSS and you'll see it passes both tests.</p>
<p><strong>SEO </strong><br />
This theme has been optimized for SEO. Besides W3C compliance which is important in search ranking, the title tag, heading tag and the content coding placement are coded with SEO in mind. Other things being equal, using this theme will get your blog ranked higher on search engines compare to other themes. </p>
<p><strong>Theme Documentation</strong><br />
One of the good thing about this theme is that it includes a user guide in PDF format. You'll find information regarding installation instruction, header title customization, main features and theme upgrade<br />
etc.</p>
<h3>Award Winning </h3>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/11/award.jpg" alt="" style="float:left;"/>ThemeGrade, a site which rates WordPress themes, gave this theme with the highest Gold rating. It gets full score in general coding as well as SEO. Less than 5% of the themes tested get this top ranking. You can verify the status on <a href="http://www.themegrade.com/bulletin-board-theme/">ThemGrade</a>.</p>
<h3>Free Forum Support</h3>
<p>If you encounter any problem with the theme, Brian would be happy to help. His commitment in ensuring his theme work flawlessly on your blog is shown in the recently setup support forum. Previously, the theme support was performed in the comment sections.</p>
<p><a href="http://www.templatelite.com/download/dl.php?theme=28">Download Theme</a> | <a href="http://www.templatelite.com/download/preview.php?theme=28" target="blank">Preview Theme</a></p>
<p><em>I have heard only positive things about  TemplateLite's Wordpress themes. And you, have you tried it yet? Your opinions are welcome.</em></p>
<p><em>Get 20% off on the <a href="http://www.wprecipes.com/myhomepro.html">MyHomePro Premium WordPress Theme</a> by using this exclusive code: <strong>wpcats20</strong>.</em><br/><br/><a href="http://www.catswhocode.com/blog/cwc-freebie-bulletin-board-wordpress-theme">CWC Freebie : Bulletin Board WordPress Theme</a></p>
<img src="http://feeds.feedburner.com/~r/Catswhocode/~4/sW-JMH0mAeY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.catswhocode.com/blog/cwc-freebie-bulletin-board-wordpress-theme/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		<feedburner:origLink>http://www.catswhocode.com/blog/cwc-freebie-bulletin-board-wordpress-theme</feedburner:origLink></item>
		<item>
		<title>Top 10 WordPress Hacks from October 2009</title>
		<link>http://feedproxy.google.com/~r/Catswhocode/~3/d1LGRSddDI8/top-10-wordpress-hacks-from-october-2009</link>
		<comments>http://www.catswhocode.com/blog/top-10-wordpress-hacks-from-october-2009#comments</comments>
		<pubDate>Mon, 02 Nov 2009 15:41:48 +0000</pubDate>
		<dc:creator>Jean-Baptiste Jung</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.catswhocode.com/blog/?p=2784</guid>
		<description><![CDATA[I know most of your loves to discover WordPress hacks, and this is why I'm pretty sure that you'll definitely love this article. I have compiled the most useful and awesome WordPress hacks that were released past month. Enjoy!<p><em>Get 20% off on the <a href="http://www.wprecipes.com/myhomepro.html">MyHomePro Premium WordPress Theme</a> by using this exclusive code: <strong>wpcats20</strong>.</em><br/><br/><a href="http://www.catswhocode.com/blog/top-10-wordpress-hacks-from-october-2009">Top 10 WordPress Hacks from October 2009</a></p>
]]></description>
			<content:encoded><![CDATA[<h2>How to: Show parent page title regardless of what subpage you are on</h2>
<p>Let's start with a nice code for those using WordPress as a CMS: Just paste it anywhere on your theme files and it will display the parent page title.</p>
<pre>
&lt;?php
if($post-&gt;post_parent) {
    $parent_title = get_the_title($post-&gt;post_parent);
    echo $parent_title;
} else {
    wp_title('');
}
?&gt;
</pre>
<p><strong>&raquo;&nbsp;Source: <a href="http://www.wprecipes.com/how-to-show-parent-page-title-regardless-of-what-subpage-you-are-on" target="blank">http://www.wprecipes.com/how-to-show-parent-page-title-regardless-of-what-subpage-you-are-on</a></strong><br />
<br/><br/></p>
<h2>WordPress hack: Automatically insert author bio on each post</h2>
<p>When you're owning a multi-writers blog, it is important to show who wrote the post. In case of guest bloggers, it is also a nice way to give credit.<br />
Simply insert the following lines of code into your <em>functions.php</em> file, and that's all. Author bio will be automatically displayed after each post. </p>
<pre>
function get_author_bio ($content=''){
    global $post;

    $post_author_name=get_the_author_meta(&quot;display_name&quot;);
    $post_author_description=get_the_author_meta(&quot;description&quot;);
    $html=&quot;&lt;div class='clearfix' id='about_author'&gt;\n&quot;;
    $html.=&quot;&lt;img width='80' height='80' class='avatar' src='http://www.gravatar.com/avatar.php?gravatar_id=&quot;.md5(get_the_author_email()). &quot;&amp;default=&quot;.urlencode($GLOBALS['defaultgravatar']).&quot;&amp;size=80&amp;r=PG' alt='PG'/&gt;\n&quot;;
    $html.=&quot;&lt;div class='author_text'&gt;\n&quot;;
    $html.=&quot;&lt;h4&gt;Author: &lt;span&gt;&quot;.$post_author_name.&quot;&lt;/span&gt;&lt;/h4&gt;\n&quot;;
    $html.= $post_author_description.&quot;\n&quot;;
    $html.=&quot;&lt;/div&gt;\n&quot;;
    $html.=&quot;&lt;div class='clear'&gt;&lt;/div&gt;\n&quot;;
    $content .= $html;
    }

    return $content;
}

add_filter('the_content', 'get_author_bio');
</pre>
<p><strong>&raquo;&nbsp;Source: <a href="http://aext.net/2009/10/wordpress-hack-anything-can-be-added-anywhere-in-the-post-content/" target="blank">http://aext.net/2009/10/wordpress-hack-anything-can-be-added-anywhere-in-the-post-content/</a></strong><br />
<br/><br/></p>
<h2>Compress WordPress output and speed your blog’s load speed</h2>
<p>Is your host slow? Althought on <a href="http://www.catswhocode.com/blog/wpwebhost.html">WpWebHost</a> we don't have that kind of problems, if you're hosted elsewhere you'll probably enjoy this tip who can reduce your blog load speed.</p>
<p>After you made sure that the zlib php extension is enabled by your hosting provider, place the following code in your header (above the DOCTYPE), save the file and your blog will load faster.</p>
<pre>
&lt;?php
ini_set('zlib.output_compression', 'On');
ini_set('zlib.output_compression_level', '1');
?&gt;
</pre>
<p><strong>&raquo;&nbsp;Source: <a href="http://www.wprecipes.com/compress-wordpress-output-and-speed-your-blogs-load-speed" target="blank">http://www.wprecipes.com/compress-wordpress-output-and-speed-your-blogs-load-speed</a></strong><br />
<br/><br/></p>
<h2>Display registered users comment count on your WordPress blog</h2>
<p>If your blog is private or have lots of registered users, it may be interesting to be able to display the number of comments posted by registered users. Just paste this code and the count will be displayed where you pasted it.</p>
<pre>
&lt;?php
global $wpdb;
$where = 'WHERE comment_approved = 1 AND user_id &lt;&gt; 0';
$comment_counts = (array) $wpdb-&gt;get_results(&quot;
		SELECT user_id, COUNT( * ) AS total
		FROM {$wpdb-&gt;comments}
		{$where}
		GROUP BY user_id
	&quot;, object);
foreach ( $comment_counts as $count ) {
  $user = get_userdata($count-&gt;user_id);
  echo 'User ' . $user-&gt;display_name . ' comment count is ' . $count-&gt;total . '
';
}
?&gt;
</pre>
<p><strong>&raquo;&nbsp;Source: <a href="http://www.wprecipes.com/display-registered-users-comment-count-on-your-wordpress-blog" target="blank">http://www.wprecipes.com/display-registered-users-comment-count-on-your-wordpress-blog</a></strong><br />
<br/><br/></p>
<h2>Automatically resize pictures on your WordPress blog</h2>
<p>You know it, a picture is worth a thousand words. But pictures means that you have to resize it, which is alwyas boring.<br />
Happilly, a very cool script called TimThumb can resize pictures for you. The function below create a WordPress shortcode that will make Timthumb use even easier.</p>
<pre>
function imageresizer( $atts, $content = null ) {
	return '&lt;img src="/timthumb/timthumb.php?src='.$content.'&amp;w=590" alt="" /&gt;';
}

add_shortcode('img', 'imageresizer');</pre>
<p>Then, you can use the following syntax to add an automatically resized image to your blog post:</p>
<pre>[img]http://www.yoursite.com/yourimage.jpg[/img]</pre>
<p><strong>&raquo;&nbsp;Source: <a href="http://www.wprecipes.com/automatically-resize-pictures-on-your-wordpress-blog" target="blank">http://www.wprecipes.com/automatically-resize-pictures-on-your-wordpress-blog</a></strong><br />
<br/><br/></p>
<h2>WordPress tip: Create a Tweetmeme “Retweeet” shortcode</h2>
<p>Twitter is one of the best way to get quality traffic to your blog. In order to help people sharing your articles on Twitter, you should definitely implement a Tweetmeme button, which display how many time time people RT'd your blog posts.<br />
Just paste the function below into your <em>functions.php</em> file.</p>
<pre>
function tweetmeme(){
	return '&lt;div class=&quot;tweetmeme&quot;&gt;&lt;script type=&quot;text/javascript&quot; src=&quot;http://tweetmeme.com/i/scripts/button.js&quot;&gt;&lt;/script&gt;&lt;/div&gt;';
}
add_shortcode('tweet', 'tweetmeme');
</pre>
<p>Once you saved the file, you'll be able to display the Tweetmeme "retweet" button anywhere on your posts. In WordPress editor, make sure you are in HTML mode and insert the following:</p>
<pre>[tweet]</pre>
<p>When your post will be published, the shortcode will be replaced by the TweetMeme button.<br />
For a "Live Demo" of this tip, just take a look at my new blog <a href="http://www.catswhoblog.com">Cats Who Blog</a>, dedicated to blogging/make money online tips.<br />
<strong>&raquo;&nbsp;Source: <a href="http://www.wprecipes.com/wordpress-tip-create-a-tweetmeme-retweeet-shortcode" target="blank">http://www.wprecipes.com/wordpress-tip-create-a-tweetmeme-retweeet-shortcode</a></strong><br />
<br/><br/></p>
<h2>WordPress trick: function to get tags related to category</h2>
<p>Do you ever wanted to be able to get tags related to one (or more) specific category? If yes, I’m pretty sure you’ll be delighted with this very cool tip.<br />
First, here is the function you have to paste in your <em>functions.php</em> file:</p>
<pre>
function get_category_tags($args) {
	global $wpdb;
	$tags = $wpdb-&gt;get_results
	(&quot;
		SELECT DISTINCT terms2.term_id as tag_id, terms2.name as tag_name, null as tag_link
		FROM
			wp_posts as p1
			LEFT JOIN wp_term_relationships as r1 ON p1.ID = r1.object_ID
			LEFT JOIN wp_term_taxonomy as t1 ON r1.term_taxonomy_id = t1.term_taxonomy_id
			LEFT JOIN wp_terms as terms1 ON t1.term_id = terms1.term_id,

			wp_posts as p2
			LEFT JOIN wp_term_relationships as r2 ON p2.ID = r2.object_ID
			LEFT JOIN wp_term_taxonomy as t2 ON r2.term_taxonomy_id = t2.term_taxonomy_id
			LEFT JOIN wp_terms as terms2 ON t2.term_id = terms2.term_id
		WHERE
			t1.taxonomy = 'category' AND p1.post_status = 'publish' AND terms1.term_id IN (&quot;.$args['categories'].&quot;) AND
			t2.taxonomy = 'post_tag' AND p2.post_status = 'publish'
			AND p1.ID = p2.ID
		ORDER by tag_name
	&quot;);
	$count = 0;
	foreach ($tags as $tag) {
		$tags[$count]-&gt;tag_link = get_tag_link($tag-&gt;tag_id);
		$count++;
	}
	return $tags;
}</pre>
<p>Once you have pasted the function, you can use it in your theme:</p>
<pre>
$args = array('categories' => '12,13,14');
$tags = get_category_tags($args);
</pre>
<p><strong>&raquo;&nbsp;Source: <a href="http://www.wprecipes.com/wordpress-trick-function-to-get-tags-related-to-category" target="blank">http://www.wprecipes.com/wordpress-trick-function-to-get-tags-related-to-category</a></strong><br />
<br/><br/></p>
<h2>WordPress tip: Get all custom fields from a page or a post</h2>
<p>Do you ever wanted to be able to get all custom fields from a specific post or page? If yes, let's start by pasting the following code in your <em>functions.php</em> file: </p>
<pre>
function all_my_customs($id = 0){
    //if we want to run this function on a page of our choosing them the next section is skipped.
    //if not it grabs the ID of the current page and uses it from now on.
    if ($id == 0) :
        global $wp_query;
        $content_array = $wp_query-&amp;gt;get_queried_object();
        $id = $content_array-&amp;gt;ID;
    endif;   

    //knocks the first 3 elements off the array as they are WP entries and i dont want them.
    $first_array = array_slice(get_post_custom_keys($id), 3);

    //first loop puts everything into an array, but its badly composed
    foreach ($first_array as $key =&amp;gt; $value) :
           $second_array[$value] =  get_post_meta($id, $value, FALSE);

            //so the second loop puts the data into a associative array
            foreach($second_array as $second_key =&amp;gt; $second_value) :
                       $result[$second_key] = $second_value[0];
            endforeach;
     endforeach;

    //and returns the array.
    return $result;
}
</pre>
<p>Once done, you can use the function like this:</p>
<pre>
$result = all_my_customs();
echo $result['my_meta_key'];
</pre>
<p><strong>&raquo;&nbsp;Source: <a href="http://www.wprecipes.com/wordpress-tip-get-all-custom-fields-from-a-page-or-a-post" target="blank">http://www.wprecipes.com/wordpress-tip-get-all-custom-fields-from-a-page-or-a-post</a></strong><br />
<br/><br/></p>
<h2>Check if a plugin is active</h2>
<p>If you want to check if a WordPress plugin is active, just use the <em>is_plugin_active()</em> function. The function takes a single parameter, which is the path to the plugin, as shown in the example below:</p>
<pre>
&lt;?php
if (is_plugin_active('plugin-directory/plugin-file.php')) {
    //plugin is activated
}
?&gt;
</pre>
<p><strong>&raquo;&nbsp;Source: <a href="http://www.wprecipes.com/check-if-a-wordpress-plugin-is-active-the-easy-way" target="blank">http://www.wprecipes.com/check-if-a-wordpress-plugin-is-active-the-easy-way</a></strong><br />
<br/><br/></p>
<h2>Create an Anti-IE6 plugin</h2>
<p>With this amazing code created by Nathan Rice, you'll be able to serve IE6 users the default WordPress theme. After all, those idiots don't deserve anything better <img src='http://www.catswhocode.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /><br />
Just paste the following in a new file and save it as ie6.php. Upload it to your wp-content/plugins directory and activate it on your WordPress dashboard.<br />
By the way, if you hate IE6 just like I do, you should definitely check out <a href="http://www.catswhocode.com/blog/15-amazing-anti-ie-resources">this very funny article</a>.</p>
<pre>&lt;?php
/*
Plugin Name: Serve Default to IE6
Plugin URI: http://www.nathanrice.net/blog/serve-ie6-visitors-the-default-wordpress-theme
Description: This plugin will serve the default theme to any visitors using IE6.
Author: Nathan Rice
Author URI: http://www.nathanrice.net/
Version: 1.0
*/

add_filter('template', 'serve_default_to_iesix');
add_filter('option_template', 'serve_default_to_iesix');
add_filter('option_stylesheet', 'serve_default_to_iesix');
function serve_default_to_iesix($theme) {
	if(strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE 6') !== false)
		$theme = 'default';

	return $theme;
}
?&gt;</pre>
<p><strong>&raquo;&nbsp;Source: <a href="http://www.nathanrice.net/blog/serve-ie6-visitors-the-default-wordpress-theme/" target="blank">http://www.nathanrice.net/blog/serve-ie6-visitors-the-default-wordpress-theme/</a></strong></p>
<p><em>Get 20% off on the <a href="http://www.wprecipes.com/myhomepro.html">MyHomePro Premium WordPress Theme</a> by using this exclusive code: <strong>wpcats20</strong>.</em><br/><br/><a href="http://www.catswhocode.com/blog/top-10-wordpress-hacks-from-october-2009">Top 10 WordPress Hacks from October 2009</a></p>
<img src="http://feeds.feedburner.com/~r/Catswhocode/~4/d1LGRSddDI8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.catswhocode.com/blog/top-10-wordpress-hacks-from-october-2009/feed</wfw:commentRss>
		<slash:comments>22</slash:comments>
		<feedburner:origLink>http://www.catswhocode.com/blog/top-10-wordpress-hacks-from-october-2009</feedburner:origLink></item>
		<item>
		<title>10+ astonishing jQuery resources to spice up your website</title>
		<link>http://feedproxy.google.com/~r/Catswhocode/~3/fGr8S2KN6t4/10-astonishing-jquery-resources-to-spice-up-your-website</link>
		<comments>http://www.catswhocode.com/blog/10-astonishing-jquery-resources-to-spice-up-your-website#comments</comments>
		<pubDate>Mon, 19 Oct 2009 14:17:09 +0000</pubDate>
		<dc:creator>Jean-Baptiste Jung</dc:creator>
				<category><![CDATA[Web development]]></category>

		<guid isPermaLink="false">http://www.catswhocode.com/blog/?p=1688</guid>
		<description><![CDATA[jQuery is a very powerful Javascript framework that allow you to built functionnal and extremely good looking webistes. In this article, I have selected 10+ jQuery resources to spice up your website.<p><em>Get 20% off on the <a href="http://www.wprecipes.com/myhomepro.html">MyHomePro Premium WordPress Theme</a> by using this exclusive code: <strong>wpcats20</strong>.</em><br/><br/><a href="http://www.catswhocode.com/blog/10-astonishing-jquery-resources-to-spice-up-your-website">10+ astonishing jQuery resources to spice up your website</a></p>
]]></description>
			<content:encoded><![CDATA[<h2>Show/Hide a nice login panel</h2>
<p>If your website allow user registration, it should definitely a good idea to implement this very nice sliding login form. Of course, it can be used for many other things, as such as a contact form.<br />
<img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/10/slide-panel-jquery.jpg" alt="" class="outline" /><br />
<strong>&raquo;&nbsp;<a href="http://web-kreation.com/index.php/tutorials/nice-clean-sliding-login-panel-built-with-jquery/" target="blank">View tutorial</a></strong><br/><br/></p>
<h2>Easy Display Switch with CSS and jQuery</h2>
<p>Some people prefers to read a list of blog exerpts in lines, so other prefers a column display. With this tutorial you'll learn how to create a jQuery display switch so your readers will be able to choose their favorite display.<br />
<img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/10/switch-view.jpg" alt="" class="outline" /><br />
<strong>&raquo;&nbsp;<a href="http://designm.ag/tutorials/jquery-display-switch/" target="blank">View tutorial</a></strong><br/><br/></p>
<h2>Create a better jQuery stylesheet switcher</h2>
<p>The purpose of this tutorial is to learn how to create a jQuery CSS switcher and let your visitor decide in what color scheme your site should be.<br />
<img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/10/css-style-switcher.jpg" alt="" class="outline" /><br />
<strong>&raquo;&nbsp;<a href="http://www.marcofolio.net/webdesign/create_a_better_jquery_stylesheet_switcher.html" target="blank">View tutorial</a></strong><br/><br/></p>
<h2>Turn any webform into a powerful wizard with jQuery</h2>
<p>Most of the time, Web forms are long and boring. So, what about turning them into wizards? Don't forget to check out our list of <a href="http://www.catswhocode.com/blog/10-jquery-tutorials-for-working-with-html-forms">jQuery tutorials to work with HTML forms</a>.<br />
<img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/10/jquery-wizard.jpg" alt="" class="outline" /><br />
<strong>&raquo;&nbsp;<a href="http://www.jankoatwarpspeed.com/post/2009/09/28/webform-wizard-jquery.aspx" target="blank">View tutorial</a></strong><br/><br/></p>
<h2>Chat with jQuery and PHP</h2>
<p>I remember the time that you had to create a Java Applet to have an efficient chat application. Now, thanks to PHP and of course jQuery, you can forget heavy and boring applets.<br />
<img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/10/jquery-chat.jpg" alt="" class="outline" /><br />
<strong>&raquo;&nbsp;<a href="http://css-tricks.com/jquery-php-chat/" target="blank">View tutorial</a></strong><br/><br/></p>
<h2>Beautiful tag clouds with jQuery and flir</h2>
<p>Tag clouds used to be used intensively on lots of blogs two or three years ago. But nowadays, most blogs don't use them anymore. If you also don't use tag clouds on your blog, maybe this tutorial will change your mind?<br />
<img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/10/beautiful-tag-cloud.jpg" alt="" class="outline" /><br />
<strong>&raquo;&nbsp;<a href="http://aext.net/2009/08/make-a-most-beautiful-tags-cloud-on-over-the-world-with-facelift-and-jquery/" target="blank">View tutorial</a></strong><br/><br/></p>
<h2>Fading colors with jQuery</h2>
<p>If you're looking for an interesting visual effect to put on your links, this one should be a good option. On their recent homepage redesign, Twitter used a similar effect on their homepage.<br />
<img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/10/fading-colors-jquery.jpg" alt="" class="outline" /><br />
<strong>&raquo;&nbsp;<a href="http://www.jankoatwarpspeed.com/post/2009/10/13/Fade-colors-jQuery.aspx" target="blank">View tutorial</a></strong><br/><br/></p>
<h2>Twitter-like login panel using jQuery</h2>
<p>Talking about Twitter and their recent site redesign, I might say I really like the login panel they added. With this excellent tutorial, you'll learn how to do the same for your website or blog.<br />
<img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/10/twitter-like-login-panel-jquery.jpg" alt="" class="outline" /><br />
<strong>&raquo;&nbsp;<a href="http://aext.net/2009/08/perfect-sign-in-dropdown-box-likes-twitter-with-jquery/" target="blank">View tutorial</a></strong><br/><br/></p>
<h2>Disappearing “Scroll to top” link with jQuery and CSS</h2>
<p>After you scrolled down a page, "Scroll to top" links are welcome. This tutorial will show you how to create a dynamic "Scroll To Top" link that will appear automatically when the page has been scrolled down.<br />
<img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/10/jquery-scroll-to-top.jpg" alt="" class="outline" /><br />
<strong>&raquo;&nbsp;<a href="http://briancray.com/2009/10/06/scroll-to-top-link-jquery-css/" target="blank">View tutorial</a></strong><br/><br/></p>
<h2>Using jQuery to recreate the product slider from Apple's website</h2>
<p>Ah, Apple website. Since their latest redesign, this site is often quoted by many blogs as being a must-see in terms of design and usuability. With this tutorial, you'll be able to reproduce Apple products slider, using jQuery.<br />
<img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/10/slider.jpg" alt="" class="outline" /><br />
<strong>&raquo;&nbsp;<a href="http://www.cherrysave.com/web-design/how-to-recreate-the-apple-product-slider-with-jquery/" target="blank">View tutorial</a></strong><br/><br/></p>
<h2>Create an astonishing image rotator with jQuery</h2>
<p>On many portfolios websites, javascripts sliders on homepage are now very common, this is why I hesitated to feature that one. But seriously, it may be common, it looks so great!<br />
<img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/10/jquery-image-rotator.jpg" alt="" class="outline" /><br />
<strong>&raquo;&nbsp;<a href="http://designm.ag/tutorials/image-rotator-css-jquery/" target="blank">View tutorial</a></strong><br/><br/></p>
<p><em>Get 20% off on the <a href="http://www.wprecipes.com/myhomepro.html">MyHomePro Premium WordPress Theme</a> by using this exclusive code: <strong>wpcats20</strong>.</em><br/><br/><a href="http://www.catswhocode.com/blog/10-astonishing-jquery-resources-to-spice-up-your-website">10+ astonishing jQuery resources to spice up your website</a></p>
<img src="http://feeds.feedburner.com/~r/Catswhocode/~4/fGr8S2KN6t4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.catswhocode.com/blog/10-astonishing-jquery-resources-to-spice-up-your-website/feed</wfw:commentRss>
		<slash:comments>43</slash:comments>
		<feedburner:origLink>http://www.catswhocode.com/blog/10-astonishing-jquery-resources-to-spice-up-your-website</feedburner:origLink></item>
		<item>
		<title>10 wonderful fonts you can embed with Cufon and Sifr</title>
		<link>http://feedproxy.google.com/~r/Catswhocode/~3/YQUYodO9IWc/10-wonderful-fonts-you-can-embed-with-cufon-and-sifr</link>
		<comments>http://www.catswhocode.com/blog/10-wonderful-fonts-you-can-embed-with-cufon-and-sifr#comments</comments>
		<pubDate>Mon, 12 Oct 2009 15:42:36 +0000</pubDate>
		<dc:creator>Jean-Baptiste Jung</dc:creator>
				<category><![CDATA[Web design]]></category>

		<guid isPermaLink="false">http://www.catswhocode.com/blog/?p=2728</guid>
		<description><![CDATA[Cufon, Sifr and Flir are very powerful tools for designers and developers: They allow you to embed any font in a web page. Though, you have to be careful with font licences. In this article, I'm going to show you 10 very good looking fonts that you can embed in your websites.<p><em>Get 20% off on the <a href="http://www.wprecipes.com/myhomepro.html">MyHomePro Premium WordPress Theme</a> by using this exclusive code: <strong>wpcats20</strong>.</em><br/><br/><a href="http://www.catswhocode.com/blog/10-wonderful-fonts-you-can-embed-with-cufon-and-sifr">10 wonderful fonts you can embed with Cufon and Sifr</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Scripts like sIFR, Flir, and of course Cufon made it easy for developers and designers to be able to use nice fonts as such as <em>Myriad Pro</em> or <em>Helvetica Neue</em> and since some month, we see more and more blogs or website with fancy titles.</p>
<p>This is clearly a great thing, because <em>web safe</em> fonts are extremely limitating. Though, there is a problem that many people seems to neglect: Lots of fonts licences – even free ones – doesn't allow  you to embed it on webpages, or redistribute it.</p>
<p>In this article, you'll find a showcase of ten absolutely beautiful fonts that you can embed fith <em>@font-face</em>, <em>Cufon</em>, <em>sIFR</em>, or <em>Flir</em>.</p>
<h2>Fertigo</h2>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/10/fertigo.gif" alt="" class="outline" /><br />
<strong>&raquo;&nbsp;<a href="http://www.josbuivenga.demon.nl/fertigo.html" target="blank">Get it</a></strong><br/><br/></p>
<h2>Delicious</h2>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/10/delicious.gif" alt="" class="outline" /><br />
<strong>&raquo;&nbsp;<a href="http://www.josbuivenga.demon.nl/delicious.html" target="blank">Get it</a></strong><br/><br/></p>
<h2>Tallys</h2>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/10/tallys.gif" alt="" class="outline" /><br />
<strong>&raquo;&nbsp;<a href="http://www.josbuivenga.demon.nl/tallys.html" target="blank">Get it</a></strong><br/><br/></p>
<h2>Museo Sans</h2>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/10/museosans.gif" alt="" class="outline" /><br />
<strong>&raquo;&nbsp;<a href="http://www.josbuivenga.demon.nl/museosans.html" target="blank">Get it</a></strong><br/><br/></p>
<h2>CA BND Bold WEB</h2>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/10/ca-bnd-bold.gif" alt="" class="outline" /><br />
<strong>&raquo;&nbsp;<a href="http://www.cape-arcona.com/start.php?link=bndboldweb&#038;typo=2" target="blank">Get it</a></strong><br/><br/></p>
<h2>League Gothic</h2>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/10/league-gothic.jpg" alt="" class="outline" /><br />
<strong>&raquo;&nbsp;<a href="http://www.theleagueofmoveabletype.com/fonts/7-league-gothic" target="blank">Get it</a></strong><br/><br/></p>
<h2>Chunk</h2>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/10/chunk.jpg" alt="" class="outline" /><br />
<strong>&raquo;&nbsp;<a href="http://www.theleagueofmoveabletype.com/fonts/4-chunk" target="blank">Get it</a></strong><br/><br/></p>
<h2>Flaminia Type System</h2>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/10/capra.jpg" alt="" class="outline" /><br />
<strong>&raquo;&nbsp;<a href="http://www.theleagueofmoveabletype.com/fonts/3-flaminia-type-system" target="blank">Get it</a></strong><br/><br/></p>
<h2>Junction</h2>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/10/junction.jpg" alt="" class="outline" /><br />
<strong>&raquo;&nbsp;<a href="http://www.theleagueofmoveabletype.com/fonts/1-junction" target="blank">Get it</a></strong><br/><br/></p>
<h2>Andika</h2>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/10/andikabasic.png" alt="" class="outline" /><br />
<strong>&raquo;&nbsp;<a href="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&#038;item_id=andika" target="blank">Get it</a></strong></p>
<p><em>Get 20% off on the <a href="http://www.wprecipes.com/myhomepro.html">MyHomePro Premium WordPress Theme</a> by using this exclusive code: <strong>wpcats20</strong>.</em><br/><br/><a href="http://www.catswhocode.com/blog/10-wonderful-fonts-you-can-embed-with-cufon-and-sifr">10 wonderful fonts you can embed with Cufon and Sifr</a></p>
<img src="http://feeds.feedburner.com/~r/Catswhocode/~4/YQUYodO9IWc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.catswhocode.com/blog/10-wonderful-fonts-you-can-embed-with-cufon-and-sifr/feed</wfw:commentRss>
		<slash:comments>42</slash:comments>
		<feedburner:origLink>http://www.catswhocode.com/blog/10-wonderful-fonts-you-can-embed-with-cufon-and-sifr</feedburner:origLink></item>
		<item>
		<title>10+ WordPress plugins for developers</title>
		<link>http://feedproxy.google.com/~r/Catswhocode/~3/65W3G26PGhY/10-wordpress-plugins-for-developers</link>
		<comments>http://www.catswhocode.com/blog/10-wordpress-plugins-for-developers#comments</comments>
		<pubDate>Mon, 05 Oct 2009 15:41:12 +0000</pubDate>
		<dc:creator>Jean-Baptiste Jung</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.catswhocode.com/blog/?p=2654</guid>
		<description><![CDATA[One of the good points of WordPress is its community: There are a million of WordPress plugins dedicated to achieve almost tasks. For this article, I focus on 10 plugins that is really useful to create a developer blog.<p><em>Get 20% off on the <a href="http://www.wprecipes.com/myhomepro.html">MyHomePro Premium WordPress Theme</a> by using this exclusive code: <strong>wpcats20</strong>.</em><br/><br/><a href="http://www.catswhocode.com/blog/10-wordpress-plugins-for-developers">10+ WordPress plugins for developers</a></p>
]]></description>
			<content:encoded><![CDATA[<h2>Preserve Code Formatting</h2>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/09/preserve-code-formating.png" alt="" /><br />
Have you ever tried to display code snippets in WordPress? If your answer was "yes", I'm pretty sure you had trouble to do so, at least during your first tries. Why? Because of html entities and WordPress formatting.<br />
By using the "Preserve Code Formating" WordPress plugin, you can say a definitive goodbye to all that kind of problems.<br />
A definitive life saver for developer's blogs.<br />
<strong>&raquo;&nbsp;Source : <a href="http://wordpress.org/extend/plugins/preserve-code-formatting/" target="blank">http://wordpress.org/extend/plugins/preserve-code-formatting/</a></strong><br/><br/></p>
<h2>Wp Advanced Code Editor</h2>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/10/wp-advanced-code-editor.jpg" alt="" /><br />
WP Advanced Code Editor integrates the EasyArea advanced code editor into WordPress. This adds real time syntax highlighting, line numbering, full screen editing, and more to the code editor in the "Add New Post" and "Add New Page" screens.<br />
<strong>&raquo;&nbsp;Source : <a href="http://wordpress.org/extend/plugins/wp-advanced-code-editor/" target="blank">http://wordpress.org/extend/plugins/wp-advanced-code-editor/</a></strong><br/><br/></p>
<h2>runPHP</h2>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/10/run-php.gif" alt="" /><br />
If you're a developer, you may sometimes find a bit frustrating the fact that WordPress do not allow you to run PHP code in the editor or in Text widgets.<br />
The "Run PHP" plugin solves this problem. The permissions to run some PHP are handled by user roles and capabilities. Note that this plugin will also work on PHP 4 servers.<br />
<strong>&raquo;&nbsp;Source : <a href="http://wordpress.org/extend/plugins/runphp/" target="blank">http://wordpress.org/extend/plugins/runphp/</a></strong><br/><br/></p>
<h2>Vim Color Improved</h2>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/10/vim-color.png" alt="" /><br />
Highly inspired by the Drupal module of the same name, "Vimcolor" highlights your code in many different formats. <a href="http://www.catswhocode.com/blog/100-vim-commands-every-programmer-should-know">VIM</a> is a common programmers text editor for (usually) unix based systems. Out of the box VIM can color the syntax of 200+ languages including PHP, Perl, C, HTML, Fortran, Haskell, Java, etc.<br />
<strong>&raquo;&nbsp;Source : <a href="http://wordpress.org/extend/plugins/vim-color-improved/" target="blank">http://wordpress.org/extend/plugins/vim-color-improved/</a></strong><br/><br/></p>
<h2>SQL Executionner</h2>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/09/sql-executionner.jpg" alt="" /><br />
While working with a database-driven website, as such as WordPress, you may often need to directly look inside the database for some info, or execute a few queries to update or delete entries.<br />
Sure, PhpMyAdmin do that job perfectly, but why connecting to another software when you can do it inside WordPress, suing the SQL Executionner plugin?<br />
<strong>&raquo;&nbsp;Source : <a href="http://justinsomnia.org/2008/02/the-wordpress-sql-executioner/" target="blank">http://justinsomnia.org/2008/02/the-wordpress-sql-executioner/</a></strong><br/><br/></p>
<h2>Google Syntax Highlighter</h2>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/10/google-syntax-highlighter.png" alt="" /><br />
The Google Syntax Highlighter plugin easily integrate Alex Gorbatchev's Syntax Highlighting code into your WordPress blog. Just install the plugin and you'll be able to automatically color the code snippets you posted on your blog.<br />
The Google Syntax Highlighter plugin is 100% Javascript based, so it will not contribute to your server load.<br />
<strong>&raquo;&nbsp;Source : <a href="http://wordpress.org/extend/plugins/google-syntax-highlighter/" target="blank">http://wordpress.org/extend/plugins/google-syntax-highlighter/</a></strong><br/><br/></p>
<h2>Wp Development Utilities</h2>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/10/wp-development-utilities.jpg" alt="" /><br />
Once you have installed this plugin, you'll be able to use a full set of functions designed to help your find and debug your WordPress themes or plugins. Among other things, you can retrieve user capabilities, web server name, get the ID of a permalink...<br />
<strong>&raquo;&nbsp;Source : <a href="http://www.blogdev.info/bd/wordpress/plugins/wp-development-utilities.htm" target="blank">http://www.blogdev.info/bd/wordpress/plugins/wp-development-utilities.htm</a></strong><br/><br/></p>
<h2>WP Developer Assistant</h2>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/10/wp-developer-assistant.png" alt="" /><br />
WP Developer Assistant is a complete toolkit for all WordPress developers. It allows you to see all WordPress predefined constants, easy access and modify the options table, view actions and hooks, and a lot more.<br />
<strong>&raquo;&nbsp;Source : <a href="http://wordpress.org/extend/plugins/wp-developer-assistant" target="blank">http://wordpress.org/extend/plugins/wp-developer-assistant</a></strong><br/><br/></p>
<h2>Anti Internet Explorer 6</h2>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/10/ie6.png" alt="" /><br />
You probably already know that <a href="http://www.catswhocode.com/blog/15-amazing-anti-ie-resources">I hate IE6</a>. This is the reason why I can't resist to list this plugin on here. It purpose is pretty simple: Once installed, it will detect the loser's browser and will deny it access to your blog.<br />
<strong>&raquo;&nbsp;Source : <a href="http://wordpress.org/extend/plugins/anti-internet-explorer-6/" target="blank">http://wordpress.org/extend/plugins/anti-internet-explorer-6/</a></strong><br/><br/></p>
<h2>Hosting monitor</h2>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/10/hosting-monitor.jpg" alt="" /><br />
A website can't be great with a good and reliable host. In order to alays keep an eye on your server, you should definitely install the "Hosting Monitor", a monitoring WordPress plugin created by WebHostingSearch.<br />
Lots of info can be retrieved and displayed: Memory usage, server load, uptime...<br />
<strong>&raquo;&nbsp;Source : <a href="http://wordpress.org/extend/plugins/wordpress-phpsysinfo-widget/" target="blank">http://wordpress.org/extend/plugins/wordpress-phpsysinfo-widget/</a></strong><br/><br/></p>
<h2>Wp-Debug</h2>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/10/wp-debug.png" alt="" /><br />
Ever wished to be able to display information about GET/POST requests, session variables, server info from the <em>php.ini</em>, or included files? The Wp-Debug plugin allow you to see what's going on the inside.<br />
A very good tool to learn more about WordPress.<br />
<strong>&raquo;&nbsp;Source : <a href="http://wordpress.org/extend/plugins/wp-debug/" target="blank">http://wordpress.org/extend/plugins/wp-debug/</a></strong><br/><br/></p>
<h2>WordPress Console</h2>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/10/screenshot-1.png" alt="" /><br />
The WordPress Console is definitely the kind of plugin any WordPress developer should have installed. It provide an interactive console that loads the WordPress environement.<br />
You can then test any PHP code. A great way to learn the WordPress API! Note that a <a href="http://vimeo.com/5300607" target="blank">screencast</a> and a <a href="http://fuelyourcoding.com/plugin-review-wordpress-console/" target="blank">detailed tutorial</a> are availables.<br />
<strong>&raquo;&nbsp;Source : <a href="http://wordpress.org/extend/plugins/wordpress-console/" target="blank">http://wordpress.org/extend/plugins/wordpress-console/</a></strong></p>
<h3>Even more WordPress developement resources</h3>
<ul>
<li><strong><a href="http://www.wprecipes.com" target="blank">WpRecipes</a></strong> is another blog of mine, where I enjoy sharing lots of WordPress hacks with my readers.</li>
<li><strong><a href="http://wpcandy.com/articles/tutorials/the-wordpress-help-sheet.html" target="blank">WordPress Help Sheet</a></strong> : Created by WpCandy.com, this help sheet will always be there to remind you about template files, functions and useful code snippets.</li>
<li><strong><a href="http://yoast.com/tools/textmate/" target="blank">WordPress TextMate Bundle</a></strong> is an extension or the popular TextMate editor. A must have for all WordPress developers!</li>
<li><strong><a href="http://net.tutsplus.com/freebies/cheat-sheets/wordpress-cheat-sheat/" target="blank">Nettut's WordPress Cheat Sheet</a></strong> is another compilation of useful resources as such as the <em>loop</em>, <em>theme structure</em> or <em>template tags</em>.</li>
<li><strong><a href="http://codex.wordpress.org/Main_Page" target="blank">WordPress Codex</a></strong> is the most well known resource for all WordPress developers. You'll find pretty much anything there.</li>
</ul>
<p><em>Get 20% off on the <a href="http://www.wprecipes.com/myhomepro.html">MyHomePro Premium WordPress Theme</a> by using this exclusive code: <strong>wpcats20</strong>.</em><br/><br/><a href="http://www.catswhocode.com/blog/10-wordpress-plugins-for-developers">10+ WordPress plugins for developers</a></p>
<img src="http://feeds.feedburner.com/~r/Catswhocode/~4/65W3G26PGhY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.catswhocode.com/blog/10-wordpress-plugins-for-developers/feed</wfw:commentRss>
		<slash:comments>51</slash:comments>
		<feedburner:origLink>http://www.catswhocode.com/blog/10-wordpress-plugins-for-developers</feedburner:origLink></item>
		<item>
		<title>Cats Who Code contest: Win XHTML/CSS templates!</title>
		<link>http://feedproxy.google.com/~r/Catswhocode/~3/timPobW3Fh8/cats-who-code-contest-win-xhtmlcss-templates</link>
		<comments>http://www.catswhocode.com/blog/cats-who-code-contest-win-xhtmlcss-templates#comments</comments>
		<pubDate>Thu, 01 Oct 2009 12:18:06 +0000</pubDate>
		<dc:creator>Jean-Baptiste Jung</dc:creator>
				<category><![CDATA[Blogging Tips]]></category>

		<guid isPermaLink="false">http://www.catswhocode.com/blog/?p=2664</guid>
		<description><![CDATA[As you probably know, here at Cats Who Code, we like to give prizes and special deals to our readers. This time, you have the oportunity to win 3 XHTML/CSS templates by our sponsor TemplateWire!<p><em>Get 20% off on the <a href="http://www.wprecipes.com/myhomepro.html">MyHomePro Premium WordPress Theme</a> by using this exclusive code: <strong>wpcats20</strong>.</em><br/><br/><a href="http://www.catswhocode.com/blog/cats-who-code-contest-win-xhtmlcss-templates">Cats Who Code contest: Win XHTML/CSS templates!</a></p>
]]></description>
			<content:encoded><![CDATA[<h2>Introducing TemplateWire</h2>
<p>TemplateWire is one of the numerous websites to sell XHTML/css templates. What made them different from the rest? Simply, <a href="http://www.templatewire.com">TemplateWire</a> aren't selling templates one by one : Instead, they ask you to pay a $29 fee which allow you to dowmload and use all the templates you want.</p>
<p>Let's have a look to some of TemplateWire templates:</p>
<h3>Fashion</h3>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/10/fashion.jpg" alt="" /><br />
<strong>&raquo;&nbsp;<a href="http://www.templatewire.com/details/78/fashion-boutique-website-template.html" target="blank">Preview/Buy</a></strong></p>
<h3>Event Planner</h3>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/10/event.jpg" alt="" /><br />
<strong>&raquo;&nbsp;<a href="http://www.templatewire.com/details/109/event-planner-website-template.html" target="blank">Preview/Buy</a></strong></p>
<h3>Media Provider</h3>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/10/media.jpg" alt="" /><br />
<strong>&raquo;&nbsp;<a href="http://www.templatewire.com/details/68/media-provider-website-template.html" target="blank">Preview/Buy</a></strong></p>
<h3>Pets Hospital</h3>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/10/pets.jpg" alt="" /><br />
<strong>&raquo;&nbsp;<a href="http://www.templatewire.com/details/53/pets-hospital-website-template.html" target="blank">Preview/Buy</a></strong></p>
<p>Apart from XHTML/CSS templates, TemplateWire are also selling <a href="http://www.templatewire.com/templates/logo-templates/">logo templates</a> as well as <a href="http://www.templatewire.com/templates/flash-templates/">Flash sites templates</a>.</p>
<h2>The contest</h2>
<p>If you'd like to win one of <a href="http://www.templatewire.com">TemplateWire</a> XHTML/CSS template, we have some good news for you: 3 of our readers will be randomly choosen on October 9, 2009 and will win the template of their choice from TemplateWire.</p>
<h3>How to participate?</h3>
<p>Entering our new contest is easy. Just follow the simple rules below:</p>
<ul>
<li>Write a post on your blog about Cats Who Code <strong>OR</strong> tweet about us.</li>
<li>Leave a link to your post/tweet in the comments so we can know about it.</li>
<li>Get our RSS feed and follow us on Twitter : The 3 winners will be announced there on October 9, 2009.</li>
<li>Winners will have to choose the template they want on the <a href="http://www.templatewire.com">TemplateWire</a> site.</li>
</ul>
<p><em>Good luck to everyone!</em></p>
<p><em>Get 20% off on the <a href="http://www.wprecipes.com/myhomepro.html">MyHomePro Premium WordPress Theme</a> by using this exclusive code: <strong>wpcats20</strong>.</em><br/><br/><a href="http://www.catswhocode.com/blog/cats-who-code-contest-win-xhtmlcss-templates">Cats Who Code contest: Win XHTML/CSS templates!</a></p>
<img src="http://feeds.feedburner.com/~r/Catswhocode/~4/timPobW3Fh8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.catswhocode.com/blog/cats-who-code-contest-win-xhtmlcss-templates/feed</wfw:commentRss>
		<slash:comments>21</slash:comments>
		<feedburner:origLink>http://www.catswhocode.com/blog/cats-who-code-contest-win-xhtmlcss-templates</feedburner:origLink></item>
		<item>
		<title>15+ amazing anti IE resources</title>
		<link>http://feedproxy.google.com/~r/Catswhocode/~3/dXRrSOlr17c/15-amazing-anti-ie-resources</link>
		<comments>http://www.catswhocode.com/blog/15-amazing-anti-ie-resources#comments</comments>
		<pubDate>Mon, 28 Sep 2009 14:51:13 +0000</pubDate>
		<dc:creator>Jean-Baptiste Jung</dc:creator>
				<category><![CDATA[Web development]]></category>

		<guid isPermaLink="false">http://www.catswhocode.com/blog/?p=2588</guid>
		<description><![CDATA[I hate Internet Explorer, and I'm pretty 99% of you do too. In this article, I have compiled a complete list of 15+ "Anti Internet Explorer resources: Informations, graphics, code snippets and way much more!<p><em>Get 20% off on the <a href="http://www.wprecipes.com/myhomepro.html">MyHomePro Premium WordPress Theme</a> by using this exclusive code: <strong>wpcats20</strong>.</em><br/><br/><a href="http://www.catswhocode.com/blog/15-amazing-anti-ie-resources">15+ amazing anti IE resources</a></p>
]]></description>
			<content:encoded><![CDATA[<h2>The facts: Why IE is crap</h2>
<p>IE sucks. Every web worker heard that sentence at least once. Of course, yes, it does sucks. But to be taken seriously, it is important to know <em>why</em> it sucks and not just follow the anti-IE hype.<br />
This first part of the article is dedicated to blogs, websites and articles demonstrating how weak Internet Explorer is. </p>
<h3>Kill Bill's Browser: 13 good reasons to say bye to IE</h3>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/09/kill-bill.jpg" alt="" class="outline"/><br />
This well known website show 13 excellent reasons to say a definitive goodbye to Microsoft browser.<br />
<strong>&raquo;&nbsp;<a href="http://www.killbillsbrowser.com/" target="blank">http://www.killbillsbrowser.com/</a></strong><br/><br/></p>
<h3>Why IE sucks</h3>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/09/why-ie-sucks.jpg" alt="" class="outline"/><br />
This whole blog is dedicated to demonstrate why, and how, IE6 sucks. A very interesting read and a must have for your RSS reader.<br />
<strong>&raquo;&nbsp;<a href="http://whyiesucks.blogspot.com" target="blank">http://whyiesucks.blogspot.com/</a></strong><br/><br/></p>
<h3>Why you should dump Internet Explorer</h3>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/09/dump-ie.png" alt="" class="outline"/><br />
This is an <strong>old</strong> article. In fact, it was published in 2004, when there were a lot less complains about IE than nowadays. This article is another interesting read which point out IE weak points.<br />
<strong>&raquo;&nbsp;<a href="http://www.lockergnome.com/news/2004/06/15/why-you-should-dump-internet-explorer/" target="blank">http://www.lockergnome.com/news/2004/06/15/why-you-should-dump-internet-explorer/</a></strong><br/><br/></p>
<h3>IESucks</h3>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/09/ie-sucks.jpg" alt="" class="outline"/><br />
This blog is another website 100% dedicated to show how Internet Explorer is crappy. I enjoy reading it because it demonstrate true facts, but aways with some humor that I enjoy very much.<br />
<strong>&raquo;&nbsp;<a href="http://www.iesucks.info/" target="blank">http://www.iesucks.info/</a></strong><br/><br/></p>
<h2>Anti IE Badges, Tools &#038; Notifications</h2>
<p>The least we can do is to let <del>idiots</del> IE6 users know that their browser is obsolete. Lots of codes snippets are there to help you.</p>
<h3>Too cool for IE</h3>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/09/too-cool.jpg" alt="" class="outline"/><br />
The "Too cool for IE" was a successful online campain to dump out Internet Explorer. On this website, you can download a Javascript code that will detect IE and automatically redirect the <del>loser</del> user to a page where he can download a real browser.<br />
<strong>&raquo;&nbsp;<a href="http://www.w3junkies.com/toocool/" target="blank">http://www.w3junkies.com/toocool/</a></strong><br/><br/></p>
<h3>Google Chrome Frame</h3>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/09/chrome-frame.jpg" alt="" class="outline"/><br />
Google Chrome Frame is a IE plugin that will use the Webkit rendering engine instead of the horrible Trident. It also enable faster Javascript, using recent technologies.<br />
The good point is that it will allow a IE user to keep his <em>long-time</em> favorite app while correcting its mistake by using a newer technology. The bad point is that a IE user don't like to change.<br />
<strong>&raquo;&nbsp;<a href="http://code.google.com/intl/fr/chrome/chromeframe/" target="">http://code.google.com/intl/fr/chrome/chromeframe/</a></strong><br/><br/></p>
<h3>Anti IE buttons</h3>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/09/ie4-buttons.jpg" alt="" class="outline"/><br />
This page is about ten years old but still, it have nice "old school" buttons that you can proudly display on your blog or website.<br />
<strong>&raquo;&nbsp;<a href="http://toastytech.com/evil/buttons.html" target="blank">http://toastytech.com/evil/buttons.html</a></strong><br/><br/></p>
<h3>WordPress plugin: Anti-IE</h3>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/09/wp-ie.jpg" alt="" class="outline"/><br />
The plugin name says it all: Once installed on your WordPress blog, it will detect Internet Explorer 6 and will display a page saying that your blog deserves better than that.<br />
<strong>&raquo;&nbsp;<a href="http://wordpress.org/extend/plugins/anti-internet-explorer-6/">Anti IE6 plugin for WordPress</a></strong><br/><br/></p>
<h2>Tools to kill Internet Explorer</h2>
<p>Notifications aren't bad, but I don't think that will seriously help people switching to a decent browser. I got in mind the perfect exemple of a person who <strong>don't want</strong> to drop IE6 even after a complete explanation about why this piece of crap is hurting the web and stopping innovation.</p>
<p>If you really want to be rude to these even more rude persons, and definitely funny to the others, here are a list of amazingly bad jokes to do to Internet Explorer users.</p>
<h3>Crash IE</h3>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/09/crash-ie.jpg" alt="" class="outline"/><br />
This website have a single purpose: Making Internet Explorer crash. And it works, damn good.<br />
<strong>&raquo;&nbsp;<a href="http://www.crashie.com/" target="blank">http://www.crashie.com/</a></strong><br/><br/></p>
<h3>6 codes to make IE6 crash</h3>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/09/6-ie6.jpg" alt="" class="outline"/><br />
Inter Explorer can easily being crashed by including some code in your source files. This article shows up to 6 different methods to get rid of the loser's browser.<br />
<strong>&raquo;&nbsp;<a href="http://www.catswhocode.com/blog/6-html-and-javascript-codes-to-crash-ie6">http://www.catswhocode.com/blog/6-html-and-javascript-codes-to-crash-ie6</a></strong><br/><br/></p>
<h3>IE6 splash pages</h3>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/09/dinosaur.jpg" alt="" class="outline"/><br />
We all like IE6 users. If you really, really love them you should show your kindness by using one of the extremely rude – but funny – splash pages images that hugsformonsters.com created. (They have been removed from the original site, though)<br />
<strong>&raquo;&nbsp;<a href="http://laughingsquid.com/overly-judgemental-internet-explorer-6-splash-pages/">http://laughingsquid.com/overly-judgemental-internet-explorer-6-splash-pages/</a></strong><br/><br/></p>
<h3>Serve IE6 users WordPress default theme</h3>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/09/nathan.jpg" alt="" class="outline"/><br />
Using WordPress? hating IE6? If you answered a clear "yes!" to both those questions, you love this tutorial. You're going to learn how to serve th default WordPress theme to IE6 users.<br />
<strong>&raquo;&nbsp;<a href="http://www.nathanrice.net/blog/serve-ie6-visitors-the-default-wordpress-theme/" target="blank">http://www.nathanrice.net/blog/serve-ie6-visitors-the-default-wordpress-theme/</a></strong><br/><br/></p>
<h3>How to kill IE6 on your WordPress blog</h3>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/09/kill-ie-wp.jpg" alt="" class="outline"/><br />
Another nice hack to make IE6 crash without even letting it the necessary tome to load the page.<br />
Not that this can be implemented on any kind of websites, not only WP blogs.<br />
<strong>&raquo;&nbsp;<a href="http://www.wprecipes.com/how-to-kill-ie6-on-your-wordpress-blog" target="blank">http://www.wprecipes.com/how-to-kill-ie6-on-your-wordpress-blog</a></strong><br/><br/></p>
<h2>Even more fun</h2>
<p>Who though a (stupid) web browser could inspire designers and marketers to create products as such as T-Shirts or mugs?</p>
<h3>"Damn you, IE" mug</h3>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/09/ie-mug.jpg" alt="" class="outline"/><br />
Are you used to work extremely late in order to finnish fixing IE bugs? If yes, this coffee mug will be your best friend in the office, especially on friday night, when your colleagues will already be at home since a long time.<br />
<strong>&raquo;&nbsp;<a href="http://mugs.cafepress.co.uk/fuck-internet-explorer" target="blank">http://mugs.cafepress.co.uk/fuck-internet-explorer</a></strong><br/><br/></p>
<h3>"Fuck Internet Explorer" TShirts</h3>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/09/ie-tshirts.jpg" alt="" class="outline"/><br />
Simple but efficient!<br />
<strong><a href="http://www.cafepress.com/fuck_ie" target="blank">http://www.cafepress.com/fuck_ie</a></strong><br/><br/></p>
<h3>"I trash IE" wear</h3>
<p><img src="http://www.catswhocode.com/blog/wp-content/uploads/2009/09/ie-tie.jpg" alt="" class="outline"/><br />
If your boss force you to use IE at work, you should definitely consider offering him an "I trash IE" tie for Christmas.<br />
<strong>&raquo;&nbsp;<a href="http://www.zazzle.com/internet+explorer+suck+gifts" target="blank">http://www.zazzle.com/internet+explorer+suck+gifts</a></strong><br/><br/></p>
<p><em>Get 20% off on the <a href="http://www.wprecipes.com/myhomepro.html">MyHomePro Premium WordPress Theme</a> by using this exclusive code: <strong>wpcats20</strong>.</em><br/><br/><a href="http://www.catswhocode.com/blog/15-amazing-anti-ie-resources">15+ amazing anti IE resources</a></p>
<img src="http://feeds.feedburner.com/~r/Catswhocode/~4/dXRrSOlr17c" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.catswhocode.com/blog/15-amazing-anti-ie-resources/feed</wfw:commentRss>
		<slash:comments>106</slash:comments>
		<feedburner:origLink>http://www.catswhocode.com/blog/15-amazing-anti-ie-resources</feedburner:origLink></item>
		<item>
		<title>10+ extremely useful PHP classes</title>
		<link>http://feedproxy.google.com/~r/Catswhocode/~3/CprDPI0jfaQ/10-extremely-useful-php-classes</link>
		<comments>http://www.catswhocode.com/blog/10-extremely-useful-php-classes#comments</comments>
		<pubDate>Thu, 24 Sep 2009 13:42:37 +0000</pubDate>
		<dc:creator>Jean-Baptiste Jung</dc:creator>
				<category><![CDATA[Web development]]></category>

		<guid isPermaLink="false">http://www.catswhocode.com/blog/?p=1945</guid>
		<description><![CDATA[One of the numerous good points of the PHP programming language is its extensibility. In this article, I'm going to show you 10+ extremely useful PHP classes that will definitely make your developer life easier.<p><em>Get 20% off on the <a href="http://www.wprecipes.com/myhomepro.html">MyHomePro Premium WordPress Theme</a> by using this exclusive code: <strong>wpcats20</strong>.</em><br/><br/><a href="http://www.catswhocode.com/blog/10-extremely-useful-php-classes">10+ extremely useful PHP classes</a></p>
]]></description>
			<content:encoded><![CDATA[<h2>PHP PSD Reader</h2>
<p>A few weeks ago, I wrote <a href="http://www.catswhocode.com/blog/php-display-adobe-psd-files-on-a-web-page">an article</a> about this PHP which allow you to display any Adobe PSD file on screen. Very usefull to create preview of PSDs designed for clients, for example.<br />
<strong><a href="http://www.phpclasses.org/browse/package/3627.html" target="blank">Download</a></strong></p>
<h2>Browser detect</h2>
<p>One of the most common (and boring) problem for front-end developers is definitely cross-browser compatibility. This PHP class will detect almost all browsers and simplify your cross-browser work.<br />
<strong><a href="http://www.phpclasses.org/browse/package/2827.html" target="blank">Download</a></strong></p>
<h2>Akismet</h2>
<p>Remember those days without spam? If your website gets spammed in any ways, Akismet can probably help you. When a new comment, trackback, or pingback comes to your site it is submitted to the Akismet web service which runs hundreds of tests on the comment and returns a thumbs up or thumbs down.<br />
<strong><a href="http://phpclasses.linuxpourtous.com/browse/package/4401.html" target="blank">Download</a></strong></p>
<h2>ADOdb</h2>
<p>The large majority of websites and web apps are using databases to store all kinds of data. ADOdb is a database abstraction library for PHP, supporting MySQL, PostgreSQL, Interbase, Firebird, Oracle, MS SQL and more. ADOdb is quite easy to learn and have lots of nice features as such as extensive portability support, speed and BSD licencing.<br />
<strong><a href="http://adodb.sourceforge.net/" target="blank">Download</a></strong></p>
<h2>HTML Purifier</h2>
<p>As it name tells, HTML Purifier is a PHP class created to help you writing a better code. HTML Purifier can remove malicious code and make sure your code is standard-compliant. A great tool for all developers.<br />
<strong><a href="http://htmlpurifier.org/" target="blank">Download</a></strong></p>
<h2>Google charts API</h2>
<p>Charts are very useful and highly asked by clients, but they can be a lot of work. I remember some years ago when a friend of mine had to create charts using Photoshop every week for one of his clients. Well, this time is gone for good.<br />
With the Google charts API, a simple chart can be created and displayed on screen using as little as 4 lines of code.<br />
<strong><a href="http://luddep.se/notebook/2008/04/13/charts-php-and-google-charts-api/" target="blank">Download</a></strong></p>
<h2>pChart</h2>
<p>pChart is another chart class, and it is as good as Google charts API. Data can be easily retrieved from SQL queries, CSV files, or manually provided.<br />
<strong><a href="http://pchart.sourceforge.net/index.php" target="blank">Download</a></strong></p>
<h2>PHP Excel</h2>
<p>Excel documents are highly popular in the corporate world. Considering that fact, there's a strong chance that one of your clients asks for you to create excel files in PHP someday.<br />
Happilly, the PHP Excel engine allow you to easily create and manipulate lots of different files, as such as Excel 2007, Open XML, or PDF.<br />
<strong><a href="http://www.codeplex.com/PHPExcel" target="blank">Download</a></strong></p>
<h2>Country from IP</h2>
<p>Some websites are able to detect your location and automatically display information related with your language. How do they do that? Quite simple, they use your IP adress to find your location. The Country from IP class is easy to use and will allow you to get the country a specific IP is from.<br />
<strong><a href="http://phpclasses.linuxpourtous.com/browse/package/2363.html" target="blank">Download</a></strong></p>
<h2>Cache Manager</h2>
<p>If you're working on a high traffic site, there's not doubt you'll need to cache files in order to improve performance. This will be very easy an simple to do, using this very handy class. A defifinitive <em>must-have</em>, in my opinion.<br />
<strong><a href="http://phpclasses.linuxpourtous.com/browse/package/2860.html" target="blank">Download</a></strong></p>
<h2>WPGet</h2>
<p>As I know many of you have a WordPress blog, I just can't finish this article without a great tool for our favorite blogging engine.<br />
WPGet is a PHP class which allow you to easily get infos from a WordPress 2.X database. In other words, it allows you to get posts, comments, etc from a WordPress blog, on a non-WordPress site. Great, isn't it?<br />
<strong><a href="http://phpclasses.linuxpourtous.com/browse/package/3328.html" target="blank">Download</a></strong></p>
<p><em>Get 20% off on the <a href="http://www.wprecipes.com/myhomepro.html">MyHomePro Premium WordPress Theme</a> by using this exclusive code: <strong>wpcats20</strong>.</em><br/><br/><a href="http://www.catswhocode.com/blog/10-extremely-useful-php-classes">10+ extremely useful PHP classes</a></p>
<img src="http://feeds.feedburner.com/~r/Catswhocode/~4/CprDPI0jfaQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.catswhocode.com/blog/10-extremely-useful-php-classes/feed</wfw:commentRss>
		<slash:comments>33</slash:comments>
		<feedburner:origLink>http://www.catswhocode.com/blog/10-extremely-useful-php-classes</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 0.536 seconds. --><!-- Cached page generated by WP-Super-Cache on 2009-11-15 07:14:06 -->
