<?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/"
	>

<channel>
	<title>ghstyle.de</title>
	<atom:link href="http://www.ghstyle.de/ghstyle/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.ghstyle.de/ghstyle</link>
	<description>events, multimedia, webdesign, programming, traveling, volunteering, writing, books, politics,...</description>
	<pubDate>Sun, 03 Mar 2013 23:58:26 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>parsing Wikileaks&#8217; data</title>
		<link>http://www.ghstyle.de/ghstyle/?p=429</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=429#comments</comments>
		<pubDate>Sun, 03 Mar 2013 22:54:55 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[media > gfx]]></category>

		<category><![CDATA[ware]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=429</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>Mostly developed in 2o11 already, <a href="http://ghstyle.de/parsefile/" target="_blank">version 0.8a of the parsefile project is online now</a>. In 2o11, I also programmed two additional algorithms for the project, parsing the massive Wikileaks leak about the Iraq war and showing unit movements on a map. Finally, I want to share how to do this.</p>
<h3>What we need</h3>
<p>For parsing, we need the CSV data, of course. It&#8217;s the Wikileaks CSV file (iraq-war-diary-redacted.csv), which can be found e.g. on The Pirate Bay (no link provided here).</p>
<p>For visualizing, we need the Iraq map as <a href="https://anonfiles.com/file/50f578620f5a3479ea3fcce3be6e1a6c" target="_blank">published by the U.S. Government in 2003</a>, in the resolution 2000&#215;2161 pixels (if it&#8217;s not in the right resolution, make sure to resize it before you use it!).</p>
<p>On the software side, we need <a href="http://www.ghstyle.de/parsefile" target="_blank">the parsefile project</a>, of course, and these two additional algorithms, programmed by me: war_units and war_units_iraq. The algorithm package (including source code) <a href="http://www.ghstyle.de/parsefile/war_units.tar.gz" target="_blank">can be found here (tar.gz, 45,2 KB)</a> - just copy all of the included files into the &#8220;parsefile&#8221; directory, using the same folder structure as created inside the package.</p>
<h3>Parsing the CSV data</h3>
<p>The algorithm &#8220;war_units&#8221; will be used to parse the original CSV data and create two output files, one for the movements (war_units_moves.txt) and one for the list of the units (war_units_table.txt).</p>
<p>Make sure you added the &#8220;war_units&#8221; algorithm and downloaded the CSV data to put it into the &#8220;input&#8221; folder of parsefile. Rename it into &#8220;iraq.csv&#8221;.</p>
<p>Start parsefile and type the following commands:</p>
<blockquote><p>addfile input/iraq.csv</p>
<p>addalgo war_units</p>
<p>set war_units.filter=5</p>
<p>start</p></blockquote>
<p>The CSV file will be parsed and the two output files will be created in the &#8220;ourput&#8221; folder. The filter has been set to only parse units with at least 5 actions. <strong>Warning: Parsing will take a very long time!</strong></p>
<h3>Visualizing the movement data</h3>
<p>The algorithm &#8220;war_units_iraq&#8221; uses these two files to show a map with the visualized unit movements. Make sure you added the &#8220;war_units_iraq&#8221; algorithm and parsed the CSV file. Now start &#8220;parsefile&#8221; and run the following commands:</p>
<blockquote><p>addalgo war_units_iraq</p>
<p>start</p></blockquote>
<p>After a while sorting the data, the interactive map will be shown. On the right side you can select one of the parsed units and on the map the movement profile of the selected unit will be shown.</p>
<h3>Screenshots</h3>
<div id="attachment_438" class="wp-caption alignnone" style="width: 310px"><a href="http://www.ghstyle.de/ghstyle/wp-content/uploads/2013/03/start.png"><img class="size-medium wp-image-438  " title="start" src="http://www.ghstyle.de/ghstyle/wp-content/uploads/2013/03/start-300x191.png" alt="starting the parsing" width="300" height="191" /></a><p class="wp-caption-text">(starting the parsing)</p></div>
<div id="attachment_439" class="wp-caption alignnone" style="width: 310px"><a href="http://www.ghstyle.de/ghstyle/wp-content/uploads/2013/03/parsing.png"><img class="size-medium wp-image-439 " title="parsing" src="http://www.ghstyle.de/ghstyle/wp-content/uploads/2013/03/parsing-300x191.png" alt="parsing the data" width="300" height="191" /></a><p class="wp-caption-text">(parsing the data)</p></div>
<p><a href="http://www.ghstyle.de/ghstyle/wp-content/uploads/2013/03/vis.png"><img class="alignnone size-full wp-image-450" title="vis" src="http://www.ghstyle.de/ghstyle/wp-content/uploads/2013/03/vis.png" alt="visualised data" width="575" height="446" /></a></p>
<p>(visualized data on map)</p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'parsing Wikileaks&#8217; data';
var flattr_dsc = 'Mostly developed in 2o11 already, version 0.8a of the parsefile project is online now. In 2o11, I also programmed two additional algorithms for the project, parsing the massive Wikileaks leak about the Iraq war and showing unit movements on a map. Finally, I want to share how to do this. What we need For parsing, we need the CSV data, of course. It\'s the Wikileaks CSV file (iraq-war-diary-redacted.csv), which can be found e.g. on The Pirate Bay (no link provided here).  For visualizing, we need the Iraq map as published by the U.S. Government in 2003, in the resolution 2000x2161 pixels (if it\'s not in the right resolution, make sure to resize it before you use it!).  On the software side, we need the parsefile project, of course, and these two additional algorithms, programmed by me: war_units and war_units_iraq. The algorithm package (including source code) can be found here (tar.gz, 45,2 KB) - just copy all of the included files into the \"parsefile\" directory, using the same folder structure as create';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=429';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=429</wfw:commentRss>
		</item>
		<item>
		<title>STOP SOPA, PIPA, ACTA!</title>
		<link>http://www.ghstyle.de/ghstyle/?p=410</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=410#comments</comments>
		<pubDate>Wed, 18 Jan 2012 14:22:57 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[events]]></category>

		<category><![CDATA[news]]></category>

		<category><![CDATA[politics]]></category>

		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=410</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s the day of online protest agains SOPA/PIPA/ACTA and similar censorship initiatives world wide. The global movement of Pirate Parties is joining Wikipedia (English version) and others in blacking out their sites. Here&#8217;s a list of official pirate party webpages, participating in the <a href="https://twitter.com/#!/search/%23blackout">#blackout</a>:</p>
<p>Pirate Parties International (PPI): <a href="http://www.pp-international.net/">http://www.pp-international.net/</a><br />
Argentinia: <a href="http://www.partidopirata.com.ar/">http://www.partidopirata.com.ar/</a><br />
Australia: <a href="http://pirateparty.org.au/">http://pirateparty.org.au/</a><br />
Belgium: <a href="http://pirateparty.be/">http://pirateparty.be/</a><br />
Brazil: <a href="http://partidopirata.org/">http://partidopirata.org/</a><br />
Catalonia: <a href="http://grumets.pirata.cat/">http://grumets.pirata.cat/</a><br />
Czech Republic: <a href="http://pirate-party.ru/">http://www.pirati.cz/</a><br />
France: <a href="http://www.partipirate.org/">http://www.partipirate.org/</a><br />
Italy: <a href="http://www.partito-pirata.it/">http://www.partito-pirata.it/</a><br />
Kazakhstan: <a href="http://pirateparty.kz/">http://pirateparty.kz/</a><br />
Luxemburg: <a href="http://piratepartei.lu/">http://piratepartei.lu/</a><br />
Netherlands: <a href="http://piratenpartij.nl/">http://piratenpartij.nl/</a><br />
New Zealand: <a href="http://pirateparty.org.nz/">http://pirateparty.org.nz/</a><br />
Romania: <a href="http://www.partidulpirat.ro/">http://www.partidulpirat.ro/</a><br />
Russia: <a href="http://pirate-party.ru/">http://pirate-party.ru/</a><br />
Serbia: <a href="http://www.piratskapartija.com/">http://www.piratskapartija.com/</a><br />
Slovakia: <a href="http://www.piratskastrana.sk">http://www.piratskastrana.sk</a><br />
Spain: <a href="https://www.partidopirata.es/">https://www.partidopirata.es/</a><br />
Sweden: <a href="http://www.piratpartiet.se/">http://www.piratpartiet.se/</a><br />
Switzerland: <a href="http://www.piratenpartei.ch/">http://www.piratenpartei.ch/</a><br />
United Kingdom: <a href="https://www.pirateparty.org.uk/">https://www.pirateparty.org.uk/</a></p>
<p><strong>U.S.</strong><br />
Florida: <a href="http://fl.pirate.is/">http://fl.pirate.is/</a><br />
Massachusetts: <a href="http://www.masspirates.org">http://www.masspirates.org</a><br />
Georgia: <a href="http://www.piratepartyofgeorgia.org/">http://www.piratepartyofgeorgia.org/</a></p>
<p><strong>Germany</strong><br />
Germany: <a href="http://www.piratenpartei.de/">http://www.piratenpartei.de/</a><br />
Baden-Württemberg: <a href="http://www.piratenpartei-bw.de/">http://www.piratenpartei-bw.de/</a><br />
Bavaria<br />
> Augsburg: <a href="http://piraten-augsburg.de/">http://piraten-augsburg.de/</a><br />
> Swabia: <a href="http://www.piraten-schwaben.de/">http://www.piraten-schwaben.de/</a><br />
Berlin: <a href="http://berlin.piratenpartei.de/">http://berlin.piratenpartei.de/</a><br />
Brandenburg: <a href="http://www.piratenbrandenburg.de/">http://www.piratenbrandenburg.de/</a><br />
Bremen &#038; Bremerhaven: <a href="http://bremen.piratenpartei.de/">http://bremen.piratenpartei.de/</a><br />
Hamburg: <a href="http://www.piratenpartei-hamburg.de/">http://www.piratenpartei-hamburg.de/</a><br />
Hesse: <a href="http://www.piratenpartei-hessen.de/">http://www.piratenpartei-hessen.de/</a><br />
Mecklenburg-Vorpommern: <a href="http://piratenpartei-mv.de/">http://piratenpartei-mv.de/</a><br />
Lower Saxony: <a href="http://www.piratenpartei-niedersachsen.de/">http://www.piratenpartei-niedersachsen.de/</a><br />
North Rhine-Westphalia: <a href="http://piratenpartei-nrw.de/">http://piratenpartei-nrw.de/</a><br />
> Aachen: <a href="http://www.piratenpartei-aachen.de/">http://www.piratenpartei-aachen.de/</a><br />
> Bergisches Land: <a href="http://www.piraten-bergisches-land.de/">http://www.piraten-bergisches-land.de/</a><br />
> Bonn: <a href="http://piratenpartei-bonn.de/">http://piratenpartei-bonn.de/</a><br />
> Dortmund: <a href="http://www.piratenpartei-dortmund.de/">http://www.piratenpartei-dortmund.de/</a><br />
Rhineland-Palatinate: <a href="http://www.piraten-rlp.de/">http://www.piraten-rlp.de/</a><br />
Saarland: <a href="http://saar.piratenpartei.de">http://saar.piratenpartei.de</a><br />
Saxony: <a href="http://www.piraten-sachsen.de/">http://www.piraten-sachsen.de/</a><br />
> Chemnitz: <a href="http://www.piraten-chemnitz.de/">http://www.piraten-chemnitz.de/</a><br />
Schleswig-Holstein: <a href="http://www.piratenpartei-sh.de/">http://www.piratenpartei-sh.de/</a><br />
Thuringia: <a href="http://www.piraten-thueringen.de/">http://www.piraten-thueringen.de/</a><br />
> Erfurt: <a href="http://www.piraten-erfurt.de">http://www.piraten-erfurt.de</a><br />
> Jena: <a href="jena.piraten-thueringen.de/">jena.piraten-thueringen.de/</a><br />
and many more&#8230;</p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'STOP SOPA, PIPA, ACTA!';
var flattr_dsc = 'It\'s the day of online protest agains SOPA/PIPA/ACTA and similar censorship initiatives world wide. The global movement of Pirate Parties is joining Wikipedia (English version) and others in blacking out their sites. Here\'s a list of official pirate party webpages, participating in the #blackout:  Pirate Parties International (PPI): http://www.pp-international.net/ Argentinia: http://www.partidopirata.com.ar/ Australia: http://pirateparty.org.au/ Belgium: http://pirateparty.be/ Brazil: http://partidopirata.org/ Catalonia: http://grumets.pirata.cat/ Czech Republic: http://www.pirati.cz/ France: http://www.partipirate.org/ Italy: http://www.partito-pirata.it/ Kazakhstan: http://pirateparty.kz/ Luxemburg: http://piratepartei.lu/ Netherlands: http://piratenpartij.nl/ New Zealand: http://pirateparty.org.nz/ Romania: http://www.partidulpirat.ro/ Russia: http://pirate-party.ru/ Serbia: http://www.piratskapartija.com/ Slovakia: http://www.piratskastrana.sk Spain: https://www.partidopirata.es/ Swed';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=410';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=410</wfw:commentRss>
		</item>
		<item>
		<title>#Staatstrojaner alias #0zapftis in Germany</title>
		<link>http://www.ghstyle.de/ghstyle/?p=403</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=403#comments</comments>
		<pubDate>Thu, 27 Oct 2011 00:05:29 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[news]]></category>

		<category><![CDATA[politics]]></category>

		<category><![CDATA[ware]]></category>

		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=403</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>The politicians, police and other officials - once again - gave a shit about the German constitution and intruded into private computers, even making them unsafe with their own, very badly programmed, trojan horse software.</p>
<p>The only political party which is really outraged about it, is the German Pirate Party (Piratenpartei), which got 8.9 percent in the Berlin state elections, and is on its way to get seats in the national parliament in the next federal election, which is - unfortunately - not until 2013.</p>
<p>I helped to write <a href="http://web.piratenpartei.de/Pressemitteilung/staatstrojaner-bew%C3%A4hrungsprobe-f%C3%BCr-den-rechtsstaat-umfangreiche-konsequenzen-nach-v">their press release for the current issue of the state trojan (in German)</a>.</p>
<p>It&#8217;s time to change politics once and for all - by bringing more pirate parties into parliament. <a href="http://www.google.com/url?sa=t&#038;rct=j&#038;q=ppi%20international%20pirate&#038;source=web&#038;cd=3&#038;ved=0CCcQFjAC&#038;url=http%3A%2F%2Fwww.pp-international.net%2F&#038;ei=LKCoTtGiAere4QT0qJgI&#038;usg=AFQjCNHZOzMU_ggzXlCvGlE_kePSW3FvZQ&#038;cad=rja">More information about the international pirate party movement (PPI).</a></p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = '#Staatstrojaner alias #0zapftis in Germany';
var flattr_dsc = 'The politicians, police and other officials - once again - gave a shit about the German constitution and intruded into private computers, even making them unsafe with their own, very badly programmed, trojan horse software.  The only political party which is really outraged about it, is the German Pirate Party (Piratenpartei), which got 8.9 percent in the Berlin state elections, and is on its way to get seats in the national parliament in the next federal election, which is - unfortunately - not until 2013.  I helped to write their press release for the current issue of the state trojan (in German).  It\'s time to change politics once and for all - by bringing more pirate parties into parliament. More information about the international pirate party movement (PPI).';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=403';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=403</wfw:commentRss>
		</item>
		<item>
		<title>parsefile v0.7a</title>
		<link>http://www.ghstyle.de/ghstyle/?p=401</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=401#comments</comments>
		<pubDate>Wed, 26 Oct 2011 23:55:52 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[ware]]></category>

		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=401</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.ghstyle.de/parsefile/" target="_blank">parsefile project</a> is still in alpha state, missing any online functionality, but you can already use it offline, e.g. for counting strings inside a file. For more information see the &#8220;algos/count_strings_readme.txt&#8221; inside the complete package. It can also parse binary files now, see the &#8220;readme&#8221; file for the binary mode.</p>
<p>The beta version with online functionality will follow some time, when I&#8217;ve got internet again. Then it will get really useful, even social network compatibility (e.g. parsing pages inside your facebook account) is planned.</p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'parsefile v0.7a';
var flattr_dsc = 'The parsefile project is still in alpha state, missing any online functionality, but you can already use it offline, e.g. for counting strings inside a file. For more information see the \"algos/count_strings_readme.txt\" inside the complete package. It can also parse binary files now, see the \"readme\" file for the binary mode.  The beta version with online functionality will follow some time, when I\'ve got internet again. Then it will get really useful, even social network compatibility (e.g. parsing pages inside your facebook account) is planned.';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=401';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=401</wfw:commentRss>
		</item>
		<item>
		<title>parsefile project</title>
		<link>http://www.ghstyle.de/ghstyle/?p=398</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=398#comments</comments>
		<pubDate>Wed, 14 Sep 2011 19:07:55 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[ware]]></category>

		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=398</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>Because of my volunteer life in Bulgaria (and without own internet) I wasn&#8217;t able to update this blog over the last months. But in the mean time I started to program a small but flexible tool for the parsing of text files, e.g. HTML files.</p>
<p>Check out the <a href="http://www.ghstyle.de/parsefile/" target="_blank">parsefile project</a> website for more information.</p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'parsefile project';
var flattr_dsc = 'Because of my volunteer life in Bulgaria (and without own internet) I wasn\'t able to update this blog over the last months. But in the mean time I started to program a small but flexible tool for the parsing of text files, e.g. HTML files.  Check out the parsefile project website for more information.';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=398';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=398</wfw:commentRss>
		</item>
		<item>
		<title>Wikileaks domains and mirrors</title>
		<link>http://www.ghstyle.de/ghstyle/?p=372</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=372#comments</comments>
		<pubDate>Fri, 03 Dec 2010 17:51:15 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[politics]]></category>

		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=372</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><em>How to access Wikileaks while it&#8217;s under attack</em> </p>
<p>Because of the current events in the U.S., France and worldwide, here are some infos about mirrors and domains of the whistle-blowing website Wikileaks:</p>
<p><strong>French IP</strong><br />
<a href="http://213.251.145.96/" target="_blank">http://213.251.145.96/</a><br />
(Note: The French government already threatened to remove all content hosted by Wikileaks in France.)</p>
<p><strong>Swedish IP</strong><br />
<a href="http://46.59.1.2/" target="_blank">http://46.59.1.2/</a></p>
<p><strong>Additional mirror</strong><br />
<a href="http://213.251.145.96.nyud.net/" target="_blank">http://213.251.145.96.nyud.net/</a> (changing hosting countries)</p>
<p><a href="http://www.mein-parteibuch.org.nyud.net/cablegate/">www.mein-parteibuch.org.nyud.net/cablegate/</a> (cablegate releases only, seems to have problems with the browsing)</p>
<p><strong>Domains</strong><br />
They following domains are usually using the two IPs mentioned above.<br />
<a href="http://www.wikileaks.org" target="_blank">www.wikileaks.org</a> (official, not available at the moment)<br />
<a href="http://sunshinepress.org/">sunshinepress.org</a> (official)<br />
<a href="http://www.wikileaks.de" target="_blank">www.wikileaks.de</a><br />
<a href="http://www.wikileaks.ch" target="_blank">www.wikileaks.ch</a> (by the Swiss Pirate Party, NA at the moment)<br />
<a href="http://www.wikileaks.nl" target="_blank">www.wikileaks.nl</a><br />
<a href="http://www.wikileaks.fi" target="_blank">www.wikileaks.fi</a><br />
<a href="http://www.wikileaks.eu" target="_blank">www.wikileaks.eu</a><br />
<a href="http://www.wikileaks.is" target="_blank">www.wikileaks.is</a><br />
<a href="http://wikileaks.piratenpartei.de" target="_blank">wikileaks.piratenpartei.de</a> (by the German Pirate Party)<br />
<a href="http://ljsf.org/" target="_blank">ljsf.org</a></p>
<p>The current cables can also be found at the <a href="http://www.guardian.co.uk/world/interactive/2010/nov/28/us-embassy-cables-wikileaks" target="_blank">Guardian&#8217;s website</a>, hosted in the United Kingdom. You can also search the cables on <a href="http://cablesearch.org/" target="_blank">cablesearch.org</a>, and on <a href="http://www.elpais.com/documentossecretos/mapa-cables-wikileaks/">elpais.com</a> (Spanish website), both hosted in Germany.</p>
<p>At the Anti War Blog, US-American <a href="http://www.antiwar.com/blog/2010/12/02/daniel-ellsberg-says-boycott-amazon/" target="_blank">Daniel Ellsberg, famous for leaking the Pentagon Papers, called for a boycott of book-seller Amazon</a>, because it removed the Wikileaks content in an overnight action from their servers.</p>
<p>Keep spreading the truth and fighting for the freedom of opinion!</p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'Wikileaks domains and mirrors';
var flattr_dsc = 'How to access Wikileaks while it\'s under attack   Because of the current events in the U.S., France and worldwide, here are some infos about mirrors and domains of the whistle-blowing website Wikileaks:  French IP http://213.251.145.96/ (Note: The French government already threatened to remove all content hosted by Wikileaks in France.)  Swedish IP http://46.59.1.2/  Additional mirror http://213.251.145.96.nyud.net/ (changing hosting countries)  www.mein-parteibuch.org.nyud.net/cablegate/ (cablegate releases only, seems to have problems with the browsing)  Domains They following domains are usually using the two IPs mentioned above. www.wikileaks.org (official, not available at the moment) sunshinepress.org (official) www.wikileaks.de www.wikileaks.ch (by the Swiss Pirate Party, NA at the moment) www.wikileaks.nl www.wikileaks.fi www.wikileaks.eu www.wikileaks.is wikileaks.piratenpartei.de (by the German Pirate Party) ljsf.org  The current cables can also be found at the Guardian\'';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=372';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=372</wfw:commentRss>
		</item>
		<item>
		<title>Learning Bulgarian online</title>
		<link>http://www.ghstyle.de/ghstyle/?p=366</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=366#comments</comments>
		<pubDate>Tue, 02 Nov 2010 18:34:16 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[studying]]></category>

		<category><![CDATA[volunteering]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=366</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>In the light of recent events I collected some links for learning Bulgarian online (for free, of course). You can find them there:</p>
<p><a href="http://www.ghstyle.de/bulgarian.htm" target="_blank">Learning Bulgarian online for free</a> / <a href="http://www.ghstyle.de/bulgarian.htm" target="_blank">Online kostenlos Bulgarisch lernen</a></p>
<p>I&#8217;m also working on my own bilingual guide to the Bulgarian language (in German and English), but this will take some time&#8230;</p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'Learning Bulgarian online';
var flattr_dsc = 'In the light of recent events I collected some links for learning Bulgarian online (for free, of course). You can find them there:  Learning Bulgarian online for free / Online kostenlos Bulgarisch lernen  I\'m also working on my own bilingual guide to the Bulgarian language (in German and English), but this will take some time...';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=366';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=366</wfw:commentRss>
		</item>
		<item>
		<title>Drupal, Bulgaria, Flattr</title>
		<link>http://www.ghstyle.de/ghstyle/?p=360</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=360#comments</comments>
		<pubDate>Mon, 30 Aug 2010 14:39:48 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[news]]></category>

		<category><![CDATA[travel]]></category>

		<category><![CDATA[volunteering]]></category>

		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=360</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>For my time in Bulgaria, I created my first Drupal page, which was a very interesting experience, even when it took some time.</p>
<p>There will be a German blog about life in Bulgaria at <a href="http://bg.ghstyle.de" target="_blank">bg.ghstyle.de</a>.</p>
<p>I also added a Flattr connection to both blogs.</p>
<p>Flattr is a new micropayement service for Internet users. I really recommend it, because it makes it very easy to give everybody, who publishes content on the web that you really like, a little bit money.</p>
<p>It works this way: Every month you will pay an amount between 2 and 100 euro. When you are surfing around the web, there are Flattr! buttons everywhere, getting more every day.</p>
<p>You click on the Flattr buttons of stuff you like (you &#8220;flattr it&#8221;) and in the end of the month, your monthly money will be divided between all the things you flattred for.</p>
<p>Flattr keeps 10% of your money for itself, but this sounds quite fair to me. Of course, you can create Flattr buttons for your own stuff, too! So start registering now at <a href="http://www.flattr.com" target="_blank">Flattr</a>!</p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'Drupal, Bulgaria, Flattr';
var flattr_dsc = 'For my time in Bulgaria, I created my first Drupal page, which was a very interesting experience, even when it took some time.  There will be a German blog about life in Bulgaria at bg.ghstyle.de.  I also added a Flattr connection to both blogs.  Flattr is a new micropayement service for Internet users. I really recommend it, because it makes it very easy to give everybody, who publishes content on the web that you really like, a little bit money.  It works this way: Every month you will pay an amount between 2 and 100 euro. When you are surfing around the web, there are Flattr! buttons everywhere, getting more every day.  You click on the Flattr buttons of stuff you like (you \"flattr it\") and in the end of the month, your monthly money will be divided between all the things you flattred for.  Flattr keeps 10% of your money for itself, but this sounds quite fair to me. Of course, you can create Flattr buttons for your own stuff, too! So start registering now at Flattr!';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=360';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=360</wfw:commentRss>
		</item>
		<item>
		<title>Where to put my server?</title>
		<link>http://www.ghstyle.de/ghstyle/?p=341</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=341#comments</comments>
		<pubDate>Sun, 29 Aug 2010 01:10:31 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=341</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m working on an small <a href="http://www.ghstyle.de/weblaws/" target="_blank">overview of possible legal problems and laws web masters and hosters have to face in different countries worldwide</a>.</p>
<p>Depending on my time, it will grow a little bit every few months.</p>
<p>Feel free to add your own experience, tips and opinions by using the feedback form provided!</p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'Where to put my server?';
var flattr_dsc = 'I\'m working on an small overview of possible legal problems and laws web masters and hosters have to face in different countries worldwide.  Depending on my time, it will grow a little bit every few months.  Feel free to add your own experience, tips and opinions by using the feedback form provided!';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=341';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=341</wfw:commentRss>
		</item>
		<item>
		<title>11.09.10 Freiheit statt Angst! @ Berlin</title>
		<link>http://www.ghstyle.de/ghstyle/?p=306</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=306#comments</comments>
		<pubDate>Fri, 27 Aug 2010 14:44:02 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[events]]></category>

		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=306</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>&#8220;Freedom instead of Fear!&#8221;, a large demonstration for the protection of personal rights and against the totalitarianism movement inside many governments worldwide, is taking place in Berlin on September 11th, 2010 again.</p>
<p>More information: <a href="http://www.freiheitstattangst.de" target="_blank">www.freiheitstattangst.de</a> (German)</p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = '11.09.10 Freiheit statt Angst! @ Berlin';
var flattr_dsc = '\"Freedom instead of Fear!\", a large demonstration for the protection of personal rights and against the totalitarianism movement inside many governments worldwide, is taking place in Berlin on September 11th, 2010 again.  More information: www.freiheitstattangst.de (German)';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=306';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=306</wfw:commentRss>
		</item>
		<item>
		<title>current travel map</title>
		<link>http://www.ghstyle.de/ghstyle/?p=294</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=294#comments</comments>
		<pubDate>Wed, 25 Aug 2010 21:51:31 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[travel]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=294</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>My current travel map:</p>
<p><img src="http://chart.apis.google.com/chart?cht=t&#038;chs=440x220&#038;chtm=world&#038;chf=bg,s,336699&#038;chco=d0d0d0,cc0000&#038;chd=s:999999999999999999999999&#038;chld=ALBACZDKEEDELVITLTATHRFRHUMKMEPLRUSKSISEGBESRSTN" width="440" height="220" /><br />visited 24 states (10.6%)<br /><a href="http://douweosinga.com/projects/visited?region=world">Create your own visited map of The World</a></p>
<p>Well, Spain isn&#8217;t quite correct, in fact it was Tenerife. And Serbia doesn&#8217;t show red on the map, although it has been counted. Kosovo is not available. In Russia, I have only been to the European part. But apart from that, this map gives a good overview of my travels&#8230; <img src='http://www.ghstyle.de/ghstyle/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'current travel map';
var flattr_dsc = 'My current travel map:  visited 24 states (10.6%)Create your own visited map of The World  Well, Spain isn\'t quite correct, in fact it was Tenerife. And Serbia doesn\'t show red on the map, although it has been counted. Kosovo is not available. In Russia, I have only been to the European part. But apart from that, this map gives a good overview of my travels... :-)';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=294';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=294</wfw:commentRss>
		</item>
		<item>
		<title>EVS @ Varna, Bulgaria</title>
		<link>http://www.ghstyle.de/ghstyle/?p=286</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=286#comments</comments>
		<pubDate>Tue, 24 Aug 2010 09:43:05 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[news]]></category>

		<category><![CDATA[volunteering]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=286</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>If everything works out, I will do my EVS (European Voluntary Service) at the IDEA organization in Varna, Bulgaria for twelve months, beginning this December.</p>
<p>More information about the organization on <a href="http://idea-ngo.com/">their website</a> (in Bulgarian).</p>
<p>More information about EVS on the website of the <a href="http://ec.europa.eu/youth/youth-in-action-programme/doc82_en.htm">European Commission</a>.</p>
<p>That&#8217;s why I have to change my travel plans. Instead of going all the way to Georgia, I probably just visit a friend in Bucarest.</p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'EVS @ Varna, Bulgaria';
var flattr_dsc = 'If everything works out, I will do my EVS (European Voluntary Service) at the IDEA organization in Varna, Bulgaria for twelve months, beginning this December.  More information about the organization on their website (in Bulgarian).  More information about EVS on the website of the European Commission.  That\'s why I have to change my travel plans. Instead of going all the way to Georgia, I probably just visit a friend in Bucarest.';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=286';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=286</wfw:commentRss>
		</item>
		<item>
		<title>www.traumfaehrte.com</title>
		<link>http://www.ghstyle.de/ghstyle/?p=272</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=272#comments</comments>
		<pubDate>Fri, 20 Aug 2010 17:47:55 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[books]]></category>

		<category><![CDATA[ware]]></category>

		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=272</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>Now, there is an advanced search function with two different search algorithms for postcards online at <a href="http://www.traumfaehrte.com" target="_blank">www.traumfaehrtecom</a>.</p>
<p>The whole project, including admin area, without automatically generated PHP, HTML and XML code, exceeds 17,200 code lines.</p>
<p>With over 12,000 books and - since today - over 1,100 postcards (including geographical information as well as their front and back side scans) it has to deal with a lot of stuff and till now there have not been any big problems.</p>
<p>Biggest programming issues are the search functions, organizing the geographical data of the postcards (with XML and interactive Google Map) and the automatic translating and parsing functionality of the admin area.</p>
<p>The technology is simple PHP, mySQL, XML, CSS, HTML and JavaScript. Just one Flash file for the main page has been used.</p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'www.traumfaehrte.com';
var flattr_dsc = 'Now, there is an advanced search function with two different search algorithms for postcards online at www.traumfaehrtecom.  The whole project, including admin area, without automatically generated PHP, HTML and XML code, exceeds 17,200 code lines.  With over 12,000 books and - since today - over 1,100 postcards (including geographical information as well as their front and back side scans) it has to deal with a lot of stuff and till now there have not been any big problems.  Biggest programming issues are the search functions, organizing the geographical data of the postcards (with XML and interactive Google Map) and the automatic translating and parsing functionality of the admin area.  The technology is simple PHP, mySQL, XML, CSS, HTML and JavaScript. Just one Flash file for the main page has been used.';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=272';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=272</wfw:commentRss>
		</item>
		<item>
		<title>evs volunteering</title>
		<link>http://www.ghstyle.de/ghstyle/?p=267</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=267#comments</comments>
		<pubDate>Thu, 12 Aug 2010 23:08:25 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[news]]></category>

		<category><![CDATA[volunteering]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=267</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>I want to take part in the European Voluntary Service in 2011, that&#8217;s why I wrote applications for Sofia and Varna in Bulgaria as well to a few selected organizations in Praha, Czech Republic.</p>
<p>In the end of August I will have my first phone interview with a very cool organization in Sofia, the organizers of the <a href="http://www.filmini.org/" target="_blank">filmini short movie festival</a>.</p>
<p>More infos soon!</p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'evs volunteering';
var flattr_dsc = 'I want to take part in the European Voluntary Service in 2011, that\'s why I wrote applications for Sofia and Varna in Bulgaria as well to a few selected organizations in Praha, Czech Republic.  In the end of August I will have my first phone interview with a very cool organization in Sofia, the organizers of the filmini short movie festival.  More infos soon!';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=267';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=267</wfw:commentRss>
		</item>
		<item>
		<title>spam protection</title>
		<link>http://www.ghstyle.de/ghstyle/?p=221</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=221#comments</comments>
		<pubDate>Thu, 12 Aug 2010 22:08:49 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[news]]></category>

		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=221</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>Because of too much spam, from now on comments will be disabled for guests.</p>
<p>Please register or write me an e-mail if you want to comment on something.</p>
<p>Thanks!</p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'spam protection';
var flattr_dsc = 'Because of too much spam, from now on comments will be disabled for guests.  Please register or write me an e-mail if you want to comment on something.  Thanks!';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=221';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=221</wfw:commentRss>
		</item>
		<item>
		<title>Pirates!</title>
		<link>http://www.ghstyle.de/ghstyle/?p=201</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=201#comments</comments>
		<pubDate>Thu, 06 May 2010 12:40:13 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=201</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>On Sunday there is the state election of North Rine-Westphalia and the current projection of one of the important public TV stations, ZDF, says that the <a href="http://www.piratenpartei-nrw.de" target="_blank">Pirate Party NRW</a> is at 3 % at the moment.</p>
<p>That wouldn&#8217;t be enough for a seat in the state parliament (Landtag) - 5 % are needed, but it would be a very good result after only 1.7 % in the Federal election - and there are still some days left to convince more people from the noble goals of the Pirate Movement in Germany and all around the world.</p>
<p>Next week in Bingen there will be the <a href="http://wiki.piratenpartei.de/Bundesparteitag_2010.1" target="_blank">Federal Convention of the Pirate Party Germany</a>. Unfortunately I don&#8217;t know yet whether I can manage to get there. I would like to support the candidates <a title="Benutzer:Commodore" href="http://wiki.piratenpartei.de/Benutzer:Commodore">Christopher Lauer</a> and <a title="Benutzer:Occcu" href="http://wiki.piratenpartei.de/Benutzer:Occcu">Katja Mette</a>.</p>
<p>Anyway, keep up the good work and vote for the Pirates all around the world!</p>
<p>&#8220;Klarmachen zum Ändern!&#8221; (Be ready to change!)</p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'Pirates!';
var flattr_dsc = 'On Sunday there is the state election of North Rine-Westphalia and the current projection of one of the important public TV stations, ZDF, says that the Pirate Party NRW is at 3 % at the moment.  That wouldn\'t be enough for a seat in the state parliament (Landtag) - 5 % are needed, but it would be a very good result after only 1.7 % in the Federal election - and there are still some days left to convince more people from the noble goals of the Pirate Movement in Germany and all around the world.  Next week in Bingen there will be the Federal Convention of the Pirate Party Germany. Unfortunately I don\'t know yet whether I can manage to get there. I would like to support the candidates Christopher Lauer and Katja Mette.  Anyway, keep up the good work and vote for the Pirates all around the world!  \"Klarmachen zum Ändern!\" (Be ready to change!)';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=201';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=201</wfw:commentRss>
		</item>
		<item>
		<title>Nix neues: Die katholische Kirche und der Kindesmissbrauch</title>
		<link>http://www.ghstyle.de/ghstyle/?p=194</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=194#comments</comments>
		<pubDate>Wed, 28 Apr 2010 09:22:08 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[books]]></category>

		<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=194</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>Bereits 1784 beschäftigte sich die Satire mit einem delikaten Thema: Dem Missbrauch von Kindern durch katholische Priester - wie durch den Buchnachdruck von 1913 der Satirischen Bibliothek im Janus-Verlag ersichtlich: <a title="Nachdruck bei Antiquariat Traumfährte" href="http://traumfaehrte.de/core.php?p=books&amp;l=de&amp;do=show&amp;id=20113&amp;c=13&amp;s=72" target="_blank">&#8220;<strong>Obermayr - Bildergalerie katholischer Misbräuche.&#8221;</strong></a></p>
<p>Already in 1784, satire dealt with a delicat topic: The molestation of childs by Catholic priests - as seen in a (German) book reprint in the Satiric Library of the Janus publishing company: <a href="http://traumfaehrte.de/core.php?p=books&amp;l=en&amp;do=show&amp;id=20113&amp;c=13&amp;s=72">&#8220;</a><strong><a href="http://traumfaehrte.de/core.php?p=books&amp;l=en&amp;do=show&amp;id=20113&amp;c=13&amp;s=72">Obermayr  - Bildergalerie katholischer Misbräuche.&#8221;</a></strong></p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'Nix neues: Die katholische Kirche und der Kindesmissbrauch';
var flattr_dsc = 'Bereits 1784 beschäftigte sich die Satire mit einem delikaten Thema: Dem Missbrauch von Kindern durch katholische Priester - wie durch den Buchnachdruck von 1913 der Satirischen Bibliothek im Janus-Verlag ersichtlich: \"Obermayr - Bildergalerie katholischer Misbräuche.\"  Already in 1784, satire dealt with a delicat topic: The molestation of childs by Catholic priests - as seen in a (German) book reprint in the Satiric Library of the Janus publishing company: \"Obermayr  - Bildergalerie katholischer Misbräuche.\"';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=194';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=194</wfw:commentRss>
		</item>
		<item>
		<title>PPI conference @ Brussels</title>
		<link>http://www.ghstyle.de/ghstyle/?p=189</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=189#comments</comments>
		<pubDate>Sat, 17 Apr 2010 11:13:55 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=189</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>This weekend, there is a conference of the international Pirate Party movement in Brussels. Today there were 23 pirate parties participating:</p>
<ul>
<li>Australia (remote)</li>
<li>Austria (remote)</li>
<li>Belgium</li>
<li>Brazil</li>
<li>Bulgaria</li>
<li>Czech Republic</li>
<li>Denmark</li>
<li>Finland (remote)</li>
<li>France</li>
<li>Germany</li>
<li>Italy (remote)</li>
<li>Luxembourg</li>
<li>Netherlands</li>
<li>Poland</li>
<li>Portugal</li>
<li>Romania</li>
<li>Russia</li>
<li>Serbia</li>
<li>Spain</li>
<li>Sweden</li>
<li>Switzerland</li>
<li>Turkey</li>
<li>United Kingdom</li>
</ul>
<p>The opening speech was by <a href="http://en.wikipedia.org/wiki/Samir_Allioui" target="_blank">Samir Allioui</a> (co-founder of the Dutch pirate party), todays chairman is <span class="author-g-jsmbl0b4xkf19n9v"><a href="http://wiki.piratenpartei.de/Benutzer:Dichter" target="_blank"> Gregory Engels</a> (international coordinator of the German pirate party).</span></p>
<p>At the moment, there is a discussion about the statues based on a proposal of the German pirate party which was favored over a Czech proposal.</p>
<p>More information on the <a href="http://twitterwall.me/ppi" target="_blank">Twitter wall</a> or the <a href="http://ppi.piratenpad.de/20?" target="_blank">live protocol</a> on PiratenPad.</p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'PPI conference @ Brussels';
var flattr_dsc = 'This weekend, there is a conference of the international Pirate Party movement in Brussels. Today there were 23 pirate parties participating:  	Australia (remote) 	Austria (remote) 	Belgium 	Brazil 	Bulgaria 	Czech Republic 	Denmark 	Finland (remote) 	France 	Germany 	Italy (remote) 	Luxembourg 	Netherlands 	Poland 	Portugal 	Romania 	Russia 	Serbia 	Spain 	Sweden 	Switzerland 	Turkey 	United Kingdom  The opening speech was by Samir Allioui (co-founder of the Dutch pirate party), todays chairman is  Gregory Engels (international coordinator of the German pirate party).  At the moment, there is a discussion about the statues based on a proposal of the German pirate party which was favored over a Czech proposal.  More information on the Twitter wall or the live protocol on PiratenPad.';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=189';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=189</wfw:commentRss>
		</item>
		<item>
		<title>Hitchhiking report Saint Petersburg - Dresden</title>
		<link>http://www.ghstyle.de/ghstyle/?p=185</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=185#comments</comments>
		<pubDate>Tue, 13 Apr 2010 08:42:09 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[travel]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=185</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>Here is the trip report about my hitchhiking trip back from Saint Petersburg to Dresden via Prostejov:</p>
<p><a href="http://www.abgefahren-ev.de/blogs/ans/20100412/saint-petersburg-dresden-prostejov" target="_blank">http://www.abgefahren-ev.de/blogs/ans/20100412/saint-petersburg-dresden-prostejov</a></p>
<p>(in English this time!)</p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'Hitchhiking report Saint Petersburg - Dresden';
var flattr_dsc = 'Here is the trip report about my hitchhiking trip back from Saint Petersburg to Dresden via Prostejov:  http://www.abgefahren-ev.de/blogs/ans/20100412/saint-petersburg-dresden-prostejov  (in English this time!)';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=185';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=185</wfw:commentRss>
		</item>
		<item>
		<title>next week next trip !</title>
		<link>http://www.ghstyle.de/ghstyle/?p=181</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=181#comments</comments>
		<pubDate>Fri, 26 Feb 2010 20:30:01 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[travel]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=181</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>On Tuesday I&#8217;m going to go to Berlin, on Thursday I fly from Berlin-Tegel to Saint Petersburg visiting a friend and together we will give Moscow a short visit after my arrival. After two weeks Russia I&#8217;m planning to hitchhike back and visit a friend in Czech Republic.</p>
<p>Keep rockin !</p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'next week next trip !';
var flattr_dsc = 'On Tuesday I\'m going to go to Berlin, on Thursday I fly from Berlin-Tegel to Saint Petersburg visiting a friend and together we will give Moscow a short visit after my arrival. After two weeks Russia I\'m planning to hitchhike back and visit a friend in Czech Republic.  Keep rockin !';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=181';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=181</wfw:commentRss>
		</item>
		<item>
		<title>Entdecken Sie die Welt historischer Bücher und Ansichtskarten!</title>
		<link>http://www.ghstyle.de/ghstyle/?p=171</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=171#comments</comments>
		<pubDate>Fri, 18 Dec 2009 12:34:26 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[books]]></category>

		<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=171</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>Historische und antiquarische Bücher, Originalgraphik sowie alte Ansichtskarten und Postkarten in großer Vielfalt und Auswahl, inkl. Online-Shop mit weltweitem Versand: <a href="http://www.traumfaehrte.de" target="_blank">Antiquariat Traumfährte in Dresden</a>!</p>
<p>Discover the world of historic and antiquarian books, original graphic and old picture postcards in large number and variety, incl. online shop with worldwide shipping: <a href="http://www.traumfaehrte.com" target="_blank">Antiquariat Traumfährte in Dresden</a>!</p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'Entdecken Sie die Welt historischer Bücher und Ansichtskarten!';
var flattr_dsc = 'Historische und antiquarische Bücher, Originalgraphik sowie alte Ansichtskarten und Postkarten in großer Vielfalt und Auswahl, inkl. Online-Shop mit weltweitem Versand: Antiquariat Traumfährte in Dresden!  Discover the world of historic and antiquarian books, original graphic and old picture postcards in large number and variety, incl. online shop with worldwide shipping: Antiquariat Traumfährte in Dresden!';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=171';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=171</wfw:commentRss>
		</item>
		<item>
		<title>www.traumfaehrte.de</title>
		<link>http://www.ghstyle.de/ghstyle/?p=161</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=161#comments</comments>
		<pubDate>Sun, 13 Dec 2009 11:31:51 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=161</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>Since Friday, the website of Antiquariat Traumfährte, <a href="http://www.traumfaehrte.de" target="_blank">www.traumfaehrte.de</a> is online. There you can order historic books (and soon, historic picture material like postcards, too) from a professional old book shop online.</p>
<p>ghstyle.de created the website completely, features include:<br />
+ php 4, mysql database (with over 10,000 entries already)<br />
+ searching, browsing, sorting books, preview pictures possible<br />
+ admin area with upload and parsing functionality (csv-to-database parsing)<br />
+ shopping cart and ordering functionality<br />
+ multi-language support, German and English implemented</p>
<p>Explore the world of old books at <a href="http://www.traumfaehrte.de" target="_blank">www.traumfaehrte.de</a>!</p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'www.traumfaehrte.de';
var flattr_dsc = 'Since Friday, the website of Antiquariat Traumfährte, www.traumfaehrte.de is online. There you can order historic books (and soon, historic picture material like postcards, too) from a professional old book shop online.  ghstyle.de created the website completely, features include: + php 4, mysql database (with over 10,000 entries already) + searching, browsing, sorting books, preview pictures possible + admin area with upload and parsing functionality (csv-to-database parsing) + shopping cart and ordering functionality + multi-language support, German and English implemented  Explore the world of old books at www.traumfaehrte.de!';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=161';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=161</wfw:commentRss>
		</item>
		<item>
		<title>serial: 4th part, others revised</title>
		<link>http://www.ghstyle.de/ghstyle/?p=154</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=154#comments</comments>
		<pubDate>Fri, 30 Oct 2009 00:31:08 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=154</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>My German fantasy/horror serial &#8220;KomA&#8221; got a new chapter some time ago. Now, I also revised the other ones. That makes four chapters, I want you to read. You can write your feedback directly on the KomA web page.</p>
<p>I already started the 5th chapter, but it could take some time.</p>
<p><a href="http://www.ghstyle.de/koma/" target="_blank"><span><strong>&gt; check it out &lt;</strong></span></a></p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'serial: 4th part, others revised';
var flattr_dsc = 'My German fantasy/horror serial \"KomA\" got a new chapter some time ago. Now, I also revised the other ones. That makes four chapters, I want you to read. You can write your feedback directly on the KomA web page.  I already started the 5th chapter, but it could take some time.  &gt; check it out &lt;';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=154';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=154</wfw:commentRss>
		</item>
		<item>
		<title>In July</title>
		<link>http://www.ghstyle.de/ghstyle/?p=134</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=134#comments</comments>
		<pubDate>Mon, 26 Oct 2009 11:59:53 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[media > video]]></category>

		<category><![CDATA[travel]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=134</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>In July, one of the best German road movies (many scenes remind me of my own Balkan trip).</p>
<p><strong>excerpt</strong><br />
<object type="application/x-shockwave-flash" data="http://www.youtube.com/v/Hrt7WISzfME" width="425" height="350"><param name="movie" value="http://www.youtube.com/v/Hrt7WISzfME" /></object></p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'In July';
var flattr_dsc = 'In July, one of the best German road movies (many scenes remind me of my own Balkan trip).  excerpt [youtube Hrt7WISzfME]';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=134';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=134</wfw:commentRss>
		</item>
		<item>
		<title>hitchhiked over 10.000km</title>
		<link>http://www.ghstyle.de/ghstyle/?p=130</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=130#comments</comments>
		<pubDate>Tue, 29 Sep 2009 18:45:14 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[travel]]></category>

		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=130</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>Coming back from my Balkan trip, and a quick tour to Eastern Czech republic, right now I  hitchhiked about 10.360km around Europe.</p>
<p>Check out <a href="http://maps.google.com/maps/ms?msa=0&amp;msid=112642868775377435530.000438461c3f945d4c84b">my hitchhiking trips</a> on Google Maps.</p>
<p><span style="color: #ff0000;"><strong>EDIT: In German, there is a hitchhiking report about this trip on the web page (beta version) of the German hitchhiking club &#8220;abgefahren e.V.&#8221; &#8211;&gt; <a href="http://beta.abgefahren-ev.de/blogs/ans/20091006/balkantripp-augustseptember-2009" target="_blank">link</a>.</strong></span></p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'hitchhiked over 10.000km';
var flattr_dsc = 'Coming back from my Balkan trip, and a quick tour to Eastern Czech republic, right now I  hitchhiked about 10.360km around Europe.  Check out my hitchhiking trips on Google Maps.  EDIT: In German, there is a hitchhiking report about this trip on the web page (beta version) of the German hitchhiking club \"abgefahren e.V.\" --&gt; link.';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=130';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=130</wfw:commentRss>
		</item>
		<item>
		<title>12.09.09 Freiheit statt Angst @ Berlin</title>
		<link>http://www.ghstyle.de/ghstyle/?p=126</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=126#comments</comments>
		<pubDate>Sat, 05 Sep 2009 15:31:26 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[events]]></category>

		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=126</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.aktion-freiheitstattangst.org" target="_blank">www.aktion-freiheitstattangst.org</a></p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = '12.09.09 Freiheit statt Angst @ Berlin';
var flattr_dsc = 'www.aktion-freiheitstattangst.org';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=126';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=126</wfw:commentRss>
<enclosure url="http://www.archive.org/download/FreiheitStattAngst2009DerTrailer/demotrailer4_512kb.mp4" length="6336184" type="video/mp4" />
		</item>
		<item>
		<title>Du bist Terrorist!</title>
		<link>http://www.ghstyle.de/ghstyle/?p=117</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=117#comments</comments>
		<pubDate>Sat, 13 Jun 2009 15:49:37 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[media > video]]></category>

		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=117</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object width="400" height="225"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=4631958&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=4631958&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="225"></embed></object>
<p><a href="http://vimeo.com/4631958">Du bist Terrorist</a> from <a href="http://vimeo.com/user221974">alexanderlehmann</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p><a href="http://www.piratenpartei.de/navigation/politik/unsere-ziele" target="_blank">Dagegen?</a></p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'Du bist Terrorist!';
var flattr_dsc = 'Du bist Terrorist from alexanderlehmann on Vimeo.  Dagegen?';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=117';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=117</wfw:commentRss>
		</item>
		<item>
		<title>four good seats</title>
		<link>http://www.ghstyle.de/ghstyle/?p=113</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=113#comments</comments>
		<pubDate>Mon, 08 Jun 2009 10:22:27 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=113</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>Three seats for the independent citizens in the city council of Dresden and one seat for the Swedish pirate party in the EU parliament.</p>
<p>The German pirate party gained 0.9% with 229.117 votes.</p>
<p>Well done!</p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'four good seats';
var flattr_dsc = 'Three seats for the independent citizens in the city council of Dresden and one seat for the Swedish pirate party in the EU parliament.  The German pirate party gained 0.9% with 229.117 votes.  Well done!';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=113';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=113</wfw:commentRss>
		</item>
		<item>
		<title>tomorrow is election day</title>
		<link>http://www.ghstyle.de/ghstyle/?p=100</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=100#comments</comments>
		<pubDate>Sat, 06 Jun 2009 21:20:27 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=100</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>Tomorrow I can vote about the EU parliament and the city council of my home town Dresden in Germany.</p>
<p>Because all the time the large parties do very stupid things, I recommend the following small parties/unions:</p>
<p>any <strong>Pirate Party</strong> for the EU parliament (in Germany: <a href="http://www.piratenpartei.de" target="_blank">www.piratenpartei.de</a>)</p>
<p><strong>&#8220;Freie Bürger&#8221;</strong> union for the Dresden city council (<a href="http://www.freie-buerger-dresden.de" target="_blank">www.freie-buerger-dresden.de</a>)</p>
<p>Go and VOTE!</p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'tomorrow is election day';
var flattr_dsc = 'Tomorrow I can vote about the EU parliament and the city council of my home town Dresden in Germany.  Because all the time the large parties do very stupid things, I recommend the following small parties/unions:  any Pirate Party for the EU parliament (in Germany: www.piratenpartei.de)  \"Freie Bürger\" union for the Dresden city council (www.freie-buerger-dresden.de)  Go and VOTE!';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=100';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=100</wfw:commentRss>
		</item>
		<item>
		<title>Barack&#8217;s limousine @ train station Dresden-Neustadt</title>
		<link>http://www.ghstyle.de/ghstyle/?p=104</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=104#comments</comments>
		<pubDate>Fri, 05 Jun 2009 14:00:28 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[media > video]]></category>

		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=104</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://vids.myspace.com/index.cfm?fuseaction=vids.individual&#038;videoid=58504491">Barack Obama @ train station Dresden-Neustadt</a><br/><object width="425px" height="360px" ><param name="allowFullScreen" value="true"/><param name="wmode" value="transparent"/><param name="movie" value="http://mediaservices.myspace.com/services/media/embed.aspx/m=58504491,t=1,mt=video"/><embed src="http://mediaservices.myspace.com/services/media/embed.aspx/m=58504491,t=1,mt=video" width="425" height="360" allowFullScreen="true" type="application/x-shockwave-flash" wmode="transparent"></embed></object></p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'Barack&#8217;s limousine @ train station Dresden-Neustadt';
var flattr_dsc = 'Barack Obama @ train station Dresden-Neustadt';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=104';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=104</wfw:commentRss>
		</item>
		<item>
		<title>Mr. President has a good taste</title>
		<link>http://www.ghstyle.de/ghstyle/?p=98</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=98#comments</comments>
		<pubDate>Wed, 27 May 2009 07:17:33 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[events]]></category>

		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=98</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>Barack Obama is going to visit Dresden. This guy definitly has a good taste!</p>
<p><a href="http://www.dresden.de/obama/en/index.php" target="_blank">http://obama.dresden.de/</a></p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'Mr. President has a good taste';
var flattr_dsc = 'Barack Obama is going to visit Dresden. This guy definitly has a good taste!  http://obama.dresden.de/';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=98';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=98</wfw:commentRss>
		</item>
		<item>
		<title>hitchhiking again!</title>
		<link>http://www.ghstyle.de/ghstyle/?p=96</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=96#comments</comments>
		<pubDate>Wed, 27 May 2009 07:16:13 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[travel]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=96</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>Today I will be back on the road, hitchhiking all the way through Poland (over Kraków) to visit a friend in Lipany, Eastern Slovakia.</p>
<p><font color="red"><strong>EDIT: A very nice trip, thanks to Ben and Jakob for joining me in Slovakia and our great trip back! I never thought hitchhiking with two pals would be that easy. You can find a small description of the trip (in German) at <a href="http://abgefahren-ev.de/blogs/ans/20090604/kurztripp-ostslowakei-hinzu-alleine-durch-polen-r-ckzu-zu-dritt-durch-tschechien" target="_blank">abgefahren e.V.</a></strong></font>.</p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'hitchhiking again!';
var flattr_dsc = 'Today I will be back on the road, hitchhiking all the way through Poland (over Kraków) to visit a friend in Lipany, Eastern Slovakia.  EDIT: A very nice trip, thanks to Ben and Jakob for joining me in Slovakia and our great trip back! I never thought hitchhiking with two pals would be that easy. You can find a small description of the trip (in German) at abgefahren e.V..';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=96';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=96</wfw:commentRss>
		</item>
		<item>
		<title>software internship</title>
		<link>http://www.ghstyle.de/ghstyle/?p=94</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=94#comments</comments>
		<pubDate>Thu, 23 Apr 2009 11:19:52 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[ware]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=94</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>finally we have to complete our own software project at university! We&#8217;re 5 students, I&#8217;m the assistant of the chief programmer and it&#8217;s a really cool team! Check out our <a href="http://www1.inf.tu-dresden.de/~swt09-02/" target="_blank">project page</a> (in German)!</p>
<p>It&#8217;s a visualization of the Depth-First- (DFS) and Breadth-First (BFS) search algorithms for graphs, programmed in Java as a module of the jAlgo application, developed by professores and students of the TU Dresden.</p>
<p><span style="color: #ff0000;"><strong>EDIT: The project has been completed successfully. Downloads are available on the project page (link above).</strong></span></p>
<p><strong></strong></p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'software internship';
var flattr_dsc = 'finally we have to complete our own software project at university! We\'re 5 students, I\'m the assistant of the chief programmer and it\'s a really cool team! Check out our project page (in German)!  It\'s a visualization of the Depth-First- (DFS) and Breadth-First (BFS) search algorithms for graphs, programmed in Java as a module of the jAlgo application, developed by professores and students of the TU Dresden.  EDIT: The project has been completed successfully. Downloads are available on the project page (link above).';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=94';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=94</wfw:commentRss>
		</item>
		<item>
		<title>last trip: Sweden, next: Eastern Slovakia</title>
		<link>http://www.ghstyle.de/ghstyle/?p=90</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=90#comments</comments>
		<pubDate>Thu, 23 Apr 2009 11:10:00 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[travel]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=90</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>two weeks <a href="http://www.couchsurfing.com" target="_blank">couchsurfing</a> in London was great!<br />
After that, one week speed hitchhiking to Sweden - great fun too. In German, there is a trip report on the webpage of the German hitchhiking society <a href="http://www.abgefahren-ev.de/blogs/ans/20090417/hinzu-priester-r-ckzu-m-rder-kurztripp-nach-schweden" target="_blank">abgefahren e.V.</a>.</p>
<p>Next trip will be end of May/begin of June, visiting a friend from my city Dresden working in Eastern Slovakia at the moment. Hitchhiking, of course!</p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'last trip: Sweden, next: Eastern Slovakia';
var flattr_dsc = 'two weeks couchsurfing in London was great! After that, one week speed hitchhiking to Sweden - great fun too. In German, there is a trip report on the webpage of the German hitchhiking society abgefahren e.V..  Next trip will be end of May/begin of June, visiting a friend from my city Dresden working in Eastern Slovakia at the moment. Hitchhiking, of course!';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=90';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=90</wfw:commentRss>
		</item>
		<item>
		<title>biss.fm - better radio in Saxony</title>
		<link>http://www.ghstyle.de/ghstyle/?p=82</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=82#comments</comments>
		<pubDate>Tue, 24 Feb 2009 12:58:42 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[media > audio]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=82</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>As written on <a href="http://blog.myoon.com/2009/02/20/bissfm-wir-verdienen-ein-besseres-radio/">myoon.com</a>, BISS.FM is an initiative to finally found a youth radio station like Sputnik or Fritz in Saxony and support online radio station in the region. Our sad radio station scene has to be improved - support it!</p>
<p><a href="http://www.biss.fm">www.biss.fm</a></p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'biss.fm - better radio in Saxony';
var flattr_dsc = 'As written on myoon.com, BISS.FM is an initiative to finally found a youth radio station like Sputnik or Fritz in Saxony and support online radio station in the region. Our sad radio station scene has to be improved - support it!  www.biss.fm';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=82';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=82</wfw:commentRss>
		</item>
		<item>
		<title>study section online</title>
		<link>http://www.ghstyle.de/ghstyle/?p=47</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=47#comments</comments>
		<pubDate>Wed, 21 Jan 2009 16:41:34 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[studying]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=47</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ghstyle.de/study" target="_blank">click here for information, links and downloads about the computer science studies at Dresden University of Technology, Germany</a></p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'study section online';
var flattr_dsc = 'click here for information, links and downloads about the computer science studies at Dresden University of Technology, Germany';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=47';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=47</wfw:commentRss>
		</item>
		<item>
		<title>flying to London</title>
		<link>http://www.ghstyle.de/ghstyle/?p=70</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=70#comments</comments>
		<pubDate>Sun, 18 Jan 2009 17:33:27 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[travel]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=70</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>Yeah, finally we booked our flight - visiting London in March. I&#8217;m curious whether it will be as rainy and foggy as usual. Of course we will <a title="couchsurfing.com" href="http://www.couchsurfing.com" target="_blank">couchsurf around</a> the whole trip.</p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'flying to London';
var flattr_dsc = 'Yeah, finally we booked our flight - visiting London in March. I\'m curious whether it will be as rainy and foggy as usual. Of course we will couchsurf around the whole trip.';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=70';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=70</wfw:commentRss>
		</item>
		<item>
		<title>KomA: third chapter</title>
		<link>http://www.ghstyle.de/ghstyle/?p=59</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=59#comments</comments>
		<pubDate>Sun, 18 Jan 2009 17:18:30 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=59</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>Now the third chapter of the serial &#8220;KomA&#8221; is online. You find it at <a title="serial KomA" href="http://www.ghstyle.de/koma/" target="_blank">www.ghstyle.de/koma</a> (German only).</p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'KomA: third chapter';
var flattr_dsc = 'Now the third chapter of the serial \"KomA\" is online. You find it at www.ghstyle.de/koma (German only).';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=59';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=59</wfw:commentRss>
		</item>
		<item>
		<title>KomA: first chapters</title>
		<link>http://www.ghstyle.de/ghstyle/?p=33</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=33#comments</comments>
		<pubDate>Sat, 10 Jan 2009 15:27:08 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=33</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>now my first big writing project, the horror/fantasy serial &#8220;KomA&#8221;, has its own website: <a title="KomA" href="http://www.ghstyle.de/koma" target="_blank">www.ghstyle.de/koma</a></p>
<p>the first two chapters are already available (in German only)</p>
<p>more to come</p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'KomA: first chapters';
var flattr_dsc = 'now my first big writing project, the horror/fantasy serial \"KomA\", has its own website: www.ghstyle.de/koma  the first two chapters are already available (in German only)  more to come';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=33';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=33</wfw:commentRss>
		</item>
		<item>
		<title>steve.e! - Dubstep mix</title>
		<link>http://www.ghstyle.de/ghstyle/?p=31</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=31#comments</comments>
		<pubDate>Fri, 09 Jan 2009 18:24:43 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[media > audio]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=31</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>A new dubstep mix available for free download: <a title="Dubstep Mix" href="http://tattered.r00lerz.de/download/doubled/sets/steve.e_-themunchiesmix.mp3" target="_blank">click!</a></p>
<p><a title="more information about steve.e!" href="http://www.elbentertainment.de/steve.e!/" target="_blank">more information about steve.e!</a></p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'steve.e! - Dubstep mix';
var flattr_dsc = 'A new dubstep mix available for free download: click!  more information about steve.e!';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=31';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=31</wfw:commentRss>
<enclosure url="http://tattered.r00lerz.de/download/doubled/sets/steve.e_-themunchiesmix.mp3" length="85432464" type="audio/mpeg" />
		</item>
		<item>
		<title>steve.e! - SUN LP</title>
		<link>http://www.ghstyle.de/ghstyle/?p=30</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=30#comments</comments>
		<pubDate>Fri, 02 Jan 2009 14:11:24 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[media > audio]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=30</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>steve.e!&#8217;s new album is here! listen to it <a href="http://www.lastfm.de/music/steve.e!/SUNLP" target="_blank">for free at last.fm</a>:</p>
<p style="text-align: center;"><a title="SUN LP @ last.fm" href="http://www.lastfm.com/music/steve.e!/SUNLP" target="_blank"><img class="aligncenter" style="border: 0pt none;" src="http://www.ghstyle.de/ghstyle/media/gfx/sunlpsm.jpg" border="0" alt="Sun LP" width="300" height="300" /></a></p>
<p><span style="color: #ff0000;"><strong>NOW AVAILABLE:</strong></span> <a title="free download @ jamendo" href="http://www.jamendo.com/en/album/37710" target="_blank">free download at jamendo</a></p>
<p>check out steve&#8217;s other albums <a href="http://www.jamendo.com/de/album/6735" target="_blank">b.constructive</a> and <a href="http://www.jamendo.com/de/album/6984" target="_blank">amusiq&#8221;l e.p</a> - just download them for free and contribute some money if you like his music.</p>
<p><a title="more information about steve.e!" href="http://www.elbentertainment.de/steve.e!/" target="_blank">more information about steve.e!</a></p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'steve.e! - SUN LP';
var flattr_dsc = 'steve.e!\'s new album is here! listen to it for free at last.fm:   NOW AVAILABLE: free download at jamendo  check out steve\'s other albums b.constructive and amusiq\"l e.p - just download them for free and contribute some money if you like his music.  more information about steve.e!';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=30';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=30</wfw:commentRss>
		</item>
		<item>
		<title>19.12. sixth formers</title>
		<link>http://www.ghstyle.de/ghstyle/?p=29</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=29#comments</comments>
		<pubDate>Wed, 19 Nov 2008 12:14:04 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[events]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=29</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p align="center">
<table width="100%">
<tr>
<td width="50%"><a href="http://www.sixth-formers.de" target="_blank"><img src="http://www.elbentertainment.de/media/img/09fh100/_flyer1.jpg" border="0"></td>
<td width="50%"><a href="http://www.sixth-formers.de" target="_blank"><img src="http://www.elbentertainment.de/media/img/09fh100/_flyer2.jpg" border="0"></td>
</tr>
</table>
<p></a></p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = '19.12. sixth formers';
var flattr_dsc = '';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=29';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=29</wfw:commentRss>
		</item>
		<item>
		<title>writer community</title>
		<link>http://www.ghstyle.de/ghstyle/?p=28</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=28#comments</comments>
		<pubDate>Tue, 14 Oct 2008 22:48:35 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=28</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p align="center"><a href="http://www.schreibliesl.de/u,654.html"><img src="http://www.schreibliesl.de/siegel.php?u=654" alt="Schreibliesl Mitglied Siegel" border="0" width="114" height="147" /></a></p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'writer community';
var flattr_dsc = '';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=28';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=28</wfw:commentRss>
		</item>
		<item>
		<title>Fallen Minds Album</title>
		<link>http://www.ghstyle.de/ghstyle/?p=27</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=27#comments</comments>
		<pubDate>Fri, 10 Oct 2008 13:58:32 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[media > audio]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=27</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p align="center"><img class="aligncenter" title="Lined By Sorrow" src="http://www.ghstyle.de/ghstyle/media/gfx/linedbysorrow.jpg" alt="" width="300" height="285" /></p>
<p>It&#8217;s here! The first album by Fallen Minds, a friend&#8217;s band from Jettingen. &#8220;Lined By Sorrow&#8221; is available at <a href="http://www.fallenminds.de" target="_blank">www.fallenminds.de</a>, listen to some tracks at <a href="http://www.myspace.com/fallenmindsmusic" target="_blank">Myspace</a>.</p>
<p>And buy it - for just 6 €!</p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'Fallen Minds Album';
var flattr_dsc = 'It\'s here! The first album by Fallen Minds, a friend\'s band from Jettingen. \"Lined By Sorrow\" is available at www.fallenminds.de, listen to some tracks at Myspace.  And buy it - for just 6 €!';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=27';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=27</wfw:commentRss>
		</item>
		<item>
		<title>Bionic Ghost Kids: Poison Ivy</title>
		<link>http://www.ghstyle.de/ghstyle/?p=26</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=26#comments</comments>
		<pubDate>Fri, 10 Oct 2008 13:07:14 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[media > video]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=26</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>music video with some friends from Berlin, Germany</p>
<p><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/JMSb_ZQ4jWE" width="425" height="350"><param name="movie" value="http://www.youtube.com/v/JMSb_ZQ4jWE" /></object></p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'Bionic Ghost Kids: Poison Ivy';
var flattr_dsc = 'music video with some friends from Berlin, Germany  [youtube JMSb_ZQ4jWE]';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=26';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=26</wfw:commentRss>
		</item>
		<item>
		<title>summer time, traveling time</title>
		<link>http://www.ghstyle.de/ghstyle/?p=25</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=25#comments</comments>
		<pubDate>Wed, 10 Sep 2008 20:34:16 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[travel]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=25</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><strong>first trip (hitchhiking):</strong> Dresden - Würzburg (visiting a friend) - Mainz (visiting a friend) - Hamburg (visiting a friend, going out, partying) - Frederikshavn, DK (couchsurfing, make new friends) - Hannover (visiting a friend) - Potsdam (visiting a friend) - Dresden [<a href="http://abgefahren.hitchbase.com/DE/blogs/ans/20080727/zwei-wochen-deutschland-und-daenemark" target="_blank">travel report (German)</a>]</p>
<p><strong>second trip (hitchhiking, train, car):</strong> Dresden - Berlin (visiting friends, partying) - Möllen near Friedland (camping) - Spreewald (boat tour) - Cottbus (visiting a friend) - Dresden</p>
<p><strong>third trip (payed lift, train):</strong> Dresden - Enkirch at the Mosel (working) - Mainz (visiting a friend) - Bernkastel-Kues (watching Batman - The Dark Night in the cinema) - Dresden</p>
<p><strong>next trip (train, bus, plane):</strong> Dresden - Bydgosz, PL - Warsaw, PL - Vilnius, LT - Riga, LV - Tallinn, EST - Dresden [<a href="http://www.ghstyle.de/nlf/viewtopic.php?p=23601#23601" target="_blank">travel report</a>]</p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'summer time, traveling time';
var flattr_dsc = 'first trip (hitchhiking): Dresden - Würzburg (visiting a friend) - Mainz (visiting a friend) - Hamburg (visiting a friend, going out, partying) - Frederikshavn, DK (couchsurfing, make new friends) - Hannover (visiting a friend) - Potsdam (visiting a friend) - Dresden [travel report (German)]  second trip (hitchhiking, train, car): Dresden - Berlin (visiting friends, partying) - Möllen near Friedland (camping) - Spreewald (boat tour) - Cottbus (visiting a friend) - Dresden  third trip (payed lift, train): Dresden - Enkirch at the Mosel (working) - Mainz (visiting a friend) - Bernkastel-Kues (watching Batman - The Dark Night in the cinema) - Dresden  next trip (train, bus, plane): Dresden - Bydgosz, PL - Warsaw, PL - Vilnius, LT - Riga, LV - Tallinn, EST - Dresden [travel report]';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=25';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=25</wfw:commentRss>
		</item>
		<item>
		<title>11.04. sixth formers</title>
		<link>http://www.ghstyle.de/ghstyle/?p=24</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=24#comments</comments>
		<pubDate>Fri, 21 Mar 2008 18:19:11 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[events]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=24</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p align="center"><a href="http://www.sixth-formers.de" target="_blank"><img src="http://www.elbentertainment.de/media/img/08fh100/pre-flyer.jpg" alt="Sixth Formers" border="0" /></a></p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = '11.04. sixth formers';
var flattr_dsc = '';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=24';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=24</wfw:commentRss>
		</item>
		<item>
		<title>kabanossi.mp3</title>
		<link>http://www.ghstyle.de/ghstyle/?p=22</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=22#comments</comments>
		<pubDate>Mon, 10 Mar 2008 00:12:25 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[media > audio]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=22</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>the emo song &#8220;kabanossi&#8221; from some friends</p>
<p><a href="http://www.ghstyle.de/ghstyle/media/mp3/kabanossi.mp3">download (3,57 mb)</a></p>
<p>here&#8217;s the original movie:</p>
<p><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/M6XHV5snV0c" width="425" height="350"><param name="movie" value="http://www.youtube.com/v/M6XHV5snV0c" /></object></p>
<p>from dresden / freiburg / leipzig / oschatz / berlin <img src='http://www.ghstyle.de/ghstyle/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><a href="http://www.myspace.com/pettingstars" target="_blank">myspace link</a></p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'kabanossi.mp3';
var flattr_dsc = 'the emo song \"kabanossi\" from some friends  download (3,57 mb)  here\'s the original movie:  [youtube M6XHV5snV0c]  from dresden / freiburg / leipzig / oschatz / berlin ;)  myspace link';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=22';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=22</wfw:commentRss>
<enclosure url="http://www.ghstyle.de/ghstyle/kabanossi.mp3" length="3752758" type="audio/x-mpeg" />
<enclosure url="http://www.ghstyle.de/ghstyle/media/mp3/kabanossi.mp3" length="3752758" type="audio/mpeg" />
		</item>
		<item>
		<title>www.sixth-formers.de</title>
		<link>http://www.ghstyle.de/ghstyle/?p=21</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=21#comments</comments>
		<pubDate>Sat, 08 Mar 2008 15:19:57 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=21</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>new webpage for our next big event  - check it out!</p>
<p><a href="http://www.sixth-formers.de" target="_blank">www.sixth-formers.de</a></p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'www.sixth-formers.de';
var flattr_dsc = 'new webpage for our next big event  - check it out!  www.sixth-formers.de';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=21';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=21</wfw:commentRss>
		</item>
		<item>
		<title>sixth formers&#8217; festival IV</title>
		<link>http://www.ghstyle.de/ghstyle/?p=20</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=20#comments</comments>
		<pubDate>Thu, 06 Mar 2008 10:16:36 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[events]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=20</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>Our next big party event:</p>
<p>11.04.08 <strong>Sixth Formers&#8217; Festival IV </strong>@ Fahrenheit 100, Dresden</p>
<p><font size="2"><strong>Hip-Hop</strong><br />
Beatwars (CutCannibalz Soundsystem, Leipzig)<br />
Fräu Richter (nubeatzz, Dresden)<br />
DJ Access (newDEF, Dresden)</font></p>
<p><font size="2"><strong>Drum&#8217;n'Bass</strong><br />
eski (nyceguys)<br />
sam francesco (highfinesse) b2b luke gooding (highfinesse)<br />
steve.e! (vinylbuddha) b2b amock (newcomer)</font></p>
<p><font size="2">entry: 4 € / 6 €</font></p>
<p><font size="2"><a href="http://www.elbentertainment.de" target="_blank">www.elbentertainment.de</a><br />
</font></p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'sixth formers&#8217; festival IV';
var flattr_dsc = 'Our next big party event:  11.04.08 Sixth Formers\' Festival IV @ Fahrenheit 100, Dresden  Hip-Hop Beatwars (CutCannibalz Soundsystem, Leipzig) Fräu Richter (nubeatzz, Dresden) DJ Access (newDEF, Dresden)  Drum\'n\'Bass eski (nyceguys) sam francesco (highfinesse) b2b luke gooding (highfinesse) steve.e! (vinylbuddha) b2b amock (newcomer)  entry: 4 € / 6 €  www.elbentertainment.de';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=20';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=20</wfw:commentRss>
		</item>
		<item>
		<title>sound of dresden</title>
		<link>http://www.ghstyle.de/ghstyle/?p=13</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=13#comments</comments>
		<pubDate>Wed, 06 Feb 2008 00:49:08 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[media > audio]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=13</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>some cool tracks from some cool guys</p>
<p>the original sound of dresden</p>
<p><strong>hip-hop</strong></p>
<p><a href="http://www.myspace.com/ddmotox" target="_blank">mo-tox - straßensound</a></p>
<p><a href="http://www.hobnox.com/index.430.html?grp[PROJECT_HANDLE]=Smart-MC1" target="_blank">smart mc - das ist dresden</a> (vote @ hobnox)</p>
<p><strong>drum&#8217;n'bass</strong></p>
<p><a href="http://www.myspace.com/stevee1dr" target="_blank">steve.e - lonely fool</a></p>
<p><a href="http://www.myspace.com/fiaskodnb" target="_blank">fiasko - strider</a></p>
<p>thanks friends, let&#8217;s spread the beat&#8230;</p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'sound of dresden';
var flattr_dsc = 'some cool tracks from some cool guys  the original sound of dresden  hip-hop  mo-tox - straßensound  smart mc - das ist dresden (vote @ hobnox)  drum\'n\'bass  steve.e - lonely fool  fiasko - strider  thanks friends, let\'s spread the beat...';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=13';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=13</wfw:commentRss>
		</item>
		<item>
		<title>&#8220;Volkspolizei&#8221;</title>
		<link>http://www.ghstyle.de/ghstyle/?p=12</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=12#comments</comments>
		<pubDate>Tue, 05 Feb 2008 19:01:02 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[media > video]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=12</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>found some film footage about our district festival BRN from 2oo4</p>
<p>it&#8217;s about 4 o&#8217;clock in the morning and police is cleaning up the streets</p>
<p>the song &#8220;Volkspolizei&#8221; is a propaganda song about the police in the G.D.R.</p>
<p>have fun watching and don&#8217;t take it too serious</p>
<p><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/TrY1_9Cyljg" width="425" height="350"><param name="movie" value="http://www.youtube.com/v/TrY1_9Cyljg" /></object></p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = '&#8220;Volkspolizei&#8221;';
var flattr_dsc = 'found some film footage about our district festival BRN from 2oo4  it\'s about 4 o\'clock in the morning and police is cleaning up the streets  the song \"Volkspolizei\" is a propaganda song about the police in the G.D.R.  have fun watching and don\'t take it too serious  [youtube TrY1_9Cyljg]';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=12';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=12</wfw:commentRss>
		</item>
		<item>
		<title>neustadtleben2.0</title>
		<link>http://www.ghstyle.de/ghstyle/?p=11</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=11#comments</comments>
		<pubDate>Mon, 04 Feb 2008 04:21:40 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=11</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>my big current web project: the web2.0 version of an online community about the district Dresden-Neustadt</p>
<p>some information in german: <a href="http://neustadtleben.de/2.0/" target="_blank">neustadtleben2.0 development</a></p>
<p>visit our forum at <a href="http://forum.neustadtleben.de" target="_blank">forum.neustadtleben.de</a></p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'neustadtleben2.0';
var flattr_dsc = 'my big current web project: the web2.0 version of an online community about the district Dresden-Neustadt  some information in german: neustadtleben2.0 development  visit our forum at forum.neustadtleben.de';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=11';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=11</wfw:commentRss>
		</item>
		<item>
		<title>big up</title>
		<link>http://www.ghstyle.de/ghstyle/?p=10</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=10#comments</comments>
		<pubDate>Mon, 04 Feb 2008 04:01:40 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[ware]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=10</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>big up and greetings to our city mate florian heidenreich</p>
<p>thank you for creating the ultimative mp3 files tag tool &#8220;mp3tag&#8221; found at <a href="http://www.mp3tag.de">www.mp3tag.de</a></p>
<p>the first ghstyle software development project will be started soon</p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'big up';
var flattr_dsc = 'big up and greetings to our city mate florian heidenreich  thank you for creating the ultimative mp3 files tag tool \"mp3tag\" found at www.mp3tag.de  the first ghstyle software development project will be started soon';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=10';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=10</wfw:commentRss>
		</item>
		<item>
		<title>party!</title>
		<link>http://www.ghstyle.de/ghstyle/?p=9</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=9#comments</comments>
		<pubDate>Sun, 03 Feb 2008 22:36:19 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[events]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=9</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>next big party tip: 08.02.08 Rum&#8217;n'Bass @ Chemiefabrik Dresden</p>
<p>finest drumnbass presented by vinylbuddha</p>
<p>vote for the DJ timetable! (<a href="http://www.doubled-town.de/forum/viewtopic.php?t=3819" target="_blank">more</a>)</p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'party!';
var flattr_dsc = 'next big party tip: 08.02.08 Rum\'n\'Bass @ Chemiefabrik Dresden  finest drumnbass presented by vinylbuddha  vote for the DJ timetable! (more)';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=9';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=9</wfw:commentRss>
		</item>
		<item>
		<title>events</title>
		<link>http://www.ghstyle.de/ghstyle/?p=5</link>
		<comments>http://www.ghstyle.de/ghstyle/?p=5#comments</comments>
		<pubDate>Sun, 03 Feb 2008 22:04:14 +0000</pubDate>
		<dc:creator>Ans</dc:creator>
		
		<category><![CDATA[events]]></category>

		<guid isPermaLink="false">http://www.ghstyle.de/ghstyle/?p=5</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>my event management team can be found at <a href="http://www.elbentertainment.de" title="ElbEntertainment" target="_blank">www.elbentertainment.de</a></p>
<p>the next event is planned in april 2oo8</p>
<p align="right"><script type="text/javascript">
var flattr_wp_ver = '0.8';
var flattr_uid = '35989';
var flattr_cat = 'text';
var flattr_tle = 'events';
var flattr_dsc = 'my event management team can be found at www.elbentertainment.de  the next event is planned in april 2oo8';
var flattr_tag = '';
var flattr_url = 'http://www.ghstyle.de/ghstyle/?p=5';
var flattr_lng = 'en_GB';
var flattr_btn = 'compact';
</script><script src="http://api.flattr.com/button/load.js" type="text/javascript"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.ghstyle.de/ghstyle/?feed=rss2&amp;p=5</wfw:commentRss>
		</item>
	</channel>
</rss>
