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

<channel>
	<title>Hinnerk Altenburg &#187; Hinnerk Altenburg</title>
	<atom:link href="http://www.hinnerk-altenburg.de/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hinnerk-altenburg.de</link>
	<description>Web Developer in Hamburg, Germany</description>
	<lastBuildDate>Tue, 31 Jul 2012 14:28:07 +0000</lastBuildDate>
	<language>de-DE</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
<meta name="generator" content="HA-Immo OpenImmo Importer Plugin 1.0 http://www.hinnerk-altenburg.de/openimmo/" />
		<item>
		<title>WP-ImmoMakler: WordPress OpenImmo Immobilien-Makler Plugin</title>
		<link>http://www.hinnerk-altenburg.de/weblog/ha-immo-wordpress-openimmo-immobilien-makler-plugin/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ha-immo-wordpress-openimmo-immobilien-makler-plugin</link>
		<comments>http://www.hinnerk-altenburg.de/weblog/ha-immo-wordpress-openimmo-immobilien-makler-plugin/#comments</comments>
		<pubDate>Mon, 09 Jul 2012 22:06:03 +0000</pubDate>
		<dc:creator>Hinnerk</dc:creator>
				<category><![CDATA[Deutsch]]></category>
		<category><![CDATA[OpenImmo]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.hinnerk-altenburg.de/?p=344</guid>
		<description><![CDATA[In Kooperation mit der Agentur Siket &#038; Heser, Gießen, habe ich den OpenImmo Immobilen-Import und die Darstellung der Objekte für die Website von Knös Immobilien, Eltville am Rhein mit dem eigens entwickelten]]></description>
				<content:encoded><![CDATA[<p>In Kooperation mit der Agentur <a href="http://www.siket-heser.de/" target="_blank">Siket &#038; Heser, Gießen</a>, habe ich den OpenImmo Immobilen-Import und die Darstellung der Objekte für die Website von <a href="http://knoes-immobilien.de/objektarten/haeuser_villen_weingueter/" title="Zur Beispiel-Seite wechseln" target="_blank">Knös Immobilien, Eltville am Rhein</a> mit dem eigens entwickelten <a href="http://www.wp-immomakler.de/" title="WordPress OpenImmo Immobilien-Makler Plugin "WP-ImmoMakler">WordPress OpenImmo Importer Immobilien-Makler Plugin WP-ImmoMakler</a> umgesetzt.</p>
<p>Das Plugin integriert sich nahtlos in jede WordPress-Installation und kann bei mir angefordert werden. Als Dienstleistung biete ich die Installation, wunschgemäße Anpassung oder auch Erstellung einer kompletten Immobilienmakler-Website an.<br />
Füllen Sie bei Interesse bitte das <a href="http://www.WP-ImmoMakler.de/kontakt/" title="Kontaktformular auf der Plugin-Seite">Kontaktformular auf der Plugin-Seite</a> aus.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hinnerk-altenburg.de/weblog/ha-immo-wordpress-openimmo-immobilien-makler-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress filter hook: log and debug WP_Http requests</title>
		<link>http://www.hinnerk-altenburg.de/weblog/wordpress-filter-hook-logging-debugging-wp_http-requests/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wordpress-filter-hook-logging-debugging-wp_http-requests</link>
		<comments>http://www.hinnerk-altenburg.de/weblog/wordpress-filter-hook-logging-debugging-wp_http-requests/#comments</comments>
		<pubDate>Thu, 31 May 2012 20:48:28 +0000</pubDate>
		<dc:creator>Hinnerk</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[gist]]></category>
		<category><![CDATA[GitHub]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.hinnerk-altenburg.de/?p=276</guid>
		<description><![CDATA[This WordPress filter hooks into WP_Http::_dispatch_request() to write all request and response details into a logfile. It logs all HTTP requests (GET, POST, HEAD) that are sent and received by the WP_Http class, e.g. explicitly via $wp_http_object->request() or via wp_remote_request() or wp_remote_get() or wp_remote_post() or wp_remote_head(). The hook is useful for logging while debugging WordPress [...]]]></description>
				<content:encoded><![CDATA[<p>This WordPress filter hooks into WP_Http::_dispatch_request() to write all request and response details into a logfile.<br />
It logs all HTTP requests (GET, POST, HEAD) that are sent and received by the WP_Http class, e.g. explicitly via $wp_http_object->request() or via wp_remote_request() or wp_remote_get() or wp_remote_post() or wp_remote_head().<br />
The hook is useful for logging while debugging WordPress plugins that connect to other servers.</p>
<script src="https://gist.github.com/2846011.js"></script><noscript><pre><code class="language-php php">&lt;?php

function wp_log_http_requests( $response, $args, $url ) {

	// set your log file location here
	$logfile = plugin_dir_path( __FILE__ ) . '/http_requests.log';

	// parse request and response body to a hash for human readable log output
	$log_response = $response;
	if ( isset( $args['body'] ) ) {
		parse_str( $args['body'], $args['body_parsed'] );
	}
	if ( isset( $log_response['body'] ) ) {
		parse_str( $log_response['body'], $log_response['body_parsed'] );
	}
	// write into logfile
	file_put_contents( $logfile, sprintf( &quot;### %s, URL: %s\nREQUEST: %sRESPONSE: %s\n&quot;, date( 'c' ), $url, print_r( $args, true ), print_r( $log_response, true ) ), FILE_APPEND );

	return $response;
}

// hook into WP_Http::_dispatch_request()
add_filter( 'http_response', 'wp_log_http_requests', 10, 3 );

?&gt;</code></pre></noscript>
<p>See also:<br />
<a href="http://codex.wordpress.org/Plugin_API#Filters" target="_blank">WordPress Plugin API Documentation: Filters</a><br />
<a href="http://codex.wordpress.org/Function_Reference/add_filter" target="_blank">WordPress Function Reference: add_filter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hinnerk-altenburg.de/weblog/wordpress-filter-hook-logging-debugging-wp_http-requests/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Perl: Handle malformed UTF-8 strings with Encode::encode</title>
		<link>http://www.hinnerk-altenburg.de/weblog/perl-handle-malformed-utf-8-strings-with-encode/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=perl-handle-malformed-utf-8-strings-with-encode</link>
		<comments>http://www.hinnerk-altenburg.de/weblog/perl-handle-malformed-utf-8-strings-with-encode/#comments</comments>
		<pubDate>Wed, 31 Aug 2011 14:58:17 +0000</pubDate>
		<dc:creator>Hinnerk</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[gist]]></category>
		<category><![CDATA[GitHub]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[PerlIDS]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.hinnerk-altenburg.de/?p=268</guid>
		<description><![CDATA[Having the error message &#8220;Malformed UTF-8 character (fatal)&#8221; in my log files, I tried to handle this properly without letting the process die nor throwing away the whole string. Having some research on Google I came up with following solution: See also: http://perldoc.perl.org/Encode.html#Handling-Malformed-Data http://www.perlmonks.org/?node_id=839519]]></description>
				<content:encoded><![CDATA[<p>Having the error message &#8220;Malformed UTF-8 character (fatal)&#8221; in my log files, I tried to handle this properly without letting the process die nor throwing away the whole string.<br />
Having some research on Google I came up with following solution:</p>
<script src="https://gist.github.com/1183704.js"></script><noscript><pre><code class="language-perl perl">sub encode_utf_8 {
    my $string = @_;

    my $utf8_encoded = '';
    eval {
        $utf8_encoded = Encode::encode('UTF-8', $string, Encode::FB_CROAK);
    };
    if ($@) {
        # sanitize malformed UTF-8
        $utf8_encoded = '';
        my @chars = split(//, $string);
        foreach my $char (@chars) {
            my $utf_8_char = eval { Encode::encode('UTF-8', $char, Encode::FB_CROAK) }
                or next;
            $utf8_encoded .= $utf_8_char;
        }
    }
    return $utf8_encoded;
}</code></pre></noscript>
<p>See also:<br />
<a href="http://perldoc.perl.org/Encode.html#Handling-Malformed-Data" target="_blank">http://perldoc.perl.org/Encode.html#Handling-Malformed-Data</a><br />
<a href="http://www.perlmonks.org/?node_id=839519" target="_blank">http://www.perlmonks.org/?node_id=839519</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hinnerk-altenburg.de/weblog/perl-handle-malformed-utf-8-strings-with-encode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Set a custom HTTP User-Agent in Perl with WWW::Mechanize</title>
		<link>http://www.hinnerk-altenburg.de/weblog/set-custom-http-user-agent-in-perl-with-www-mechanize/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=set-custom-http-user-agent-in-perl-with-www-mechanize</link>
		<comments>http://www.hinnerk-altenburg.de/weblog/set-custom-http-user-agent-in-perl-with-www-mechanize/#comments</comments>
		<pubDate>Wed, 29 Jun 2011 19:21:42 +0000</pubDate>
		<dc:creator>Hinnerk</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[CPAN]]></category>
		<category><![CDATA[gist]]></category>
		<category><![CDATA[GitHub]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.hinnerk-altenburg.de/?p=214</guid>
		<description><![CDATA[This is how you can dynamically set a custom HTTP User-Agent for your Perl requests to fake a device or browser for testing purpose or getting a device-specific version of a website. WWW::Mechanize supports setting a custom user-agent with the constructor and after this gives a choice of 6 pre-defined basic user-agents ( $mech->agent_alias() ), [...]]]></description>
				<content:encoded><![CDATA[<p>This is how you can dynamically set a custom HTTP User-Agent for your Perl requests to fake a device or browser for testing purpose or getting a device-specific version of a website.<br />
<a href="http://search.cpan.org/~jesse/WWW-Mechanize-1.68/lib/WWW/Mechanize.pm">WWW::Mechanize</a> supports setting a custom user-agent with the constructor and after this gives a <a href="http://search.cpan.org/~jesse/WWW-Mechanize-1.68/lib/WWW/Mechanize.pm">choice of 6 pre-defined basic user-agents</a> ( $mech->agent_alias() ), only.</p>
<p>The following code demonstrates how to dynamically change the user-agent on a Mechanize object.</p>
<script src="https://gist.github.com/1056046.js"></script><noscript><pre><code class="language-perl perl">use WWW::Mechanize;

my $initial_user_agent = 'Mozilla/5.0 (Linux; U; Android 2.2; de-de; HTC Desire HD 1.18.161.2 Build/FRF91) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1';
my @user_agents = (
    'Mozilla/5.0 (Windows; U; Windows NT 6.1; nl; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13',
    'Mozilla/5.0 (iPad; U; CPU iPhone OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Mobile/7D11',
    'Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5',
);

# Set an initial custom header with the contructor
my $mech = WWW::Mechanize-&gt;new( agent =&gt; $initial_user_agent );

# get a page and print current URI (WWW::Mechanize follows redirections)
$mech-&gt;get( 'http://www.facebook.com' );
print sprintf( &quot;User-Agent %s\n  redirects to: %s\n\n&quot;, $initial_user_agent, $mech-&gt;uri() );

foreach my $http_user_agent (@user_agents) {
    # dynamically set custom HTTP User-agents
    $mech-&gt;add_header( 'User-agent' =&gt; $http_user_agent);

    $mech-&gt;get( 'http://www.facebook.com' );
    print sprintf( &quot;User-Agent %s\n  redirects to: %s\n\n&quot;, $http_user_agent, $mech-&gt;uri() );
}

# $ perl ./mechanize-user-agent.pl
# User-Agent Mozilla/5.0 (Linux; U; Android 2.2; de-de; HTC Desire HD 1.18.161.2 Build/FRF91) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1
#   redirects to: http://m.facebook.com/?w2m&amp;refsrc=http%3A%2F%2Fwww.facebook.com%2F&amp;_rdr
# 
# User-Agent Mozilla/5.0 (Windows; U; Windows NT 6.1; nl; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
#   redirects to: http://www.facebook.com
# 
# User-Agent Mozilla/5.0 (iPad; U; CPU iPhone OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Mobile/7D11
#   redirects to: http://m.facebook.com/?w2m&amp;refsrc=http%3A%2F%2Fwww.facebook.com%2F&amp;_rdr
# 
# User-Agent Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5
#   redirects to: http://m.facebook.com/?w2m&amp;refsrc=http%3A%2F%2Fwww.facebook.com%2F&amp;_rdr</code></pre></noscript>
]]></content:encoded>
			<wfw:commentRss>http://www.hinnerk-altenburg.de/weblog/set-custom-http-user-agent-in-perl-with-www-mechanize/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Strip all HTML tags with Perl like PHP&#8217;s strip_tags() does</title>
		<link>http://www.hinnerk-altenburg.de/weblog/strip-all-html-tags-with-perl-regular-expression-regexp-like-php-strip_tags-does/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=strip-all-html-tags-with-perl-regular-expression-regexp-like-php-strip_tags-does</link>
		<comments>http://www.hinnerk-altenburg.de/weblog/strip-all-html-tags-with-perl-regular-expression-regexp-like-php-strip_tags-does/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 13:30:49 +0000</pubDate>
		<dc:creator>Hinnerk</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[PerlIDS]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.hinnerk-altenburg.de/?p=130</guid>
		<description><![CDATA[The Perl regular expression (regexp/regex) equivalent to PHP&#8217;s strip_tags() is: while ($string =~ s/&#60;\S[^&#60;&#62;]*(?:&#62;&#124;$)//gs) {}; Please note that it also denotes an opening &#8220;&#60;&#8221; (followed by a non-whitespace character) as a tag and strips all characters behind, even it is not closed by a &#8220;&#62;&#8221;. This is the same behavior as PHP&#8217;s strip_tags(). Update: This [...]]]></description>
				<content:encoded><![CDATA[<p>The Perl regular expression (regexp/regex) equivalent to PHP&#8217;s strip_tags() is:</p>
<p>while ($string =~ s/&lt;\S[^&lt;&gt;]*(?:&gt;|$)//gs) {};</p>
<p>Please note that it also denotes an opening &#8220;&lt;&#8221; (followed by a non-whitespace character) as a tag and strips all characters behind, even it is not closed by a &#8220;&gt;&#8221;. This is the same behavior as PHP&#8217;s strip_tags().</p>
<p><em>Update:</em> This regexp is only satisfying my test against PHP 4.x, but 5.x is pretty smarter when it comes to edge cases. It will be a challenge to build a Perl equivalent as all the different approaches in CPAN also fail the test.</p>
<p><em>Update 2010-07-07:</em> I&#8217;m currently porting strip_tags() from the C source code of PHP 5.3.2 to a CPAN Module. Stay tuned.</p>
<p><em>Update 2011-05-25:</em> Today I finally uploaded my Perl port to CPAN: <a href="http://search.cpan.org/~hinnerk/HTML-StripTags-1.00/" target="_blank">http://search.cpan.org/~hinnerk/HTML-StripTags-1.00/</a><br />
New home of this module is <a href="http://www.hinnerk-altenburg.de/perl-strip_tags/" target="_blank">http://www.hinnerk-altenburg.de/perl-strip_tags/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hinnerk-altenburg.de/weblog/strip-all-html-tags-with-perl-regular-expression-regexp-like-php-strip_tags-does/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Moved from epublica GmbH to XING AG</title>
		<link>http://www.hinnerk-altenburg.de/weblog/moved-from-epublica-gmbh-to-xing-ag/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=moved-from-epublica-gmbh-to-xing-ag</link>
		<comments>http://www.hinnerk-altenburg.de/weblog/moved-from-epublica-gmbh-to-xing-ag/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 11:16:17 +0000</pubDate>
		<dc:creator>Hinnerk</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[epublica]]></category>
		<category><![CDATA[Hamburg]]></category>
		<category><![CDATA[Job]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[XING]]></category>

		<guid isPermaLink="false">http://www.hinnerk-altenburg.de/?p=120</guid>
		<description><![CDATA[As per February, 1st I moved with epublica&#8217;s entire XING.com core development team to the XING AG itself, now developing the platform &#8216;inhouse&#8217; as XING employee.]]></description>
				<content:encoded><![CDATA[<div>
<p>As per February, 1st I <a href="http://corporate.xing.com/english/press/press-releases/details/article/press-releasebrxing-ag-hires-chief-technical-of/572/641a7dadc00a37e23afb64b3a397b4b2/" target="_blank">moved with epublica&#8217;s entire XING.com core development team</a> to the <a href="http://corporate.xing.com/" target="_blank">XING AG</a> itself, now developing the platform &#8216;inhouse&#8217; as XING employee.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.hinnerk-altenburg.de/weblog/moved-from-epublica-gmbh-to-xing-ag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PerlIDS-Artikel im deutschen Perl-Magazin $foo erschienen</title>
		<link>http://www.hinnerk-altenburg.de/weblog/perlids-artikel-im-deutschen-perl-magazin-foo-erschienen/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=perlids-artikel-im-deutschen-perl-magazin-foo-erschienen</link>
		<comments>http://www.hinnerk-altenburg.de/weblog/perlids-artikel-im-deutschen-perl-magazin-foo-erschienen/#comments</comments>
		<pubDate>Tue, 03 Feb 2009 17:27:50 +0000</pubDate>
		<dc:creator>Hinnerk</dc:creator>
				<category><![CDATA[Deutsch]]></category>
		<category><![CDATA[Article]]></category>
		<category><![CDATA[epublica]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[PerlIDS]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[XING]]></category>

		<guid isPermaLink="false">http://www.hinnerk-altenburg.de/?p=112</guid>
		<description><![CDATA[Mein vierseitiger Artikel zum Perl-CPAN-Modul CGI::IDS ist in der aktuellen Ausgabe 1/2009 des deutschen Perl-Magazins $foo erschienen. Ich gebe darin einen Überblick Über die Funktion und den Einsatz von PerlIDS zur frühzeitigen Erkennung von CrossSite-Scripting, SQL-Injections und Ähnlichen Angriffen auf Webapplikationen. I just published a four pages long article in the German Perl magazine $foo [...]]]></description>
				<content:encoded><![CDATA[<p>Mein <a href="http://www.perl-nachrichten.de/index.cgi/details/418" target="_blank">vierseitiger Artikel zum Perl-CPAN-Modul CGI::IDS</a> ist in der aktuellen <a href="http://perl-magazin.de/?issue=14" target="_blank">Ausgabe 1/2009</a> des deutschen <a href="http://perl-magazin.de/" target="_blank">Perl-Magazins $foo</a> erschienen.<br />
Ich gebe darin einen Überblick Über die Funktion und den Einsatz von <a title="Perl Website Intrusion Detection System" href="http://search.cpan.org/~hinnerk/CGI-IDS/">PerlIDS</a> zur frühzeitigen Erkennung von CrossSite-Scripting, SQL-Injections und Ähnlichen Angriffen auf Webapplikationen.</p>
<p>I just published a four pages long article in the <a href="http://perl-magazin.de/" target="_blank">German Perl magazine $foo</a> about my <a title="PerlIDS CGI::IDS" href="http://search.cpan.org/~hinnerk/CGI-IDS/">Perl CPAN module CGI::IDS, a Website Intrusion Detection System</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hinnerk-altenburg.de/weblog/perlids-artikel-im-deutschen-perl-magazin-foo-erschienen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenSource Perl Website Intrusion Detection System PerlIDS (CGI::IDS) released</title>
		<link>http://www.hinnerk-altenburg.de/weblog/opensource-perl-website-intrusion-detection-system-perlids-cgiids-released/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=opensource-perl-website-intrusion-detection-system-perlids-cgiids-released</link>
		<comments>http://www.hinnerk-altenburg.de/weblog/opensource-perl-website-intrusion-detection-system-perlids-cgiids-released/#comments</comments>
		<pubDate>Thu, 06 Nov 2008 12:36:51 +0000</pubDate>
		<dc:creator>Hinnerk</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[epublica]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[PerlIDS]]></category>
		<category><![CDATA[PHPIDS]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[XING]]></category>

		<guid isPermaLink="false">http://www.hinnerk-altenburg.de/?p=88</guid>
		<description><![CDATA[Today, we at epublica have officially released my work of the last months &#8211; a Perl port of PHPIDS, a tool for detection of Cross-Site-Scripting (XSS), Cross-Site-Request-Forgery (CSRF), SQL-Injections (SQLI), Local-File-Inclusions (LFI) etc. in website requests. The tool is released as CGI::IDS Perl module &#8220;PerlIDS&#8221; on CPAN.org under the OpenSource &#8220;Lesser GNU Public License&#8221; (LGPL). [...]]]></description>
				<content:encoded><![CDATA[<p>Today, we at <a href="http://www.epublica.de" target="_blank">epublica</a> have officially released my work of the last months &#8211; a <a title="PerlIDS - Perl Port of PHPIDS" href="http://php-ids.org/2008/11/06/release-of-perl-port-perlids/" target="_blank">Perl port of PHPIDS</a>, a tool for detection of Cross-Site-Scripting (XSS), Cross-Site-Request-Forgery (CSRF), SQL-Injections (SQLI), Local-File-Inclusions (LFI) etc. in website requests.<br />
The tool is released as <a title="IDS PerlIDS Perl Website Intrusion Detection System" href="http://search.cpan.org/%7Ehinnerk/CGI-IDS/lib/CGI/IDS.pm" target="_blank">CGI::IDS Perl module &#8220;PerlIDS&#8221;</a> on <a title="CPAN" href="http://www.cpan.org/" target="_blank">CPAN.org</a> under the OpenSource &#8220;Lesser GNU Public License&#8221; (LGPL).</p>
<p><span id="more-88"></span></p>
<p>The intrusion detection is based on a set of converters that convert the request according to common techniques that are used to hide attacks. These converted strings are checked for attacks by running a filter set of currently 68 regular expressions and a generic attack detector to find obfuscated attacks. For easily keeping the filter set up-to-date, PerlIDS is compatible to the original XML filter set of PHPIDS, which is frequently updated.<br />
Each matching regular expression has its own impact value that increases the tested string&#8217;s total attack impact.</p>
<p>Using these total impacts, a threshold can be defined by the calling application to log the suspicious requests to database and send out warnings via e-mail or even SMS on high impacts that indicate critical attack activity. These impacts can be summed per IP address, session or user to identify attackers who are testing the website with small impact attacks over a time.</p>
<p>During our development we have made some speed-improvements to PerlIDS and PHPIDS for the use on really large websites. With our experience of running it on websites with much user traffic, we could help to improve the converters and filter mechanism to reduce the rate of false alarms.</p>
<p>For heavily reducing the server load we introduced a whitelist mechanism to tell PerlIDS which request parameters don&#8217;t have to be checked with the expensive regular expressions if they match the whitelist rules.</p>
<p>We&#8217;d love to receive your feedback on the module!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hinnerk-altenburg.de/weblog/opensource-perl-website-intrusion-detection-system-perlids-cgiids-released/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Einsatz von Google Analytics nun mit Datenschutzhinweis rechtmäßig</title>
		<link>http://www.hinnerk-altenburg.de/weblog/einsatz-von-google-analytics-nun-mit-datenschutzhinweis-rechtmaessig/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=einsatz-von-google-analytics-nun-mit-datenschutzhinweis-rechtmaessig</link>
		<comments>http://www.hinnerk-altenburg.de/weblog/einsatz-von-google-analytics-nun-mit-datenschutzhinweis-rechtmaessig/#comments</comments>
		<pubDate>Sat, 11 Oct 2008 22:18:53 +0000</pubDate>
		<dc:creator>Hinnerk</dc:creator>
				<category><![CDATA[Deutsch]]></category>
		<category><![CDATA[Datenschutz]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.hinnerk-altenburg.de/?p=67</guid>
		<description><![CDATA[Update: Zur aktuellen Lage lest bitte den Artikel &#8220;Webanalyse datenschutzkonform betreiben: Google Analytics anonymisieren&#8220; in der T3N zu diesem Thema! Mein folgender Artikel (aus dem Oktober 2008) entspricht nicht mehr dem aktuellen Stand! Laut einem Artikel auf heise.de ist nun nach einer Aussage des Bundesverband Digitale Wirtschaft (BVDW) endlich die seit einiger Zeit durch Datenschützer entdeckte [...]]]></description>
				<content:encoded><![CDATA[<p><strong><em>Update: </em></strong><em>Zur aktuellen Lage lest bitte den Artikel &#8220;<a href="http://t3n.de/magazin/webanalyse-datenschutzkonform-betreiben-google-analytics-225835/" target="_blank">Webanalyse datenschutzkonform betreiben: Google Analytics anonymisieren</a>&#8220; in der T3N zu diesem Thema! Mein folgender Artikel (aus dem Oktober 2008) entspricht nicht mehr dem aktuellen Stand! </em></p>
<p>Laut einem <a title="heise resale - BVDW: Einsatz von Google Analytics nur mit Datenschutzhinweis rechtmÃ¤ÃŸig" href="http://www.heise.de/resale/BVDW-Einsatz-von-Google-Analytics-nur-mit-Datenschutzhinweis-rechtmaessig--/news/meldung/116860" target="_blank">Artikel auf heise.de</a> ist nun nach einer Aussage des Bundesverband Digitale Wirtschaft (<a href="http://www.bvdw.org/" rel="external" target="_blank">BVDW</a>) endlich die seit einiger Zeit durch Datenschützer entdeckte Unsicherheit bzgl. des Einsatzes des populären und kostenfreien Website Analyse- und Statistiktools <a href="http://www.google.com/analytics/" target="_blank">Google Analytics</a> auf deutschen Websites ausgeräumt. Als kritisch wurde u.a. die Übermittlung der Nutzungsdaten und vor allem der IP-Adressen der Websitebesucher zu Google Inc. in die USA &#8211; also außerhalb der strengeren deutschen und europäischen Datenschutzbestimmungen &#8211; erachtet.</p>
<p>Google hat nun auf dieses Problem reagiert und seine <a href="http://www.google.com/analytics/de-DE/tos.html" target="_blank">Google Analytics AGB</a> im Punkt &#8220;8. DATENSCHUTZ&#8221; angepasst:</p>
<p><span id="more-67"></span></p>
<blockquote><p>[...] Sie sind ferner verpflichtet, an prominenten Stellen Ihrer Websites eine sachgerechte Datenschutzpolicy zu dokumentieren (und sich an diese zu halten). Auch werden Sie alle zumutbaren Anstrengungen unternehmen, die Aufmerksamkeit der Nutzer Ihrer Website auf eine Erklärung zu lenken, die in allen wesentlichen Teilen wie folgt lautet:</p>
<p>Diese Website benutzt Google Analytics, einen Webanalysedienst der Google Inc. (&#8220;Google&#8221;) Google Analytics verwendet sog. &#8220;Cookies&#8221;, Textdateien, die auf Ihrem Computer gespeichert werden und die eine Analyse der Benutzung der Website durch Sie ermöglicht. Die durch den Cookie erzeugten Informationen über Ihre Benutzung diese Website (einschließlich Ihrer IP-Adresse) wird an einen Server von Google in den USA übertragen und dort gespeichert. Google wird diese Informationen benutzen, um Ihre Nutzung der Website auszuwerten, um Reports über die Websiteaktivitäten für die Websitebetreiber zusammenzustellen und um weitere mit der Websitenutzung und der Internetnutzung verbundene Dienstleistungen zu erbringen. Auch wird Google diese Informationen gegebenenfalls an Dritte übertragen, sofern dies gesetzlich vorgeschrieben oder soweit Dritte diese Daten im Auftrag von Google verarbeiten. Google wird in keinem Fall Ihre IP-Adresse mit anderen Daten der Google in Verbindung bringen. Sie können die Installation der Cookies durch eine entsprechende Einstellung Ihrer Browser Software verhindern; wir weisen Sie jedoch darauf hin, dass Sie in diesem Fall gegebenenfalls nicht sämtliche Funktionen dieser Website voll umfänglich nutzen können. Durch die Nutzung dieser Website erklären Sie sich mit der Bearbeitung der über Sie erhobenen Daten durch Google in der zuvor beschriebenen Art und Weise und zu dem zuvor benannten Zweck einverstanden. Der Datenerhebung und -speicherung kann jederzeit mit Wirkung für die Zukunft widersprochen werden. Angesichts der Diskussion um den Einsatz von Analysetools mit vollständigen IP-Adressen möchten wir darauf hinweisen, dass diese Website Google Analytics mit der Erweiterung &#8220;_anonymizeIp&#8221; verwendet und daher IP-Adressen nur gekürzt weiterverarbeitet werden, um eine direkte Personenbeziehbarkeit auszuschließen.</p></blockquote>
<p>Hiernach reicht es also, einen solchen Datenschutzhinweis in der selben leicht erreichbaren Weise wie ein Impressum der Website hinzuzufügen, um den Bestimmungen des Bundesdatenschutzgesetzes (<a href="http://www.gesetze-im-internet.de/bdsg_1990/" target="_blank">BDSG</a>) und des Telemediengesetzes (<a href="http://www.gesetze-im-internet.de/tmg/__13.html" target="_blank">TMG</a>) gerecht zu werden und so vor Abmahnungen geschützt zu sein. Der Text steht in verschiedenen Sprachen zur Verfügung.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hinnerk-altenburg.de/weblog/einsatz-von-google-analytics-nun-mit-datenschutzhinweis-rechtmaessig/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Relaunch of Derix Glasstudios website finally online</title>
		<link>http://www.hinnerk-altenburg.de/weblog/relaunch-of-derix-glasstudios-website/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=relaunch-of-derix-glasstudios-website</link>
		<comments>http://www.hinnerk-altenburg.de/weblog/relaunch-of-derix-glasstudios-website/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 22:15:48 +0000</pubDate>
		<dc:creator>Hinnerk</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Freelancer]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google AdWords]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Prototype]]></category>
		<category><![CDATA[Reference]]></category>
		<category><![CDATA[Relaunch]]></category>
		<category><![CDATA[Scriptaculous]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.hinnerk-altenburg.de/?p=41</guid>
		<description><![CDATA[The relaunch of the corporate website of Derix Glasstudios, Taunusstein/Germany and Derix Art Glass Consultants, Portland/USA is now finally online! I have already concepted and developed it in 2005 and I am happy to see it online now! The website is developed in PHP/MySQL with a custom-made admin interface. Derix Glasstudios have been founded in [...]]]></description>
				<content:encoded><![CDATA[<p>The relaunch of the <a title="Derix Glasstudios website" href="http://www.derix.com" target="_blank">corporate website of Derix Glasstudios, Taunusstein/Germany and Derix Art Glass Consultants, Portland/USA</a> is now finally online!</p>
<p>I have already concepted and developed it in 2005 and I am happy to see it online now! The website is developed in PHP/MySQL with a custom-made admin interface.</p>
<p>Derix Glasstudios have been founded in 1866 and are today making art glass  for prominent projects all over the world.</p>
<p>[Update] The website is now available in Russian and Spanish, too.</p>
<p>[Update] I am now also doing search engine optimization and Google AdWords campaigns for them.</p>
<p>[Update] Redesign now online with a new color theme and lightbox project viewer and AJAX projects preview using Prototype JS and Scriptaculous.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hinnerk-altenburg.de/weblog/relaunch-of-derix-glasstudios-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Two TYPO3 OpenSource extensions published</title>
		<link>http://www.hinnerk-altenburg.de/weblog/two-typo3-opensource-extensions-published/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=two-typo3-opensource-extensions-published</link>
		<comments>http://www.hinnerk-altenburg.de/weblog/two-typo3-opensource-extensions-published/#comments</comments>
		<pubDate>Tue, 24 Jun 2008 23:20:30 +0000</pubDate>
		<dc:creator>Hinnerk</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Extensions]]></category>
		<category><![CDATA[Freelancer]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Reference]]></category>
		<category><![CDATA[TYPO3]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.hinnerk-altenburg.de/weblog/2-typo3-extensions-published/</guid>
		<description><![CDATA[I am now the author of two TYPO3 extensions published in TER (TYPO3 Extension Repository). These extensions are frontend plugins that add functionality to the mm_forum extension. exinit_latesttopics displays the latest forum topics in a box, exinit_pollwidget displays an AJAX box for forum polls to make voting possible on any page.]]></description>
				<content:encoded><![CDATA[<p>I am now the author of <a href="http://typo3.org/extensions/repository/?tx_terfe_pi1[view]=search&amp;no_cache=1&amp;tx_terfe_pi1[sword]=hinnerk" target="_blank">two TYPO3 extensions</a> published in TER (<a href="http://typo3.org/extensions/repository/" target="_blank">TYPO3 Extension Repository</a>). These extensions are frontend plugins that add functionality to the <a href="http://typo3.org/extensions/repository/view/mm_forum/0.1.6/" target="_blank">mm_forum</a> extension.</p>
<p><a href="http://typo3.org/extensions/repository/view/exinit_latesttopics/current/" target="_blank">exinit_latesttopics</a> displays the latest forum topics in a box, <a href="http://typo3.org/extensions/repository/view/exinit_pollwidget/current/" target="_blank">exinit_pollwidget</a> displays an AJAX box for forum polls to make voting possible on any page.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hinnerk-altenburg.de/weblog/two-typo3-opensource-extensions-published/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>My New Jobs since May 2008</title>
		<link>http://www.hinnerk-altenburg.de/weblog/my-new-jobs-since-may-2008/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=my-new-jobs-since-may-2008</link>
		<comments>http://www.hinnerk-altenburg.de/weblog/my-new-jobs-since-may-2008/#comments</comments>
		<pubDate>Tue, 24 Jun 2008 23:10:16 +0000</pubDate>
		<dc:creator>Hinnerk</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[epublica]]></category>
		<category><![CDATA[Exinit]]></category>
		<category><![CDATA[Freelancer]]></category>
		<category><![CDATA[Hamburg]]></category>
		<category><![CDATA[Job]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[TYPO3]]></category>
		<category><![CDATA[XING]]></category>

		<guid isPermaLink="false">http://www.hinnerk-altenburg.de/weblog/my-new-jobs-since-may-2008/</guid>
		<description><![CDATA[Since May, I am employed by epublica GmbH, Hamburg, doing Perl development mainly for the XING Web platform. Have a look at their brand new office in the heart of the city upstairs from XING. Also I am working as a freelancer for the TYPO3 agency EXINIT GmbH &#38; Co. KG, Hamburg doing TYPO3 extension [...]]]></description>
				<content:encoded><![CDATA[<p>Since May, I am employed by <a href="http://www.epublica.de" target="_blank">epublica GmbH, Hamburg</a>, doing Perl development mainly for the <a href="https://www.xing.com">XING Web platform</a>. Have a look at their <a href="http://www.epublica.de/blog/hallo-neues-buro" target="_blank">brand new office</a> in the <a title="Google Maps" href="http://maps.google.de/maps?f=q&amp;hl=de&amp;geocode=&amp;q=G%C3%A4nsemarkt+43,+Hamburg,+Deutschland&amp;sll=53.555567,9.987928&amp;sspn=0.00877,0.017209&amp;ie=UTF8&amp;t=h&amp;ll=53.557059,9.990993&amp;spn=0.017539,0.034418&amp;z=15&amp;iwloc=r6" target="_blank">heart of the city</a> upstairs from XING.</p>
<p>Also I am working as a freelancer for the TYPO3 agency <a href="http://www.exinit.de" target="_blank">EXINIT GmbH &amp; Co. KG, Hamburg</a> doing TYPO3 extension development in PHP.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hinnerk-altenburg.de/weblog/my-new-jobs-since-may-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Umstellung auf WordPress / WordCamp 08 Hamburg</title>
		<link>http://www.hinnerk-altenburg.de/weblog/umstellung-auf-wordpress-wordcamp-08-hamburg/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=umstellung-auf-wordpress-wordcamp-08-hamburg</link>
		<comments>http://www.hinnerk-altenburg.de/weblog/umstellung-auf-wordpress-wordcamp-08-hamburg/#comments</comments>
		<pubDate>Sat, 26 Jan 2008 14:37:30 +0000</pubDate>
		<dc:creator>Hinnerk</dc:creator>
				<category><![CDATA[Deutsch]]></category>
		<category><![CDATA[Conference]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Hamburg]]></category>
		<category><![CDATA[Sandbox]]></category>
		<category><![CDATA[SimplePHPBlog]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[WordCamp]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.hinnerk-altenburg.de/weblog/umstellung-auf-wordpress/</guid>
		<description><![CDATA[Anlässlich des aktuell stattfindenden WordCamp 08 in Hamburg habe ich meine Seite von SimplePHPblog auf WordPress umgestellt. Da ich WordPress bereits seit einiger Zeit mehrfach beruflich einsetze, habe ich das WordCamp als Anlass genommen, diese Website endlich auch umzustellen. Da hier auf dem WordCamp live &#8220;getwittert&#8221; wird, habe ich mir auch flugs einen Twitter-Account angelegt. [...]]]></description>
				<content:encoded><![CDATA[<p>Anlässlich des aktuell stattfindenden <a href="http://www.wordcamp08.de/" title="WordCamp08 Hamburg">WordCamp 08 in Hamburg</a> habe ich meine Seite von <a href="http://www.simplephpblog.com/">SimplePHPblog</a> auf <a href="http://wordpress.org/">WordPress</a> umgestellt. Da ich WordPress bereits seit einiger Zeit mehrfach beruflich einsetze, habe ich das WordCamp als Anlass genommen, diese Website endlich auch umzustellen.</p>
<p>Da hier auf dem WordCamp <a href="http://www.wordcamp08.de/2008/01/26/livebloggen-auf-die-twitterwall/">live &#8220;getwittert&#8221;</a> wird, habe ich mir auch flugs einen <a href="http://twitter.com/hinnerk_a">Twitter-Account</a> angelegt.</p>
<p>Momentan höre ich einen Vortrag zum Sandbox-Theming, für das ich mich gestern auch für diesen Blog entschieden habe. Scheint noch eine ganze Menge nützlicher CSS-Selektoren zu geben, mit denen ich mich mal in nächster Zeit auseinandersetzen werde.</p>
<p>Umstellung und Beitrag live aus dem WLAN vom <a href="http://www.wordcamp08.de/" title="WordCamp08 Hamburg">WordCamp 08 in Hamburg</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hinnerk-altenburg.de/weblog/umstellung-auf-wordpress-wordcamp-08-hamburg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hinnerk Altenburg a.k.a. Hinnerk Voss</title>
		<link>http://www.hinnerk-altenburg.de/weblog/hinnerk-voss/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=hinnerk-voss</link>
		<comments>http://www.hinnerk-altenburg.de/weblog/hinnerk-voss/#comments</comments>
		<pubDate>Fri, 26 Oct 2007 11:04:34 +0000</pubDate>
		<dc:creator>Hinnerk</dc:creator>
				<category><![CDATA[Deutsch]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Hochzeit]]></category>
		<category><![CDATA[Marriage]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://weblog.hinnerk-voss.de/weblog/married-new-name/</guid>
		<description><![CDATA[I am married now and changed my family name to my wife&#8217;s family name! From now on, I am no longer called Hinnerk Voss but Hinnerk Altenburg. Ich habe geheiratet und den Namen meiner Frau angenommen! Von nun an heiße ich nicht mehr Hinnerk Voss, sondern Hinnerk Altenburg.]]></description>
				<content:encoded><![CDATA[<p lang="en">I am married now and changed my family name to my wife&#8217;s family name! From now on, I am no longer called Hinnerk Voss but Hinnerk Altenburg.</p>
<p lang="de">Ich habe geheiratet und den Namen meiner Frau angenommen! Von nun an heiße ich nicht mehr Hinnerk Voss, sondern Hinnerk Altenburg.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hinnerk-altenburg.de/weblog/hinnerk-voss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Further Research on Brachytherapy at University of Marburg</title>
		<link>http://www.hinnerk-altenburg.de/weblog/further-research-on-brachytherapy-at-university-of-marburg/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=further-research-on-brachytherapy-at-university-of-marburg</link>
		<comments>http://www.hinnerk-altenburg.de/weblog/further-research-on-brachytherapy-at-university-of-marburg/#comments</comments>
		<pubDate>Sat, 24 Mar 2007 20:18:12 +0000</pubDate>
		<dc:creator>Hinnerk</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[University]]></category>

		<guid isPermaLink="false">http://weblog.hinnerk-voss.de/weblog/further-research-on-brachtherapy-at-university-of-marburg/</guid>
		<description><![CDATA[The Prostate Center of the University of Marburg has released a description of their research topics, one of them is a further research related to my diploma thesis.]]></description>
				<content:encoded><![CDATA[<p>The Prostate Center of the University of Marburg has released a description of their research topics, one of them is a <a href="http://www.med.uni-marburg.de/d-einrichtungen/prostzent/forschung/#NAVSIB" target="_blank">further research related to my diploma thesis</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hinnerk-altenburg.de/weblog/further-research-on-brachytherapy-at-university-of-marburg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Meet me at fairs in Leipzig and Munich</title>
		<link>http://www.hinnerk-altenburg.de/weblog/meet-me-at-fairs-in-leipzig-and-munich/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=meet-me-at-fairs-in-leipzig-and-munich</link>
		<comments>http://www.hinnerk-altenburg.de/weblog/meet-me-at-fairs-in-leipzig-and-munich/#comments</comments>
		<pubDate>Fri, 09 Feb 2007 11:39:55 +0000</pubDate>
		<dc:creator>Hinnerk</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Fair]]></category>
		<category><![CDATA[Leipzig]]></category>
		<category><![CDATA[Munich]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[publicCB]]></category>

		<guid isPermaLink="false">http://weblog.hinnerk-voss.de/weblog/meet-me-at-fairs-in-leipzig-and-munich/</guid>
		<description><![CDATA[I am exhibitor at &#8220;mitteldeutsche Handwerksmesse&#8221; in Leipzig from Feb 17th to Feb 25th hall 2, stand C27 &#8211; and in Munich at &#8220;Internationale Handwerksmesse IHM&#8221; from March 8th to March 14th hall B5, stand 217. We are presenting our new Internet portal publiccb.com of public CB GmbH where I am CEO since November. You [...]]]></description>
				<content:encoded><![CDATA[<p>I am exhibitor at <a href="http://www.handwerksmesse-leipzig.de/" target="_blank">&#8220;mitteldeutsche Handwerksmesse&#8221;</a> in Leipzig from Feb 17th to Feb 25th hall 2, stand C27 &#8211; and in Munich at <a href="http://www.ihm.de/" target="_blank">&#8220;Internationale Handwerksmesse IHM&#8221;</a> from March 8th to March 14th hall B5, stand 217.</p>
<p>We are presenting our new Internet portal <a href="https://www.publiccb.com/" target="_blank">publiccb.com</a> of <a href="https://www.publiccb.com/" target="_blank">public CB GmbH</a> where I am CEO since November.</p>
<p>You are welcome to meet me there!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hinnerk-altenburg.de/weblog/meet-me-at-fairs-in-leipzig-and-munich/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Relaunch of Alumni Website</title>
		<link>http://www.hinnerk-altenburg.de/weblog/relaunch-of-alumni-website/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=relaunch-of-alumni-website</link>
		<comments>http://www.hinnerk-altenburg.de/weblog/relaunch-of-alumni-website/#comments</comments>
		<pubDate>Mon, 22 May 2006 16:39:39 +0000</pubDate>
		<dc:creator>Hinnerk</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[University]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://weblog.hinnerk-voss.de/weblog/relaunch-of-alumni-website/</guid>
		<description><![CDATA[This weekend I relaunched the Alumni Website of the Department of Computer Science at the University of Wiesbaden. It is now based on an online community software for networking purpose. If you are an FH Wiesbaden Informatik Alumni &#8211; come and join!]]></description>
				<content:encoded><![CDATA[<p>This weekend I relaunched the <a href="http://www.fhw-informatik.de/" target="_blank">Alumni Website</a> of the Department of Computer Science at the University of Wiesbaden.<br />
It is now based on an online community software for networking purpose.<br />
If you are an FH Wiesbaden Informatik Alumni &#8211; come and join!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hinnerk-altenburg.de/weblog/relaunch-of-alumni-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Job in Hamburg</title>
		<link>http://www.hinnerk-altenburg.de/weblog/new-job-in-hamburg/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=new-job-in-hamburg</link>
		<comments>http://www.hinnerk-altenburg.de/weblog/new-job-in-hamburg/#comments</comments>
		<pubDate>Tue, 11 Apr 2006 13:44:11 +0000</pubDate>
		<dc:creator>Hinnerk</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Hamburg]]></category>
		<category><![CDATA[India]]></category>
		<category><![CDATA[Job]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://weblog.hinnerk-voss.de/weblog/new-job-in-hamburg/</guid>
		<description><![CDATA[I am now employed by PM-Team GmbH in Hamburg as CTO (Chief Technical Officer). We provide management of offshore outsourcing projects by German software engineers in India.]]></description>
				<content:encoded><![CDATA[<p>I am now employed by <a href="http://www.pm-team-gmbh.com/" target="_blank">PM-Team GmbH</a> in Hamburg as CTO (Chief Technical Officer). We provide management of offshore outsourcing projects by German software engineers in India.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hinnerk-altenburg.de/weblog/new-job-in-hamburg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Full EMBEC Article as PDF</title>
		<link>http://www.hinnerk-altenburg.de/weblog/full-embec-article-as-pdf/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=full-embec-article-as-pdf</link>
		<comments>http://www.hinnerk-altenburg.de/weblog/full-embec-article-as-pdf/#comments</comments>
		<pubDate>Thu, 29 Dec 2005 19:42:51 +0000</pubDate>
		<dc:creator>Hinnerk</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Article]]></category>
		<category><![CDATA[University]]></category>

		<guid isPermaLink="false">http://weblog.hinnerk-voss.de/weblog/full-embec-article-as-pdf/</guid>
		<description><![CDATA[Our full article &#8220;Calibration and Navigation of a Transrectal Ultrasound Probe for Prostate Cancer Therapy&#8221;, published in the IFMBE-Proceedings of the 3rd European Medical and Biological Engineering Conference EMBEC &#8217;05 in Prague (Czech Republic), has been published as PDF. Prof. Dr. D. Richter has held a lecture about this project in Prague in November.]]></description>
				<content:encoded><![CDATA[<p>Our full article <a href="http://www.hinnerk-altenburg.de/EMBEC_1943F_Publ_Version.pdf">&#8220;Calibration and Navigation of a Transrectal Ultrasound Probe for Prostate Cancer Therapy&#8221;</a>, published in the IFMBE-Proceedings of the <strong>3rd European Medical and Biological Engineering Conference</strong> <a href="http://www.embec05.org/" target="_blank">EMBEC &#8217;05</a> in Prague (Czech Republic), has been published as <a href="http://www.hinnerk-altenburg.de/EMBEC_1943F_Publ_Version.pdf">PDF</a>.<br />
<a href="http://fh-web1.informatik.fh-wiesbaden.de/go.cfm/fb/6/sid/0/sprachid/1/page/:peopledetail%28:PID:3:SPRACHID:1:FB:6%29.html" target="_blank">Prof. Dr. D. Richter</a> has held a lecture about this project in Prague in November.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hinnerk-altenburg.de/weblog/full-embec-article-as-pdf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Article in WirtschaftsWoche</title>
		<link>http://www.hinnerk-altenburg.de/weblog/bangalore-article-in-wirtschaftswoche/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=bangalore-article-in-wirtschaftswoche</link>
		<comments>http://www.hinnerk-altenburg.de/weblog/bangalore-article-in-wirtschaftswoche/#comments</comments>
		<pubDate>Tue, 20 Dec 2005 09:44:25 +0000</pubDate>
		<dc:creator>Hinnerk</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Article]]></category>
		<category><![CDATA[Bangalore]]></category>
		<category><![CDATA[India]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://weblog.hinnerk-voss.de/weblog/article-in-wirtschaftswoche/</guid>
		<description><![CDATA[The article &#8220;Groß bunt chaotisch&#8221; about Germans (including me) in Bangalore ist now online and printed in the recent edition of the German economy magazine WirtschaftsWoche 51/2005. I&#8217;ve been interviewed by the Asia correspondent of the magazine Angela KÃ¶hler during my stay in Bangalore in November 2005.]]></description>
				<content:encoded><![CDATA[<p>The article <a title="Hinnerk Altenburg in WirtschaftsWoche" href="http://www.wiwo.de/karriere/gross-bunt-chaotisch-123948/" target="_blank">&#8220;Groß bunt chaotisch&#8221;</a> about Germans (including me) in Bangalore ist now online and printed in the recent edition of the German economy magazine <a href="http://www.wiwo.de/" target="_blank">WirtschaftsWoche</a> 51/2005.</p>
<p>I&#8217;ve been interviewed by the Asia correspondent of the magazine Angela KÃ¶hler during my stay in Bangalore in November 2005.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hinnerk-altenburg.de/weblog/bangalore-article-in-wirtschaftswoche/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Meet me at FOSS.in/2005 Open Source Conference in Bangalore</title>
		<link>http://www.hinnerk-altenburg.de/weblog/meet-me-at-fossin2005-open-source-conference-in-bangalore/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=meet-me-at-fossin2005-open-source-conference-in-bangalore</link>
		<comments>http://www.hinnerk-altenburg.de/weblog/meet-me-at-fossin2005-open-source-conference-in-bangalore/#comments</comments>
		<pubDate>Thu, 01 Dec 2005 08:56:37 +0000</pubDate>
		<dc:creator>Hinnerk</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Bangalore]]></category>
		<category><![CDATA[Conference]]></category>
		<category><![CDATA[India]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://weblog.hinnerk-voss.de/weblog/meet-me-at-fossin2005-open-source-conference-in-bangalore/</guid>
		<description><![CDATA[The FOSS.in/2005 Free &#38; Open Source Software Conference is from November 29 to December 2 at Bangalore Palace. I am listening to several lectures. You&#8217;re welcome to join me if you are in Bangalore.]]></description>
				<content:encoded><![CDATA[<p>The <a href="http://www.foss.in/" target="_blank">FOSS.in/2005 Free &amp; Open Source Software Conference </a> is from November 29 to December 2 at Bangalore Palace. I am listening to several lectures.<br />
You&#8217;re welcome to join me if you are in Bangalore.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hinnerk-altenburg.de/weblog/meet-me-at-fossin2005-open-source-conference-in-bangalore/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Diploma Certificate Received</title>
		<link>http://www.hinnerk-altenburg.de/weblog/diploma-certificate-received/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=diploma-certificate-received</link>
		<comments>http://www.hinnerk-altenburg.de/weblog/diploma-certificate-received/#comments</comments>
		<pubDate>Fri, 16 Sep 2005 12:20:42 +0000</pubDate>
		<dc:creator>Hinnerk</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[University]]></category>

		<guid isPermaLink="false">http://weblog.hinnerk-voss.de/weblog/diploma-certificate-received/</guid>
		<description><![CDATA[Today I finally received my diploma certificate. I may now &#8211; retroactively by the date of June 3rd, 2005 &#8211; call me &#8220;Diplom-Informatiker (FH)&#8221;.]]></description>
				<content:encoded><![CDATA[<p>Today I finally received my diploma certificate.<br />
I may now &#8211; retroactively by the date of June 3rd, 2005 &#8211; call me &#8220;Diplom-Informatiker (FH)&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hinnerk-altenburg.de/weblog/diploma-certificate-received/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alumni website online</title>
		<link>http://www.hinnerk-altenburg.de/weblog/alumni-website-online/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=alumni-website-online</link>
		<comments>http://www.hinnerk-altenburg.de/weblog/alumni-website-online/#comments</comments>
		<pubDate>Fri, 05 Aug 2005 12:20:57 +0000</pubDate>
		<dc:creator>Hinnerk</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[University]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://weblog.hinnerk-voss.de/weblog/alumni-website-online/</guid>
		<description><![CDATA[I started an alumni network for the Department of Computer Science of my university. Visit the website: http://www.fhw-informatik.de. The website starts with a bulletin board for the alumni to stay in contact with each other and with the university after finishing their studies.]]></description>
				<content:encoded><![CDATA[<p>I started an alumni network for the Department of Computer Science of my university.<br />
Visit the website: <a href="http://www.fhw-informatik.de/" target="_blank">http://www.fhw-informatik.de</a>.<br />
The website starts with a bulletin board for the alumni to stay in contact with each other and with the university after finishing their studies.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hinnerk-altenburg.de/weblog/alumni-website-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EMBEC &#8217;05 &#8211; Abstract accepted</title>
		<link>http://www.hinnerk-altenburg.de/weblog/embec-05-abstract-accepted/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=embec-05-abstract-accepted</link>
		<comments>http://www.hinnerk-altenburg.de/weblog/embec-05-abstract-accepted/#comments</comments>
		<pubDate>Thu, 07 Jul 2005 19:48:22 +0000</pubDate>
		<dc:creator>Hinnerk</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Article]]></category>
		<category><![CDATA[University]]></category>

		<guid isPermaLink="false">http://weblog.hinnerk-voss.de/weblog/embec-05-abstract-accepted/</guid>
		<description><![CDATA[Our abstract &#8220;Calibration and Navigation of a Transrectal Ultrasound Probe for Prostate Cancer Therapy&#8221;, submitted to the commitee of the 3rd European Medical and Biological Engineering Conference EMBEC &#8217;05 in Prague (Czech Republic), has been reviewed and accepted! We are invited to give a lecture at the conference in November. The paper is about the [...]]]></description>
				<content:encoded><![CDATA[<p>Our abstract <a href="http://www.hinnerk-altenburg.de/EMBEC05RichterVossBertholStrassmann.pdf">&#8220;Calibration and Navigation of a Transrectal Ultrasound Probe for Prostate Cancer Therapy&#8221;</a>, submitted to the commitee of the <strong>3rd European Medical and Biological Engineering Conference</strong> <a href="http://www.embec05.org/" target="_blank">EMBEC &#8217;05</a> in Prague (Czech Republic), has been reviewed and accepted!<br />
We are invited to give a lecture at the conference in November.<br />
The paper is about the diploma theses of Karsten Berthold and me. Currently we are working on the full paper.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hinnerk-altenburg.de/weblog/embec-05-abstract-accepted/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Diploma thesis finished</title>
		<link>http://www.hinnerk-altenburg.de/weblog/diploma-thesis-finished/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=diploma-thesis-finished</link>
		<comments>http://www.hinnerk-altenburg.de/weblog/diploma-thesis-finished/#comments</comments>
		<pubDate>Tue, 07 Jun 2005 09:14:40 +0000</pubDate>
		<dc:creator>Hinnerk</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[University]]></category>

		<guid isPermaLink="false">http://weblog.hinnerk-voss.de/weblog/diploma-thesis-finished/</guid>
		<description><![CDATA[It&#8217;s done! On Friday I handed in my diploma thesis after 6 months work. In a few weeks I will get the result and may then call me Diplom-Informatiker (FH). The title of the thesis is &#8220;Development of a 3-D Navigation System for Ultrasound-Guided Brachytherapy for Prostate Carcinoma&#8221; (PDF, 14MB). It is the start of [...]]]></description>
				<content:encoded><![CDATA[<p>It&#8217;s done! On Friday I handed in my diploma thesis after 6 months work. In a few weeks I will get the result and may then call me Diplom-Informatiker (FH).<br />
The title of the thesis is <a href="http://www.hinnerk-voss.de/diplomarbeit-voss-2005.pdf">&#8220;Development of a 3-D Navigation System for Ultrasound-Guided Brachytherapy for Prostate Carcinoma&#8221; (PDF, 14MB)</a>. It is the start of a research project for improving the contemporary procedure of prostate cancer brachytherapy treatment.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hinnerk-altenburg.de/weblog/diploma-thesis-finished/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Our project for Hannover Messe in the newspapers</title>
		<link>http://www.hinnerk-altenburg.de/weblog/our-project-for-hannover-messe-in-the-newspapers/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=our-project-for-hannover-messe-in-the-newspapers</link>
		<comments>http://www.hinnerk-altenburg.de/weblog/our-project-for-hannover-messe-in-the-newspapers/#comments</comments>
		<pubDate>Wed, 06 Apr 2005 17:23:53 +0000</pubDate>
		<dc:creator>Hinnerk</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Article]]></category>
		<category><![CDATA[Fair]]></category>
		<category><![CDATA[University]]></category>

		<guid isPermaLink="false">http://weblog.hinnerk-voss.de/weblog/our-project-for-hannover-messe-in-the-newspapers/</guid>
		<description><![CDATA[Today there are reports in the newspapers &#8220;Wiesbadener Kurier&#8221; and &#8220;Wiesbadener Tagblatt&#8221; about our project which we will show at Hannover Messe next week. Online versions of these reports are available on: Wiesbadener-Kurier.de Wiesbadener-Tagblatt.de]]></description>
				<content:encoded><![CDATA[<p>Today there are reports in the newspapers &#8220;Wiesbadener Kurier&#8221; and &#8220;Wiesbadener Tagblatt&#8221; about our project which we will show at Hannover Messe next week.</p>
<p>Online versions of these reports are available on:<br />
<a href="http://www.wiesbadener-kurier.de/region/objekt.php3?artikel_id=1848967" target="_blank">Wiesbadener-Kurier.de</a><br />
<a href="http://www.wiesbadener-tagblatt.de/region/objekt.php3?artikel_id=1848058" target="_blank">Wiesbadener-Tagblatt.de</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hinnerk-altenburg.de/weblog/our-project-for-hannover-messe-in-the-newspapers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hannover Messe 2005 (11 &#8211; 15 April)</title>
		<link>http://www.hinnerk-altenburg.de/weblog/hannover-messe-april-2005/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=hannover-messe-april-2005</link>
		<comments>http://www.hinnerk-altenburg.de/weblog/hannover-messe-april-2005/#comments</comments>
		<pubDate>Sat, 05 Mar 2005 15:08:01 +0000</pubDate>
		<dc:creator>Hinnerk</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[University]]></category>

		<guid isPermaLink="false">http://weblog.hinnerk-voss.de/weblog/hannover-messe-2005-11-15-april/</guid>
		<description><![CDATA[You are invited to visit my university&#8217;s fair stand at Hannover Messe 2005 industrial technology fair! I will be at the stand (Hall 2, Stand C45) from Monday 11 till Wednesday 13 April. We present the &#8220;Tetraoptical 3-D Navigation System for Interstitial Brachytherapy&#8221; of our Stereo Vision and Robot Control Lab. Download project details (PDF)]]></description>
				<content:encoded><![CDATA[<p>You are invited to visit my university&#8217;s fair stand at <a href="http://www.hannovermesse.de/" target="_blank">Hannover Messe 2005</a> industrial technology fair!<br />
I will be at the stand (Hall 2, Stand C45) from Monday 11 till Wednesday 13 April. We present the &#8220;Tetraoptical 3-D Navigation System for Interstitial Brachytherapy&#8221; of our Stereo Vision and Robot Control Lab.</p>
<p><a href="http://www.ttn-hessen.de/npkpublish/filestore/77/h_17.pdf" target="_blank">Download project details (PDF)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hinnerk-altenburg.de/weblog/hannover-messe-april-2005/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
