<?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>tov's Blog</title>
	<atom:link href="http://blog.nobody-is-like.me/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.nobody-is-like.me</link>
	<description>Just another (geeky) WordPress weblog</description>
	<lastBuildDate>Tue, 16 Mar 2010 13:43:04 +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>Brainfuck</title>
		<link>http://blog.nobody-is-like.me/2010/03/brainfuck/</link>
		<comments>http://blog.nobody-is-like.me/2010/03/brainfuck/#comments</comments>
		<pubDate>Tue, 16 Mar 2010 10:31:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Programmierung]]></category>

		<guid isPermaLink="false">http://blog.nobody-is-like.me/?p=57</guid>
		<description><![CDATA[Hmmm&#8230; Kleine Fingerübung in Perl (pre-alpha  )
Ah ja: Brainfuck: http://lmgtfy.com/?q=Brainfuck
#!/usr/bin/env perl
use Term::ReadKey;
ReadMode &#039;raw&#039;;
my $debug = 0;

my $code;
if ($ARGV[0]){
  { local $/ = undef; local *FILE; open FILE, &#34;&#60;&#34;.$ARGV[0]; $code = &#60;FILE&#62;; close FILE }
}

$code &#124;&#124;=
&#34;&#62;+++++++++[&#60;+++++++++++++&#62;-]&#60;-.-----.+++++++
.&#62;+++[&#62;++++++++++&#60;-]
&#62;++.&#60;&#60;----.+++.
--------- . -------.&#62;++++[&#60;+++++&#62;-]&#60;+.&#62;++++++++++.&#34;;

$code =~ s/[^\.,+-\[\]&#60;&#62;]//msg;
$&#124; = 1;
my @val;
@val[ 0 .. 29999 ] = (0) x 30000;
my $vpt = 0;
my [...]]]></description>
			<content:encoded><![CDATA[<p>Hmmm&#8230; Kleine Fingerübung in Perl (pre-alpha <img src='http://blog.nobody-is-like.me/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> )</p>
<p>Ah ja: Brainfuck: <a href="http://lmgtfy.com/?q=Brainfuck">http://lmgtfy.com/?q=Brainfuck</a></p>
<p><pre><pre>#!/usr/bin/env perl
use Term::ReadKey;
ReadMode &#039;raw&#039;;
my $debug = 0;

my $code;
if ($ARGV[0]){
  { local $/ = undef; local *FILE; open FILE, &quot;&lt;&quot;.$ARGV[0]; $code = &lt;FILE&gt;; close FILE }
}

$code ||=
&quot;&gt;+++++++++[&lt;+++++++++++++&gt;-]&lt;-.-----.+++++++
.&gt;+++[&gt;++++++++++&lt;-]
&gt;++.&lt;&lt;----.+++.
--------- . -------.&gt;++++[&lt;+++++&gt;-]&lt;+.&gt;++++++++++.&quot;;

$code =~ s/[^\.,+-\[\]&lt;&gt;]//msg;
$| = 1;
my @val;
@val[ 0 .. 29999 ] = (0) x 30000;
my $vpt = 0;
my @ls;
my @le;
my $lpt = 0;
my $cc  = 0;
my @c   = split( &#039;&#039;, $code );
my $nc  = @c;
while ( $cc &lt; $nc ) {
    $_ = $c[ $cc++ ];
    print &quot;vpt:$vpt \$val[\$vpt]&quot;
      . $val[$vpt]
      . &quot; loop_counter:$loop_counter loop(counter)_start:&quot;
      . $ls[$loop_counter]
      . &quot; loop(counter)_end:&quot;
      . $le[$loop_counter]
      . &quot; cc:$cc command:$_\n&quot;
      if $debug;
    /&lt;/ and do { $vpt        and $vpt--; next };
    /&gt;/ and do { $vpt &lt; @val and $vpt++; next };
    /\+/ and do { $val[$vpt] = $val[$vpt] + 1; next; };
    /\-/ and do { $val[$vpt] = $val[$vpt] - 1; next; };
    /\./ and do { print chr( $val[$vpt] ); next; };
    /\,/ and do { $val[$vpt] = ord( ReadKey 0 ); next; };
    /\[/ and do {
        if   ( $val[$vpt] ) { $ls[ $lpt++ ] = $cc - 1 }
        else                { $cc = defined $le[$lpt] ? $le[$lpt] : (index($code,&#039;]&#039;,$cc)+1) }
        next;
    };
    /\]/ and do {
        $le[ --$lpt ] = $cc;
        $cc = $ls[$lpt];
        next;
    };
}
print &quot;\n&quot;;

</pre></pre></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.nobody-is-like.me/2010/03/brainfuck/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blogging via MacJournal</title>
		<link>http://blog.nobody-is-like.me/2010/03/blogging-via-macjournal/</link>
		<comments>http://blog.nobody-is-like.me/2010/03/blogging-via-macjournal/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 16:17:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">http://blog.nobody-is-like.me/2010/03/10/blogging-via-macjournal/</guid>
		<description><![CDATA[Umpft.
Ich konnte dem aktuellen http://www.macheist.com Nano-Bundle natürlich doch nicht widerstehen. Monkey-Islands war eine Versuchung wert und vor allen Dingen Tweetie 2.0.
Jetzt habe ich auch noch MacJournal dazu bekommen und bin eigentlich ziemlich begeistert.

Blogging mit einem vernünftigen Client
Verschlüsselung privater Einträge
Export von Einträgen als HTML, PDF etc.
Volltextsuche via Spotlight.
Synchronisation via Mobile-Me (muss noch TeamDrive ausprobieren)

Und alle so [...]]]></description>
			<content:encoded><![CDATA[<p>Umpft.<br />
Ich konnte dem aktuellen <a href="http://www.macheist.com">http://www.macheist.com</a> Nano-Bundle natürlich doch nicht widerstehen. Monkey-Islands war eine Versuchung wert und vor allen Dingen Tweetie 2.0.</p>
<p>Jetzt habe ich auch noch <a href="http://www.marinersoftware.com/sitepage.php?page=85">MacJournal</a> dazu bekommen und bin eigentlich ziemlich begeistert.</p>
<ul style="list-style-type: disc">
<li>Blogging mit einem vernünftigen Client</li>
<li>Verschlüsselung privater Einträge</li>
<li>Export von Einträgen als HTML, PDF etc.</li>
<li>Volltextsuche via Spotlight.</li>
<li>Synchronisation via Mobile-Me (muss noch TeamDrive ausprobieren)</li>
</ul>
<p>Und alle so „Yeah“!</p>
<p>P.S. Und die Probleme von Safari mit Wordpress brauchen mich jetzt auch nicht mehr zu kümmern</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.nobody-is-like.me/2010/03/blogging-via-macjournal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spendenaktion für Haiti</title>
		<link>http://blog.nobody-is-like.me/2010/01/spendenaktion-fur-haiti/</link>
		<comments>http://blog.nobody-is-like.me/2010/01/spendenaktion-fur-haiti/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 11:54:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://blog.nobody-is-like.me/?p=48</guid>
		<description><![CDATA[@johnny von Spreeblick hat eine Spendenaktion für die Erdbebenopfer von Haiti in&#8217;s Leben gerufen.
Nicht, dass es nicht auch andere Wege des Spendens gäbe, aber das Problem ist ja (und das löst sich durch solche Aktionen halt), dass &#8220;man&#8221; (ja, auch ich) in der Regel den A&#8230; ja nicht hochkriegt.
Also: Wenn Ihr Eure Kontonummer noch kennt, [...]]]></description>
			<content:encoded><![CDATA[<p>@johnny von<a title="Spendenaktion" href="http://www.spreeblick.com/2010/01/15/rettungsanker-haiti-spendenaktion/" target="_self"> Spreeblick</a> hat eine Spendenaktion für die Erdbebenopfer von Haiti in&#8217;s Leben gerufen.</p>
<p>Nicht, dass es nicht auch andere Wege des Spendens gäbe, aber das Problem ist ja (und das löst sich durch solche Aktionen halt), dass &#8220;man&#8221; (ja, auch ich) in der Regel den A&#8230; ja nicht hochkriegt.</p>
<p>Also: Wenn Ihr Eure Kontonummer noch kennt, einfach mal auf obigen Link clicken!</p>
<p>Danke sehr!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.nobody-is-like.me/2010/01/spendenaktion-fur-haiti/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to delete an LVM snapshot</title>
		<link>http://blog.nobody-is-like.me/2009/12/how-to-delete-an-lvm-snapshot/</link>
		<comments>http://blog.nobody-is-like.me/2009/12/how-to-delete-an-lvm-snapshot/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 14:36:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://blog.nobody-is-like.me/?p=44</guid>
		<description><![CDATA[Problem: Centos did not boot after a failure with an LVM snapshot.
It got stuck at:
Setting up Logical Volume Management: (part of rc.sysinit)
Solution:
Boot:
1) grub &#8220;e&#8221; (to edit the first line)
2) append &#8220;init = /bin/bash&#8221; to kernel parameters
3) boot (Enter, &#8220;b&#8221;)
(append &#8220;Single&#8221; should work as well but it didn&#8217;t as far as I remember)
Console
1) mount / -o [...]]]></description>
			<content:encoded><![CDATA[<p>Problem: Centos did not boot after a failure with an LVM snapshot.</p>
<p>It got stuck at:</p>
<p>Setting up Logical Volume Management: (part of rc.sysinit)</p>
<p>Solution:</p>
<p>Boot:<br />
1) grub &#8220;e&#8221; (to edit the first line)<br />
2) append &#8220;init = /bin/bash&#8221; to kernel parameters<br />
3) boot (Enter, &#8220;b&#8221;)</p>
<p>(append &#8220;Single&#8221; should work as well but it didn&#8217;t as far as I remember)</p>
<p>Console<br />
1) mount / -o remount (enables rw mode)<br />
2) vi /etc/lvm/lvm.conf<br />
3) replace<br />
locking_dir = &#8220;/var/lock/lvm&#8221;<br />
by<br />
locking_dir = &#8220;/tmp&#8221;<br />
(this is because &#8220;lvremove&#8221; does not recognize the &#8211;ignorelockingfailure parameter)<br />
4) cd /sbin<br />
5) ./lvm.static lvdisplay &#8211;ignorelockingfailure (not sure if this param is necessary after editing lvm.conf)<br />
6) Find the snapshot path: /dev/your_volumegroup/your_logical_volume_snapshot<br />
7) remove: ./lvm.static lvremove /dev/your_volumegroup/your_logical_volume_snapshot<br />
 <img src='http://blog.nobody-is-like.me/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> reboot<br />
9) be happy as it works now!</p>
<p>10) ask yourself if you should have re-edited lvm.conf&#8230;</p>
<p>I have forgotten to do so but as &#8220;/tmp&#8221; is more or less recommended in lvm.conf.</p>
<p>Hope that helps either people or me (in future).</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.nobody-is-like.me/2009/12/how-to-delete-an-lvm-snapshot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Delete Trash Bin (Recycle.Bin) in Windows Server</title>
		<link>http://blog.nobody-is-like.me/2009/12/delete-trash-bin-recycle-bin-in-windows-server/</link>
		<comments>http://blog.nobody-is-like.me/2009/12/delete-trash-bin-recycle-bin-in-windows-server/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 14:29:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hosting]]></category>

		<guid isPermaLink="false">http://blog.nobody-is-like.me/?p=41</guid>
		<description><![CDATA[Seems that it sometimes only pretends to have deleted the f&#8230;ine dustbin.
Try
cd /d C:\$Recycle.bin
dir /AH
rd /s /q &#8220;NameOfFolder&#8221;
if you need some space
]]></description>
			<content:encoded><![CDATA[<p>Seems that it sometimes only pretends to have deleted the f&#8230;ine dustbin.</p>
<p>Try</p>
<p>cd /d C:\$Recycle.bin<br />
dir /AH<br />
rd /s /q &#8220;NameOfFolder&#8221;</p>
<p>if you need some space</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.nobody-is-like.me/2009/12/delete-trash-bin-recycle-bin-in-windows-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>F..k suexec</title>
		<link>http://blog.nobody-is-like.me/2009/10/f-k-suexec/</link>
		<comments>http://blog.nobody-is-like.me/2009/10/f-k-suexec/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 13:08:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.nobody-is-like.me/?p=39</guid>
		<description><![CDATA[Musste mal gesagt werden!
]]></description>
			<content:encoded><![CDATA[<p>Musste mal gesagt werden!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.nobody-is-like.me/2009/10/f-k-suexec/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Webseite der Don-Bosco Grundschule in Haan (www.don-bosco-haan.de)</title>
		<link>http://blog.nobody-is-like.me/2009/08/webseite-unserer-grundschule-wwwdon-bosco-haande/</link>
		<comments>http://blog.nobody-is-like.me/2009/08/webseite-unserer-grundschule-wwwdon-bosco-haande/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 07:37:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Don-Bosco]]></category>
		<category><![CDATA[Haan]]></category>

		<guid isPermaLink="false">http://blog.nobody-is-like.me/2009/08/19/webseite-unserer-grundschule-wwwdon-bosco-haande/</guid>
		<description><![CDATA[Fällt wohl mehr unter die Rubrik &#8220;Werbung&#8221; 
Ich habe ein bisschen an der Infrastruktur der Webseite unserer Grundschule mitgebastelt und da diese nun mittlerweile freigegeben ist, wollte ich auch etwas Werbung dafür machen.
Also wer Kinder in Haan/Solingen hat, die demnächst mal auf die Schule müssen, sollen oder wollen: Hier gibt&#8217;s infos:

Don Bosco Grundschule Haan

Tobias.
]]></description>
			<content:encoded><![CDATA[<p>Fällt wohl mehr unter die Rubrik &#8220;Werbung&#8221; <img src='http://blog.nobody-is-like.me/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
Ich habe ein bisschen an der Infrastruktur der Webseite unserer Grundschule mitgebastelt und da diese nun mittlerweile freigegeben ist, wollte ich auch etwas Werbung dafür machen.<br />
Also wer Kinder in Haan/Solingen hat, die demnächst mal auf die Schule müssen, sollen oder wollen: Hier gibt&#8217;s infos:</p>
<h1>
<a href="http://www.don-bosco-haan.de/">Don Bosco Grundschule Haan</a><br />
</h1>
<p>Tobias.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.nobody-is-like.me/2009/08/webseite-unserer-grundschule-wwwdon-bosco-haande/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>#zensursula</title>
		<link>http://blog.nobody-is-like.me/2009/06/zensursula-2/</link>
		<comments>http://blog.nobody-is-like.me/2009/06/zensursula-2/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 18:43:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://blog.nobody-is-like.me/2009/06/18/zensursula-2/</guid>
		<description><![CDATA[  
]]></description>
			<content:encoded><![CDATA[<p><a href="javascript:void(0)" id="file-link-36" title="wir sind china" class="file-link image">  </a><a href="http://mrtopf.de/blog/de/endlich-wir-sind-china/"><img src="http://blog.nobody-is-like.me/wp-content/uploads/2009/06/wirsindchina1.png" alt="wir sind china" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.nobody-is-like.me/2009/06/zensursula-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Establish a 2nd database connection in Rails</title>
		<link>http://blog.nobody-is-like.me/2009/06/establish-a-2nd-database-connection-in-rails/</link>
		<comments>http://blog.nobody-is-like.me/2009/06/establish-a-2nd-database-connection-in-rails/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 15:54:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Programmierung]]></category>
		<category><![CDATA[Ruby and Rails]]></category>
		<category><![CDATA[informix]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://blog.nobody-is-like.me/2009/06/18/establish-a-2nd-database-connection-in-rails/</guid>
		<description><![CDATA[OK, you can find some howto&#8217;s everywhere on the web but only on this site I found the complete solution:

class SecondConnection &#60; ActiveRecord::Base

SecondConnection.establish_connection(
:adapter  =&#62; &#34;informix&#34;,
:host     =&#62; &#34;localhost&#34;,
:username =&#62; &#34;hansnase&#34;,
:password =&#62; &#34;very_secret&#34;,
:database =&#62; &#34;ccdb@localhost&#34;
)

self.abstract_class = true
end

&#8220;self.abstract_class = true&#8221; makes the thing actually work. Otherwise Rails seems to cache the database connection [...]]]></description>
			<content:encoded><![CDATA[<p>OK, you can find some howto&#8217;s everywhere on the web but only on <a href="http://blog.freerails.de/?p=347">this</a> site I found the complete solution:</p>
<pre class="brush: ruby;">
class SecondConnection &lt; ActiveRecord::Base

SecondConnection.establish_connection(
:adapter  =&gt; &quot;informix&quot;,
:host     =&gt; &quot;localhost&quot;,
:username =&gt; &quot;hansnase&quot;,
:password =&gt; &quot;very_secret&quot;,
:database =&gt; &quot;ccdb@localhost&quot;
)

self.abstract_class = true
end
</pre>
<p>&#8220;self.abstract_class = true&#8221; makes the thing actually work. Otherwise Rails seems to cache the database connection and does not switch back if you access any other classes but SecondConnection.</p>
<p>Yeah!</p>
<p>Later: Not so Yeah&#8230;</p>
<p>I had to establish another call to</p>
<pre class="brush: ruby;">
  ActiveRecord::Base.establish_connection
       logger.info { &quot;Establishing Base Connection&quot; }
       log_connections
</pre>
<p>I assume it&#8217;s either an Informix problem or related to the old rails version I&#8217;m driving with.<br />
Nevertheless: It works now.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.nobody-is-like.me/2009/06/establish-a-2nd-database-connection-in-rails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zensursula&#8230;</title>
		<link>http://blog.nobody-is-like.me/2009/06/zensursula/</link>
		<comments>http://blog.nobody-is-like.me/2009/06/zensursula/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 07:23:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Politics]]></category>
		<category><![CDATA[Internetkriminalität]]></category>
		<category><![CDATA[Netzsperren]]></category>
		<category><![CDATA[Politik]]></category>
		<category><![CDATA[zensursula]]></category>

		<guid isPermaLink="false">http://blog.nobody-is-like.me/2009/06/18/zensursula/</guid>
		<description><![CDATA[OK,
wer sich auch nur ein bisschen im letzen halben Jahr im Internet rumgetrieben hat (seltsame Formulierung&#8230; Wie können sich reale Personen in virtuellen Welten aufhalten), wird die Diskussion über Netzsperren unter dem Deckmantel des Schutzes vor Kinder&#8221;pornographie&#8221; (Anführungszeichen == Pornographie bitte nicht mit Missbrauch verwechseln. Die Darstellung missbrauchter Kinder ist keine &#8220;Pornographie&#8221; sondern eben Missbrauch!) [...]]]></description>
			<content:encoded><![CDATA[<p>OK,</p>
<p>wer sich auch nur ein bisschen im letzen halben Jahr im Internet rumgetrieben hat (seltsame Formulierung&#8230; Wie können sich reale Personen in virtuellen Welten aufhalten), wird die Diskussion über Netzsperren unter dem Deckmantel des Schutzes vor Kinder&#8221;pornographie&#8221; (Anführungszeichen == Pornographie bitte nicht mit Missbrauch verwechseln. Die Darstellung missbrauchter Kinder ist keine &#8220;Pornographie&#8221; sondern eben Missbrauch!) mitbekommen haben.</p>
<p>Heute habe ich per Twitter einen wirklich guten Artikel über dieses Thema zugetragen bekommen, auf den ich hiermit gerne verlinke:</p>
<p><a href="http://www.blogsprache.de/2009/06/17/offener-brief-an-die-spd-bundestagsfraktion/">http://www.blogsprache.de/2009/06/17/offener-brief-an-die-spd-bundestagsfraktion/ </a></p>
<p>Auch wenn ich nie Mitglied einer Partei war (und auch bis heute noch nicht so genau weiss, welcher ich mich denn zurechnen lassen möchte), treffen die Aussagen doch sehr gut mein aktuelles Meinungs- und Stimmungsbild. Also: Lesen! <img src='http://blog.nobody-is-like.me/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Weitergehende Infos zu dem Thema finden sich übrigens u.a.bei heise.de (z.B.: <a href="http://www.heise.de/ct/Die-Argumente-fuer-Kinderporno-Sperren-laufen-ins-Leere--/artikel/135867">hier</a> oder <a href="http://www.heise.de/newsticker/Webseiten-mit-Kinderpornografie-lassen-sich-schnell-aus-dem-Internet-entfernen--/meldung/139427">hier</a>).</p>
<p>Auch der <a href="http://ak-zensur.de/">AK-Zensur</a> ist eine gute Anlaufstelle!</p>
<p>Mann Leute: mehr als 134.000 Menschen haben sich in einer <a href="https://epetitionen.bundestag.de/index.php?action=petition;sa=details;petition=3860">Petition</a> gegen dieses Gesetz ausgesprochen und sich u.a. als &#8220;pädokriminelle&#8221; beschimpfen lassen. Wenn es um &#8220;nichts&#8221; ginge, würde das wirklich so viele Menschen auf die (virtuellen) Beine bringen?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.nobody-is-like.me/2009/06/zensursula/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
