<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Bit salad</title>
	<atom:link href="http://ezbitz.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ezbitz.com</link>
	<description>Practical stuff</description>
	<lastBuildDate>Tue, 14 Jul 2009 08:43:53 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Wordpress cirip plugin launched</title>
		<link>http://ezbitz.com/2009/07/05/wordpress-cirip-plugin-launched/</link>
		<comments>http://ezbitz.com/2009/07/05/wordpress-cirip-plugin-launched/#comments</comments>
		<pubDate>Sun, 05 Jul 2009 11:57:39 +0000</pubDate>
		<dc:creator>The Chef</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[cirip]]></category>
		<category><![CDATA[cirip plugin]]></category>
		<category><![CDATA[cirip.ro]]></category>
		<category><![CDATA[word]]></category>
		<category><![CDATA[wordpress plugin]]></category>

		<guid isPermaLink="false">http://ezbitz.com/?p=152</guid>
		<description><![CDATA[Today I&#8217;ve launched the plugin that passes your blog posts to cirip.ro, the micro-blogging platform.
More details: http://ezbitz.com/wp-cirip/
Enjoy
]]></description>
		<wfw:commentRss>http://ezbitz.com/2009/07/05/wordpress-cirip-plugin-launched/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to make an Wordpress plugin from scratch</title>
		<link>http://ezbitz.com/2009/07/03/how-to-make-an-wordpress-plugin-from-scratch/</link>
		<comments>http://ezbitz.com/2009/07/03/how-to-make-an-wordpress-plugin-from-scratch/#comments</comments>
		<pubDate>Fri, 03 Jul 2009 18:55:38 +0000</pubDate>
		<dc:creator>The Chef</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[regex]]></category>
		<category><![CDATA[wordpress plugin]]></category>

		<guid isPermaLink="false">http://ezbitz.com/?p=146</guid>
		<description><![CDATA[
&#60;?php
/*
Plugin Name: My-plugin
Plugin URI: http://ezbitz.com/
Description: Remove all links from comments
Version: 1.0
Author: The Chef
Author URI: http://ezbitz.com
*/

function clean_comments($text)
{
	return preg_replace ( '%&#60;a[^&#62;]*&#62;(.*?)&#60;/a&#62;%si', '$1', preg_replace ( '/\b(https?)(:\/\/[-A-Z0-9+&#38;@#\/%?=~_&#124;!:,.;]*[-A-Z0-9+&#38;@#\/%=~_&#124;])/i', 'hxxp$2', $text ) );
}

add_filter ( 'comment_text', 'clean_comments' );

?&#62;

Create an empty php file. First of all we need to fill some plugin details that will appear on the plugins page: plugin name, description, [...]]]></description>
		<wfw:commentRss>http://ezbitz.com/2009/07/03/how-to-make-an-wordpress-plugin-from-scratch/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Quick tip: All-in-One Gestures on Firefox 3.5</title>
		<link>http://ezbitz.com/2009/06/30/quick-tip-all-in-one-gestures-on-firefox-3-5/</link>
		<comments>http://ezbitz.com/2009/06/30/quick-tip-all-in-one-gestures-on-firefox-3-5/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 18:17:12 +0000</pubDate>
		<dc:creator>The Chef</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[addons]]></category>
		<category><![CDATA[All-in-One Gestures]]></category>
		<category><![CDATA[Firefox 3.5]]></category>
		<category><![CDATA[howto]]></category>

		<guid isPermaLink="false">http://ezbitz.com/?p=134</guid>
		<description><![CDATA[Today the new Firefox 3.5 has arrived. But after installing it the addons nightmare begins: incompatible versions. I can live without some of them but no TabMixPlus and All-in-One Gestures. I found a TMP version for Firefox 3.5b but there was no gestures and instinctively the contextual menu was popping around. After some research I [...]]]></description>
		<wfw:commentRss>http://ezbitz.com/2009/06/30/quick-tip-all-in-one-gestures-on-firefox-3-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple ImageShack upload using C#</title>
		<link>http://ezbitz.com/2009/06/08/simple-imageshack-upload-using-c/</link>
		<comments>http://ezbitz.com/2009/06/08/simple-imageshack-upload-using-c/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 16:54:07 +0000</pubDate>
		<dc:creator>The Chef</dc:creator>
				<category><![CDATA[c#]]></category>
		<category><![CDATA[ImageShack]]></category>
		<category><![CDATA[ImageShack API]]></category>
		<category><![CDATA[memory xml deserialize]]></category>

		<guid isPermaLink="false">http://ezbitz.com/?p=121</guid>
		<description><![CDATA[First of all this class is based on the http helper class. The rest is trivial. Here is a piece of code

    public static class ImageShack
    {
        private static http http = new http();

        public [...]]]></description>
		<wfw:commentRss>http://ezbitz.com/2009/06/08/simple-imageshack-upload-using-c/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>XML class serializer in C#</title>
		<link>http://ezbitz.com/2009/06/06/xml-class-serializer-in-c/</link>
		<comments>http://ezbitz.com/2009/06/06/xml-class-serializer-in-c/#comments</comments>
		<pubDate>Sat, 06 Jun 2009 18:22:24 +0000</pubDate>
		<dc:creator>The Chef</dc:creator>
				<category><![CDATA[c#]]></category>
		<category><![CDATA[.net framework]]></category>
		<category><![CDATA[memory xml deserialize]]></category>
		<category><![CDATA[xml deserialize]]></category>
		<category><![CDATA[xml serialize]]></category>

		<guid isPermaLink="false">http://ezbitz.com/?p=116</guid>
		<description><![CDATA[Here it is a short class very useful for serializing and deserializing. This is a good for settings file or configuration files.

using System.Xml.Serialization;
using System.IO;
using System.Text;

namespace XMLData
{
    public static class ObjectXMLSerializer&#60;T&#62; where T : class
    {
        public static T Load(string path)
   [...]]]></description>
		<wfw:commentRss>http://ezbitz.com/2009/06/06/xml-class-serializer-in-c/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Finding DNS servers using c#</title>
		<link>http://ezbitz.com/2009/06/06/finding-dns-servers-using-c/</link>
		<comments>http://ezbitz.com/2009/06/06/finding-dns-servers-using-c/#comments</comments>
		<pubDate>Sat, 06 Jun 2009 16:53:53 +0000</pubDate>
		<dc:creator>The Chef</dc:creator>
				<category><![CDATA[c#]]></category>
		<category><![CDATA[net]]></category>
		<category><![CDATA[.net framework]]></category>
		<category><![CDATA[dns]]></category>

		<guid isPermaLink="false">http://ezbitz.com/?p=113</guid>
		<description><![CDATA[Every computer connected to the internet must interrogate a DNS server in order to resolve domain names to ip addresses. To find the DNS server addresses your computer uses to resolve names, either it has a dhcp or static ip address, you can use the following piece of code. I wrapped all around a nice [...]]]></description>
		<wfw:commentRss>http://ezbitz.com/2009/06/06/finding-dns-servers-using-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Short guide on detecting invisible yahoo users</title>
		<link>http://ezbitz.com/2009/06/06/short-guide-on-detecting-invisible-yahoo-users/</link>
		<comments>http://ezbitz.com/2009/06/06/short-guide-on-detecting-invisible-yahoo-users/#comments</comments>
		<pubDate>Sat, 06 Jun 2009 09:25:27 +0000</pubDate>
		<dc:creator>The Chef</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[ebuddy]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[meebo]]></category>
		<category><![CDATA[pidgin]]></category>
		<category><![CDATA[yahoo invisible detector]]></category>
		<category><![CDATA[yahoo invisible scanner]]></category>
		<category><![CDATA[Yahoo invisible scanner script]]></category>
		<category><![CDATA[yahoo messenger]]></category>

		<guid isPermaLink="false">http://ezbitz.com/?p=109</guid>
		<description><![CDATA[These days it&#8217;s very popular especially for high-school teenagers to chat over yahoo messenger and other programs using same yahoo messenger protocol. Inevitably there had appeared programs and services related to yahoo messenger: tools, skins, emoticons and not the last invisible detectors. There are 2 kind of invisible yahoo scanners: web-based and stand-alone. There are [...]]]></description>
		<wfw:commentRss>http://ezbitz.com/2009/06/06/short-guide-on-detecting-invisible-yahoo-users/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to calculate md5 of a string in C#</title>
		<link>http://ezbitz.com/2009/05/26/how-to-calculate-md5-of-a-string-in-csharp/</link>
		<comments>http://ezbitz.com/2009/05/26/how-to-calculate-md5-of-a-string-in-csharp/#comments</comments>
		<pubDate>Tue, 26 May 2009 17:58:56 +0000</pubDate>
		<dc:creator>The Chef</dc:creator>
				<category><![CDATA[c#]]></category>
		<category><![CDATA[cryptography]]></category>
		<category><![CDATA[.net framework]]></category>
		<category><![CDATA[md5]]></category>
		<category><![CDATA[MD5CryptoServiceProvider]]></category>

		<guid isPermaLink="false">http://ezbitz.com/?p=107</guid>
		<description><![CDATA[If you have ever dared to write the md5 hashing algorithm in C#, you better stay calm because the MS guys thought of everything. It&#8217;s all in the framework. With just 2 lines of code the job is done. Take a look at the following piece of code:

String str=&#34;some text here&#34;;
MD5 md5 = new MD5CryptoServiceProvider();
String [...]]]></description>
		<wfw:commentRss>http://ezbitz.com/2009/05/26/how-to-calculate-md5-of-a-string-in-csharp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Roboticus predatorus</title>
		<link>http://ezbitz.com/2009/05/18/roboticus-predatorus/</link>
		<comments>http://ezbitz.com/2009/05/18/roboticus-predatorus/#comments</comments>
		<pubDate>Mon, 18 May 2009 21:18:12 +0000</pubDate>
		<dc:creator>The Chef</dc:creator>
				<category><![CDATA[science]]></category>
		<category><![CDATA[alternative energy]]></category>
		<category><![CDATA[bio fuel]]></category>
		<category><![CDATA[eating flies robot]]></category>

		<guid isPermaLink="false">http://ezbitz.com/?p=95</guid>
		<description><![CDATA[The next generation of environment friendly robots are on the way. This &#8220;predator&#8221; robot needs flies to digest in order to create energy for movement. Although the distance covered after &#8220;eating&#8221; one fly is about couple of centimeters, the technology opens new perspective to fueling our vehicles.


]]></description>
		<wfw:commentRss>http://ezbitz.com/2009/05/18/roboticus-predatorus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to count in windows bat files</title>
		<link>http://ezbitz.com/2009/05/13/how-to-count-in-windows-bat-files/</link>
		<comments>http://ezbitz.com/2009/05/13/how-to-count-in-windows-bat-files/#comments</comments>
		<pubDate>Wed, 13 May 2009 11:38:16 +0000</pubDate>
		<dc:creator>The Chef</dc:creator>
				<category><![CDATA[script]]></category>
		<category><![CDATA[bat files]]></category>
		<category><![CDATA[count]]></category>

		<guid isPermaLink="false">http://ezbitz.com/?p=91</guid>
		<description><![CDATA[This is a simple way to count form 0 to 1000 using bat files.

@echo off
if [%1]==[] goto NONE
if [%2]==[] goto ONE
if [%3]==[] goto TWO
goto THREE

:NONE
for %%x in (0 1 2 3 4 5 6 7 8 9) do call %0 %%x
goto DONE

:ONE
for %%x in (0 1 2 3 4 5 6 7 8 9) do [...]]]></description>
		<wfw:commentRss>http://ezbitz.com/2009/05/13/how-to-count-in-windows-bat-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
