<?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>An It-Slave in the digital saltmine &#187; it-slav.net</title>
	<atom:link href="http://www.it-slav.net/blogs/category/it-slav-net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.it-slav.net/blogs</link>
	<description>Another Blog from a Geek that has no life</description>
	<lastBuildDate>Fri, 02 Jul 2010 07:33:08 +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>Temperature measurment for temperatur.nu</title>
		<link>http://www.it-slav.net/blogs/2009/02/11/temperature-measurment-for-temperaturnu/</link>
		<comments>http://www.it-slav.net/blogs/2009/02/11/temperature-measurment-for-temperaturnu/#comments</comments>
		<pubDate>Wed, 11 Feb 2009 19:11:16 +0000</pubDate>
		<dc:creator>peter</dc:creator>
				<category><![CDATA[1-wire]]></category>
		<category><![CDATA[Cool things]]></category>
		<category><![CDATA[Geek stuff]]></category>
		<category><![CDATA[Hints]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[it-slav.net]]></category>
		<category><![CDATA[swedish]]></category>
		<category><![CDATA[temperature.nu]]></category>

		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=732</guid>
		<description><![CDATA[It-Slav.net is proud to announce as one of the temperature providers to temperatur.nu
It-slav.net provides temperature measurement for STHLM/Huddinge area in Sweden to the very popular site temperatur.nu

The measurment is done by a 1-wire temperature probe DS18S20.

The script that collects the temperature and stores it in a file that is presented as a webpage, the webpage [...]]]></description>
			<content:encoded><![CDATA[<h2>It-Slav.net is proud to announce as one of the temperature providers to temperatur.nu</h2>
<p>It-slav.net provides temperature measurement for STHLM/Huddinge area in Sweden to the very popular site <a href="http://www.temperatur.nu/">temperatur.nu</a></p>
<p><br class="spacer_" /></p>
<p>The measurment is done by a 1-wire temperature probe DS18S20.</p>
<p><span id="more-732"></span></p>
<p>The script that collects the temperature and stores it in a file that is presented as a webpage, the webpage is polled regularly by temperatur.nu</p>
<pre>#!/usr/bin/perl
 #
 # rrd_tempsensor.pl</pre>
<pre>#use lib qw(/usr/local/rrdtool-1.2.15/lib/perl);
 use RRDs;
 use OW;</pre>
<pre># define location of rrdtool databases
 my $rrd = '/root/owfs/script/rrd_db';
 # define location of images
 my $img = '/home/peter/public_html/temps';</pre>
<pre># process data for each interface (add/delete as required)
 &amp;ProcessSensor(0, "Temperatur_Huddinge", "op5.mynet",3001,"10.DEF05F010800");</pre>
<pre>sub ProcessSensor
 {
 # process sensor
 # inputs: $_[0]: sensor number (ie, 0/1/2/etc)
 #         $_[1]: sensor description
 print "number:$_[0] desc:$_[1], server:$_[2] port:$_[3], id: $_[4]\n";
 my $owserver = "$_[2]:$_[3]";</pre>
<pre>unless(OW::init($owserver)) {
 $status = $ERRORS{CRIT};
 $message = "OWServer not running at $owserver\n";
 exit $status;
 }</pre>
<pre># get temperature from sensor
 my $handle = OW::get("$_[4]/temperature");
 #    print "handle=$handle\n";
 $handle =~ s/^\s*(.*?)\s*$/$1/;
 ## Check if input is an integer or decimal
 unless (($handle =~ /^-?(?:\d+(?:\.\d*)?|\.\d+)$/) || ($handle =~ /^[+-]?\d+$/))
 {
 print "Not an integer or a decimal\n";
 return($ERRORS{CRITICAL});
 }</pre>
<pre>$temp=$handle;
 # remove eol chars
 chomp($temp);</pre>
<pre>print "sensor $_[0]: $temp degrees C\n";</pre>
<pre># check for error code from temp sensor
 if (int $temp eq 85)
 {
 print "failed to read value from sensor $_[0]\n";
 }
 else
 {
 #Create webpage
 open WEBPAGE, "&gt;$img/$_[1]"
 or die "Cannot create $img/$_[1]: $!";
 print WEBPAGE "$temp\n";
 }
 }</pre>
<p>Links:</p>
<ul>
<li><a href="http://www.temperatur.nu/temperatur-1-7_0.html" target="_blank">http://www.temperatur.nu</a> temperatures from alot of places in Sweden</li>
<li><a href="http://www.temperatur.nu/temperatur-1-5_1.html#huddinge" target="_blank">My info</a> page at temperatur.nu</li>
<li><a href="http://www.temperatur.nu/temperatur-1-0_0_26.html" target="_blank">Temperature graphs</a> made by data from me</li>
<li>The <a href="http://www.it-slav.net/~peter/temps/Temperatur_Huddinge" target="_blank">&#8220;webpage&#8221;</a> that the script  create</li>
<li style="text-align: left;"><a href="http://www.it-slav.net/blogs/?cat=11" target="_blank">More</a> information about 1-wire at this blog</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.it-slav.net/blogs/2009/02/11/temperature-measurment-for-temperaturnu/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ssh blocker OpenBSD</title>
		<link>http://www.it-slav.net/blogs/2009/02/09/ssh-blocker-openbsd/</link>
		<comments>http://www.it-slav.net/blogs/2009/02/09/ssh-blocker-openbsd/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 19:36:53 +0000</pubDate>
		<dc:creator>peter</dc:creator>
				<category><![CDATA[Geek stuff]]></category>
		<category><![CDATA[OpenBSD]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[it-slav.net]]></category>
		<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[packetfilter]]></category>

		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=183</guid>
		<description><![CDATA[My firewall get alot of failed ssh logins.
This is a typical log message in /var/log/authlog
Feb  9 20:15:49 pedro sshd[30934]: Failed password for root from 67.205.85.119 port 35603 ssh2
Feb  9 20:15:49 pedro sshd[2656]: Received disconnect from 67.205.85.119: 11: Bye Bye
Feb  9 20:15:51 pedro sshd[15299]: Failed password for root from 67.205.85.119 port 35753 ssh2
Feb  9 20:15:51 pedro [...]]]></description>
			<content:encoded><![CDATA[<p>My firewall get alot of failed ssh logins.</p>
<p>This is a typical log message in /var/log/authlog</p>
<pre>Feb  9 20:15:49 pedro sshd[30934]: Failed password for root from 67.205.85.119 port 35603 ssh2
Feb  9 20:15:49 pedro sshd[2656]: Received disconnect from 67.205.85.119: 11: Bye Bye
Feb  9 20:15:51 pedro sshd[15299]: Failed password for root from 67.205.85.119 port 35753 ssh2
Feb  9 20:15:51 pedro sshd[15791]: Received disconnect from 67.205.85.119: 11: Bye Bye
Feb  9 20:15:53 pedro sshd[9043]: Failed password for root from 67.205.85.119 port 35882 ssh2
Feb  9 20:15:53 pedro sshd[31484]: Received disconnect from 67.205.85.119: 11: Bye Bye
Feb  9 20:15:54 pedro sshd[27717]: Failed password for root from 67.205.85.119 port 36030 ssh2
Feb  9 20:15:55 pedro sshd[30185]: Received disconnect from 67.205.85.119: 11: Bye Bye
Feb  9 20:15:56 pedro sshd[27718]: Failed password for root from 67.205.85.119 port 36164 ssh2
Feb  9 20:15:56 pedro sshd[28005]: Received disconnect from 67.205.85.119: 11: Bye Bye
Feb  9 20:15:58 pedro sshd[30648]: Failed password for root from 67.205.85.119 port 36314 ssh2
Feb  9 20:15:58 pedro sshd[21087]: Received disconnect from 67.205.85.119: 11: Bye Bye
</pre>
<p>Of course this is a script kiddie that tries to break into my firewall just because it answers on port 22 and it is annoying. One way of make it a little harder to break in is by let the packetfilter drop all packages that comes from an ip-address that did this.</p>
<p>This one way of doing it.</p>
<p><span id="more-183"></span></p>
<p><br class="spacer_" /></p>
<h3>Create a pf blacklist /etc/pf.conf<br />
</h3>
<p>&#8211;snipp&#8211;</p>
<pre>table &lt;ssh_blacklist&gt; persist file "/var/pf/ssh_blacklist"
...</pre>
<pre>block in quick log on $ext_if from &lt;ssh_blacklist&gt; to any</pre>
<p>&#8211;snipp&#8211;</p>
<p><br class="spacer_" /></p>
<h3>Create a script that detects failed ssh breakin attempts and updates the blacklist</h3>
<pre>root@pedro:/var/log# cat /root/scripts/blockbadssh.sh
#!/bin/sh
logger "Check for bad ssh behavior"
PATH=/bin:/usr/bin
BL=/var/pf/ssh_blacklist
TEMPFILE=$(mktemp /tmp/bl_XXXXXX) || exit 1
TEMPFILE2=$(mktemp /tmp/bl2_XXXXXX) || exit 1

#cp $BL $TEMPFILE
grep "Invalid user" /var/log/authlog | awk '{print $10}' | sort | uniq &gt; $TEMPFILE2
grep "Failed password for invalid" /var/log/authlog | awk '{print $13}' | sort | uniq  &gt;&gt; $TEMPFILE2
grep "Failed password for root" /var/log/authlog | awk '{print $11}' | sort | uniq  &gt;&gt; $TEMPFILE2

sort $TEMPFILE2 |uniq &gt; $TEMPFILE
#echo "Nu är TEMPFILE"
#cat $TEMPFILE

#cat $BL &gt;&gt; $TEMPFILE
for i in `cat $TEMPFILE`
do
  grep $i $BL&gt;/dev/null
  if [ "$?" == "1" ]
  then
    logger "Added $i to ssh-blacklist"
    echo "Added $i to ssh-blacklist"
  fi
done

cat $BL &gt;&gt; $TEMPFILE
sort $TEMPFILE | uniq &gt; $BL

rm $TEMPFILE
rm $TEMPFILE2

/sbin/pfctl -t ssh_blacklist -Treplace -f $BL 2&gt;&amp;1 | grep -v "no changes"
</pre>
<h3>Make it run every minute</h3>
<pre>root@pedro:/var/log# crontab -l </pre>
<pre>*     *       *       *       *       /root/scripts/blockbadssh.sh
</pre>
<p>I know this is a dirty way of doing it and it is a good idea to have another pf rule that accept traffic from well known hosts so you do not get blocked because you failed a login.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.it-slav.net/blogs/2009/02/09/ssh-blocker-openbsd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It-Slav.Net outage</title>
		<link>http://www.it-slav.net/blogs/2009/02/08/it-slavnet-outage/</link>
		<comments>http://www.it-slav.net/blogs/2009/02/08/it-slavnet-outage/#comments</comments>
		<pubDate>Sun, 08 Feb 2009 19:11:49 +0000</pubDate>
		<dc:creator>peter</dc:creator>
				<category><![CDATA[Nagios]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[it-slav.net]]></category>
		<category><![CDATA[op5 Monitor]]></category>

		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=707</guid>
		<description><![CDATA[Today I had to do some electrical work at home. The consequence was that my internet connection was down for about 20 minutes because my ADSL modem did not have any power.
My Nagios based op5 Monitor system discovered this directly and reported to me. I forgot to schedule this as planed downtime so I have [...]]]></description>
			<content:encoded><![CDATA[<p>Today I had to do some electrical work at home. The consequence was that my internet connection was down for about 20 minutes because my ADSL modem did not have any power.</p>
<p>My <a href="http://www.nagios.org" target="_blank">Nagios</a> based <a href="http://www.op5.com/op5/products/monitor" target="_blank">op5 Monitor</a> system discovered this directly and reported to me. I forgot to schedule this as planed downtime so I have to work with my processes <img src='http://www.it-slav.net/blogs/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  .</p>
<p><a href="http://www.it-slav.net/blogs/wp-content/uploads/2009/02/it-slav-outage.png"><img class="alignnone size-full wp-image-708" title="it-slav-outage" src="http://www.it-slav.net/blogs/wp-content/uploads/2009/02/it-slav-outage.png" alt="" width="673" height="251" /></a></p>
<address>Screenshot from <a href="http://www.op5.com/op5/products/monitor" target="_blank">op5 Monitor</a> alert history first router<br />
 </address>
]]></content:encoded>
			<wfw:commentRss>http://www.it-slav.net/blogs/2009/02/08/it-slavnet-outage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ping test tool</title>
		<link>http://www.it-slav.net/blogs/2008/12/08/ping-test-tool/</link>
		<comments>http://www.it-slav.net/blogs/2008/12/08/ping-test-tool/#comments</comments>
		<pubDate>Mon, 08 Dec 2008 21:14:10 +0000</pubDate>
		<dc:creator>peter</dc:creator>
				<category><![CDATA[Hints]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[it-slav.net]]></category>
		<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[just ping]]></category>
		<category><![CDATA[ping test]]></category>

		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=472</guid>
		<description><![CDATA[To verify that your site is available from many places around the world use http://just-ping.com/
This is how the test of pinging my host www.it-slav.net looks like:
 location                  result           [...]]]></description>
			<content:encoded><![CDATA[<p>To verify that your site is available from many places around the world use <a href="http://just-ping.com/" target="_blank">http://just-ping.com/</a></p>
<p>This is how the test of pinging my host www.it-slav.net looks like:</p>
<pre><span class="head"> location                  result               min. rrt  avg. rrt  max. rrt </span>
<span class="even"> Santa Clara, U.S.A.       Okay                    190.9     192.3     193.8 </span>
<span class="odd"> Florida, U.S.A.           Okay                    162.3     163.3     164.6 </span>
<span class="even"> New York, U.S.A.          Okay                    126.5     127.8     129.1 </span>
<span class="odd"> Austin1, U.S.A.           Okay                    172.6     173.2     174.2 </span>
<span class="even"> Austin, U.S.A.            Okay                    171.4     172.0     173.0 </span>
<span class="odd"> Vancouver, Canada         Okay                    197.5     198.0     198.9 </span>
<span class="even"> Amsterdam2, Netherlands   Okay                     49.9      50.5      51.2 </span>
<span class="odd"> San Francisco, U.S.A.     Okay                    224.9     227.9     231.2 </span>
<span class="even"> Amsterdam3, Netherlands   Okay                     67.4      73.6      82.3 </span>
<span class="odd"> Chicago, U.S.A.           Okay                    140.6     141.5     142.2 </span>
<span class="even"> Stockholm, Sweden         Okay                     32.2      32.8      34.0 </span>
<span class="odd"> London, United Kingdom    Okay                     62.5      63.1      64.8 </span>
<span class="even"> Cologne, Germany          Okay                     80.6      86.7      93.2 </span>
<span class="odd"> Krakow, Poland            Okay                     82.2      83.6      86.0 </span>
<span class="even"> Copenhagen, Denmark       Okay                     50.0      50.6      52.5 </span>
<span class="odd"> Amsterdam, Netherlands    Okay                     48.8      49.5      51.4 </span>
<span class="even"> Madrid, Spain             Okay                     87.5      88.2      89.0 </span>
<span class="odd"> Munchen, Germany          Okay                     84.3      89.8      97.6 </span>
<span class="even"> Lille, France             Okay                     67.9      69.9      74.2 </span>
<span class="odd"> Cagliari, Italy           Okay                     85.4      86.4      88.0 </span>
<span class="even"> Groningen, Netherlands    Okay                     52.2      53.1      54.9 </span>
<span class="odd"> Sydney, Australia         Okay                    359.9     362.6     375.4 </span>
<span class="even"> Hong Kong, China          Okay                    320.1     329.3     335.8 </span>
<span class="odd"> Zurich, Switzerland       Okay                     80.9      83.5      85.4 </span>
<span class="even"> Nagano, Japan             Okay                    301.3     302.0     302.9 </span>
<span class="odd"> Antwerp, Belgium          Okay                     61.8      62.7      65.3 </span>
<span class="even"> Singapore, Singapore      Okay                    349.3     355.0     359.4 </span>
<span class="odd"> Porto Alegre, Brazil      Okay                    309.8     314.3     321.2 </span>
<span class="even"> Melbourne, Australia      Okay                    383.9     385.0     386.0 </span>
<span class="odd"> Mumbai, India             Okay                    198.6     199.5     202.0 </span>
<span class="even"> Shanghai, China           Okay                    440.3     441.8     443.3 </span>
<span class="odd"> Haifa, Israel             Okay                    142.7     144.3     145.9 </span>
<span class="even"> Auckland, New Zealand     Packets lost (10%)      375.7     378.3     384.6 </span>
<span class="odd"> Johannesburg, South AfricaOkay                    334.9     337.4     340.5 </span>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.it-slav.net/blogs/2008/12/08/ping-test-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mail problems at it-slav.net</title>
		<link>http://www.it-slav.net/blogs/2008/11/30/mail-problems-at-it-slavnet/</link>
		<comments>http://www.it-slav.net/blogs/2008/11/30/mail-problems-at-it-slavnet/#comments</comments>
		<pubDate>Sun, 30 Nov 2008 00:52:44 +0000</pubDate>
		<dc:creator>peter</dc:creator>
				<category><![CDATA[Hints]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[it-slav.net]]></category>
		<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[postfix]]></category>

		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=450</guid>
		<description><![CDATA[I have noticed the last 2 days that I did not receive as many mails as I usually do. The whole family has been ill the last couple of days so I did not spend any time troubleshoot that.
But today I noticed that I&#8217;ve only got 1 mail so something must be wrong. I did [...]]]></description>
			<content:encoded><![CDATA[<p>I have noticed the last 2 days that I did not receive as many mails as I usually do. The whole family has been ill the last couple of days so I did not spend any time troubleshoot that.</p>
<p>But today I noticed that I&#8217;ve only got 1 mail so something must be wrong. I did send an email from my job to my private adress and got the email back with the following message:</p>
<pre><a class="moz-txt-link-rfc2396E" href="mailto:peter@it-slav.net">&lt;peter@it-slav.net&gt;</a>: cannot update mailbox /var/mail/peter for user peter.
    error writing message: File too large
</pre>
<p>After some troubleshooting I found the following in the postfix documentation:</p>
<dl>
<dt><strong><a name="mailbox_size_limit">mailbox_size_limit</a> (default: 51200000)</strong></dt>
<dd>
<p>The maximal size of any <a href="http://www.postfix.org/local.8.html">local(8)</a> individual mailbox or maildir file, or zero (no limit).  In fact, this limits the size of any file that is written to upon local delivery, including files written by external commands that are executed by the <a href="http://www.postfix.org/local.8.html">local(8)</a> delivery agent.</p>
<p>This limit must not be smaller than the message size limit.</p>
</dd>
</dl>
<p class="moz-text-plain" style="font-family: -moz-fixed; font-size: 12px;" lang="x-western"> </p>
<p>So I changed the mailbox_size_limit = 0 and now everything seems alright again.</p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.it-slav.net/blogs/2008/11/30/mail-problems-at-it-slavnet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another Copy Cat</title>
		<link>http://www.it-slav.net/blogs/2008/11/07/another-copy-cat/</link>
		<comments>http://www.it-slav.net/blogs/2008/11/07/another-copy-cat/#comments</comments>
		<pubDate>Fri, 07 Nov 2008 05:37:46 +0000</pubDate>
		<dc:creator>peter</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[it-slav.net]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=173</guid>
		<description><![CDATA[This is real fun. I found another It-Slav with a blog &#8220;En it-slav i samhällets tjänst&#8220;. He seems to been blogging since 2006 and likes food.
Thanks once again for copying a winner.
For reference see my other blog about Copy Cat.
]]></description>
			<content:encoded><![CDATA[<p>This is real fun. I found another It-Slav with a blog &#8220;<a href="http://itslaven.blogspot.com/" target="_blank">En it-slav i samhällets tjänst</a>&#8220;. He seems to been blogging since 2006 and likes food.</p>
<p>Thanks once again for copying a winner.</p>
<p>For reference see my other blog about <a href="http://www.it-slav.net/blogs/?p=97" target="_blank">Copy Cat</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.it-slav.net/blogs/2008/11/07/another-copy-cat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Copycat</title>
		<link>http://www.it-slav.net/blogs/2008/11/03/copycat/</link>
		<comments>http://www.it-slav.net/blogs/2008/11/03/copycat/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 06:08:21 +0000</pubDate>
		<dc:creator>peter</dc:creator>
				<category><![CDATA[it-slav.net]]></category>

		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=97</guid>
		<description><![CDATA[Someone said that the best way to know that you are successful is when someone copy you.
Now I found that a &#8220;new&#8221; doamin exist, it-slav.se.
According to whois it was registred Jan 2007
domain:           it-slav.se
created:          2007-01-18
modified:   [...]]]></description>
			<content:encoded><![CDATA[<p>Someone said that the best way to know that you are successful is when someone copy you.</p>
<p>Now I found that a &#8220;new&#8221; doamin exist, <a href="http://www.it-slav.se" target="_blank">it-slav.se</a>.</p>
<p>According to <a href="http://www.whois.net/" target="_blank">whois</a> it was registred Jan 2007</p>
<p><code>domain:           it-slav.se<br />
created:          2007-01-18<br />
modified:         2008-06-17<br />
expires:          2009-01-18</code></p>
<p>And it-slav.net<br />
<code>Record created: 31 MAY 2000<br />
Record last changed: 31 MAR 2008<br />
Record expires: 31 MAY 2017 </code></p>
<p>So after <strong>seven</strong> years someone found it worth to copy a winner, thanks!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.it-slav.net/blogs/2008/11/03/copycat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
