<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Julians Weblog</title>
	<atom:link href="http://julian32.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://julian32.wordpress.com</link>
	<description>Mein Tagebuch auf dem Weg zur Weltherrschaft.</description>
	<lastBuildDate>Tue, 12 Jul 2011 17:47:20 +0000</lastBuildDate>
	<language>de</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='julian32.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Julians Weblog</title>
		<link>http://julian32.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://julian32.wordpress.com/osd.xml" title="Julians Weblog" />
	<atom:link rel='hub' href='http://julian32.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Android als Barcode-Scanner</title>
		<link>http://julian32.wordpress.com/2011/04/28/android-als-barcode-scanner/</link>
		<comments>http://julian32.wordpress.com/2011/04/28/android-als-barcode-scanner/#comments</comments>
		<pubDate>Thu, 28 Apr 2011 16:40:53 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Barcode]]></category>
		<category><![CDATA[Netzwerk]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[SL4A]]></category>

		<guid isPermaLink="false">http://julian32.wordpress.com/?p=254</guid>
		<description><![CDATA[Ich melde mich jetzt auch mal wieder zu Wort. Der Titel ist nicht ganz eindeutig, ich will euch hier jetzt nicht den ZXing-Barcode-Scanner vorstellen oder so, sondern ich habe etwas kleines gebastelt, das vielleicht sonst noch jemand nützlich finden könnte. Und zwar ein kleines Script für den Scripting Layer for Android, mit dem die gescannten [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=254&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ich melde mich jetzt auch mal wieder zu Wort. Der Titel ist nicht ganz eindeutig, ich will euch hier jetzt nicht den ZXing-Barcode-Scanner vorstellen oder so, sondern ich habe etwas kleines gebastelt, das vielleicht sonst noch jemand nützlich finden könnte.</p>
<p>Und zwar ein kleines Script für den <a href="http://code.google.com/p/android-scripting/">Scripting Layer for Android</a>, mit dem die gescannten Barcodes an einen Client im Netzwerk gesendet werden. Das Script gibt es weiter unten (bzw. nach dem Break) auch als QR-Code, um es direkt mit SL4A abscannen zu können.</p>
<pre class="brush: python;">
import android
import socket

HOST = ''
PORT = 38174

droid = android.Android()

sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.bind((HOST, PORT))
sock.listen(1)

droid.makeToast('Waiting for client...')
conn, addr = sock.accept()
droid.makeToast('Client %s:%d connected' % addr)

while True:
	code = droid.scanBarcode()
	if not code:
		break
	conn.send('%s\n' % code.result['extras']['SCAN_RESULT'])

conn.close()
</pre>
<p>Als Client lässt sich dieser Bash-Einzeiler verwenden:</p>
<pre class="brush: bash;">
nc $PHONE_IP 38174 | while read code; do xvkbd -text &quot;$(echo -n $code | head -c -1)\r&quot;; done
</pre>
<p><span id="more-254"></span></p>
<p style="text-align:center;margin:20px auto;"><img src="http://dl.dropbox.com/u/92247/sl4a_barcode_scanner.png" alt="barcode_scanner.py als QR-Code" /></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/julian32.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/julian32.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/julian32.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/julian32.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/julian32.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/julian32.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/julian32.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/julian32.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/julian32.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/julian32.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/julian32.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/julian32.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/julian32.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/julian32.wordpress.com/254/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=254&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://julian32.wordpress.com/2011/04/28/android-als-barcode-scanner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/db6f222ee582d9ed96b9ae5220fb89fe?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">Julian</media:title>
		</media:content>

		<media:content url="http://dl.dropbox.com/u/92247/sl4a_barcode_scanner.png" medium="image">
			<media:title type="html">barcode_scanner.py als QR-Code</media:title>
		</media:content>
	</item>
		<item>
		<title>_http._tcp IN SRV 0 0 80 www1</title>
		<link>http://julian32.wordpress.com/2011/04/09/_http-_tcp-in-srv-0-0-80-www1/</link>
		<comments>http://julian32.wordpress.com/2011/04/09/_http-_tcp-in-srv-0-0-80-www1/#comments</comments>
		<pubDate>Sat, 09 Apr 2011 19:42:41 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[HTTP]]></category>
		<category><![CDATA[SRV]]></category>
		<category><![CDATA[www]]></category>

		<guid isPermaLink="false">http://julian32.wordpress.com/?p=242</guid>
		<description><![CDATA[So, oder so ähnlich, würden DNS-Records für Websites aussehen, wenn die Browser es unterstützen würden. Aber nein, im Moment unterstützt es kein einziger. Und das, obwohl die entsprechenden Bugs seit Ewigkeiten offen sind: Mozilla: 20. September 1999 WebKit: 27. Januar 2006 Chromium: 20. September 2009 E-Mail (SMTP) nutzt den MX-Record. Mach ja auch Sinn, wobei [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=242&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So, oder so ähnlich, würden DNS-Records für Websites aussehen, wenn die Browser es unterstützen würden. Aber nein, im Moment unterstützt es kein einziger. Und das, obwohl die entsprechenden Bugs seit Ewigkeiten offen sind:</p>
<ul>
<li><strong>Mozilla</strong>: <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=14328">20. September 1999</a></li>
<li><strong>WebKit</strong>: <a href="https://bugs.webkit.org/show_bug.cgi?id=6872">27. Januar 2006</a></li>
<li><strong>Chromium</strong>: <a href="http://code.google.com/p/chromium/issues/detail?id=22423">20. September 2009</a></li>
</ul>
<p>E-Mail (SMTP) nutzt den MX-Record. Mach ja auch Sinn, wobei sich auch hier prinzipiell auch SRV-Records verwenden lassen könnten, ist aber halt so. Für Jabber und SIP werden in der Regel SRV-Records verwendet und auch die meisten LDAP- und Kerberos-Clients unterstützen sie. Doch bei HTTP ist das anders. Alle Webbrowser lösen nur A/AAAA/CNAME-, aber keine SRV-Records auf.</p>
<p>Und wo ist jetzt mein Problem? Funktioniert doch alles! Ja toll, funktioniert. Aber kann mir mal bitte jemand von diesen Typen, die rumrennen und rumschreien, dass die www.-Subdomain doch scheiße ist, erklären, wieso ich für die Domain (also direkt example.com.) einen A-Record auf den Webserver anlegen sollte? Wieso? Macht doch keinen Sinn. Warum ausgerechnet der Webserver und nicht der Jabber-Server? Warum ist der Webserver wichtiger? Domains lassen sich auch für was anderes verwenden, als für das Hosten von Websites, ja?</p>
<p>Abgesehen von dem Unsinn, für einen Service (statt für einen Host) A/AAAA-Records anzulegen bietet so ein SRV-Record noch ein paar tolle Vorteile. A/AAAA sind halt eben für Hosts gedacht und nicht für Services. Im Gegensatz zu SRV-Records bieten sie nämlich keine Unterstützung für Prioritäten und Gewichte. Damit lassen sich für HTTP-Services durchaus interessante Dinge machen. Also im Prinzip genau das, was man mit MX-Records schon seit Jahren für E-Mail machen kann:</p>
<p><code>_http._tcp	IN	SRV	0 30 www1<br />
_http._tcp	IN	SRV	0 70 www2<br />
_http._tcp	IN	SRV	5 0 www-fallback</code></p>
<p>Also liebe Browserentwickler. Implementiert endlich SRV-Records für HTTP (und andere Protokolle, die ihr unterstützt) und hört auf zu heulen. Die paar Milisekunden, die für einen SRV-Lookup draufgehen, sind nur so lange verschwendet, bis die meisten Domains entsprechende Records haben. Und es gibt ja eigentlich auch keinen Grund, der dagegen spricht, diese anzulegen. Also, ab in den Texteditor, programmieren, testen und committen. Danke!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/julian32.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/julian32.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/julian32.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/julian32.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/julian32.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/julian32.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/julian32.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/julian32.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/julian32.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/julian32.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/julian32.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/julian32.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/julian32.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/julian32.wordpress.com/242/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=242&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://julian32.wordpress.com/2011/04/09/_http-_tcp-in-srv-0-0-80-www1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/db6f222ee582d9ed96b9ae5220fb89fe?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">Julian</media:title>
		</media:content>
	</item>
		<item>
		<title>Der Google-Trojaner</title>
		<link>http://julian32.wordpress.com/2011/03/08/der-google-trojaner/</link>
		<comments>http://julian32.wordpress.com/2011/03/08/der-google-trojaner/#comments</comments>
		<pubDate>Tue, 08 Mar 2011 01:50:59 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Trojaner]]></category>

		<guid isPermaLink="false">https://julian32.wordpress.com/?p=234</guid>
		<description><![CDATA[Oder: Warum ich nicht glaube, dass Google nur Gutes will. In diesem Beitrag geht es um meine Meinung zu Googles Möglichkeit, Apps auf Android-Smartphones aus der Ferne zu deinstallieren. Wer das nicht mitbekommen hat, findet hier weitere Informationen. Wie wahrscheinlich schon durch die Überschrift deutlich wurde, finde ich das ganze eher weniger berauschend. Und zwar [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=234&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Oder: Warum ich nicht glaube, dass Google nur Gutes will.</p>
<p>In diesem Beitrag geht es um meine Meinung zu Googles Möglichkeit, Apps auf Android-Smartphones aus der Ferne zu deinstallieren. Wer das nicht mitbekommen hat, <a href="http://googlemobile.blogspot.com/2011/03/update-on-android-market-security.html">findet hier weitere Informationen</a>.</p>
<p>Wie wahrscheinlich schon durch die Überschrift deutlich wurde, finde ich das ganze eher weniger berauschend. Und zwar hat das ganze einen sehr einfachen Grund:</p>
<p>Wenn Google diese Backdoor nur dazu nutzen möchte, Schadsoftware von Android-Geräten zu entfernen, dann gäbe es einen viel einfacheren Weg: Eine einfache Benachrichtigung, die den Benutzer darauf hinweist, dass er Malware installiert hat und ob er ihm die Möglichkeit bietet, diese zu deinstallieren.</p>
<p>Dann bleibt da noch die Frage, wofür Google diese Backdoor möglicherweise nutzen möchte oder im schlimmsten Fall eventuell sogar schon nutzt. Hier habe ich keine konkreten Anhaltspunkte und möchte Google deshalb auch keine Vorwürfe machen und hoffe einfach mal das Beste. Trotzdem bleibt ein mulmiges Gefühl.</p>
<p>Und wo wir schon beim Thema sind: Was ich auch nicht gerade positiv finde, ist, dass mir keine wirkliche Alternative zu den Google-Diensten auf Android bekannt ist, die man auf eigener Hardware betreiben kann oder die die Daten komplett verschlüsselt auf potentiell unsicheren Servern speichert. Und das finde ich sehr schade, da doch gerade Android die offene Plattform ist, mit der das ganze doch relativ einfach möglich sein sollte.</p>
<p>Wer möchte mein Retter sein und die entsprechenden Andwendungen schreiben? Es wäre jedenfalls großartig. Aber wer nicht ganz so viel Zeit investieren möchte, könnte mir ja erklären, warum es so, wie es im Moment ist, besser ist, als wenn der Benutzer noch gefragt wird, ob er die App deinstallieren will.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/julian32.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/julian32.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/julian32.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/julian32.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/julian32.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/julian32.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/julian32.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/julian32.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/julian32.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/julian32.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/julian32.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/julian32.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/julian32.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/julian32.wordpress.com/234/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=234&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://julian32.wordpress.com/2011/03/08/der-google-trojaner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/db6f222ee582d9ed96b9ae5220fb89fe?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">Julian</media:title>
		</media:content>
	</item>
		<item>
		<title>Android 3.0 Honeycomb Preview</title>
		<link>http://julian32.wordpress.com/2011/01/06/android-3-0-honeycomb-preview/</link>
		<comments>http://julian32.wordpress.com/2011/01/06/android-3-0-honeycomb-preview/#comments</comments>
		<pubDate>Thu, 06 Jan 2011 03:04:45 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://julian32.wordpress.com/?p=226</guid>
		<description><![CDATA[Sieht sehr interessant, aber auch sehr ressourcenhungrig aus. Will mir jemand ein Honeycomb-Tablet schenken?<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=226&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<span style="text-align:center; display: block;"><a href="http://julian32.wordpress.com/2011/01/06/android-3-0-honeycomb-preview/"><img src="http://img.youtube.com/vi/hPUGNCIozp0/2.jpg" alt="" /></a></span>
<p>Sieht sehr interessant, aber auch sehr ressourcenhungrig aus. Will mir jemand ein Honeycomb-Tablet schenken?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/julian32.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/julian32.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/julian32.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/julian32.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/julian32.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/julian32.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/julian32.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/julian32.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/julian32.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/julian32.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/julian32.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/julian32.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/julian32.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/julian32.wordpress.com/226/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=226&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://julian32.wordpress.com/2011/01/06/android-3-0-honeycomb-preview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/db6f222ee582d9ed96b9ae5220fb89fe?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">Julian</media:title>
		</media:content>
	</item>
		<item>
		<title>KenFM über WikiLeaks</title>
		<link>http://julian32.wordpress.com/2010/12/18/kenfm-uber-wikileaks/</link>
		<comments>http://julian32.wordpress.com/2010/12/18/kenfm-uber-wikileaks/#comments</comments>
		<pubDate>Sat, 18 Dec 2010 17:13:20 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[WikiLeaks]]></category>

		<guid isPermaLink="false">http://julian32.wordpress.com/?p=218</guid>
		<description><![CDATA[(via scusiblog.org)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=218&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<span style="text-align:center; display: block;"><a href="http://julian32.wordpress.com/2010/12/18/kenfm-uber-wikileaks/"><img src="http://img.youtube.com/vi/HVJAUECLdo8/2.jpg" alt="" /></a></span>
<p>(via <a href="https://scusiblog.org/?p=3977">scusiblog.org</a>)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/julian32.wordpress.com/218/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/julian32.wordpress.com/218/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/julian32.wordpress.com/218/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/julian32.wordpress.com/218/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/julian32.wordpress.com/218/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/julian32.wordpress.com/218/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/julian32.wordpress.com/218/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/julian32.wordpress.com/218/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/julian32.wordpress.com/218/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/julian32.wordpress.com/218/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/julian32.wordpress.com/218/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/julian32.wordpress.com/218/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/julian32.wordpress.com/218/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/julian32.wordpress.com/218/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=218&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://julian32.wordpress.com/2010/12/18/kenfm-uber-wikileaks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/db6f222ee582d9ed96b9ae5220fb89fe?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">Julian</media:title>
		</media:content>
	</item>
		<item>
		<title>Klausurenzeit</title>
		<link>http://julian32.wordpress.com/2010/12/15/klausurenzeit/</link>
		<comments>http://julian32.wordpress.com/2010/12/15/klausurenzeit/#comments</comments>
		<pubDate>Wed, 15 Dec 2010 19:03:29 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Schule]]></category>
		<category><![CDATA[Klausuren]]></category>

		<guid isPermaLink="false">http://julian32.wordpress.com/?p=212</guid>
		<description><![CDATA[Wohl die schönste Zeit des Jahres, oder? Noch drei wunderschöne Klausuren, wovon zwei doch super einfach sind: Deutsch und Wirtschaft. Und dann noch eine extrem schwere in Mathe. So, wer hat das jetzt geglaubt und die unsichtbaren Ironie-Tags übersehen? Mathe ist einfach, für Deutsch und Wirtschaft suche ich noch Freiwillige, die für mich schreiben wollen. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=212&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Wohl die schönste Zeit des Jahres, oder? Noch drei wunderschöne Klausuren, wovon zwei doch super einfach sind: Deutsch und Wirtschaft. Und dann noch eine extrem schwere in Mathe.</p>
<p>So, wer hat das jetzt geglaubt und die unsichtbaren Ironie-Tags übersehen? Mathe ist einfach, für Deutsch und Wirtschaft suche ich noch Freiwillige, die für mich schreiben wollen. Wer Interesse hat, meldet sich bitte in den Kommentaren.</p>
<p>Deutsch wird abenteuerlich (obwohl wir keine Erlebniserzählung schreiben dürfen&#8230; leider&#8230; :-D) und Wirtschaft wird bestimmt ganz toll, weil wir dieses Jahr schon gefühlt 300 Blätter bekommen und ich da nicht mehr so wirklich durchblicke. Abgesehen davon ist das sowieso &ndash; wie nenn ich es &ndash; interessant. Ein Viereck mit sechs Ecken und das soll dann auch noch magisch sein. Das kann doch nicht funktionieren.</p>
<p>Nebenbei eine Frage an meinen Sozialkundelehrer: Wie schafft man es, eine Klausur, die wir Mitte November geschrieben haben, immer noch nicht rauszugeben?</p>
<p><strong>[Update]</strong> Ich hab Deutsch hinter mir und ich lebe noch.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/julian32.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/julian32.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/julian32.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/julian32.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/julian32.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/julian32.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/julian32.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/julian32.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/julian32.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/julian32.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/julian32.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/julian32.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/julian32.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/julian32.wordpress.com/212/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=212&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://julian32.wordpress.com/2010/12/15/klausurenzeit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/db6f222ee582d9ed96b9ae5220fb89fe?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">Julian</media:title>
		</media:content>
	</item>
		<item>
		<title>6.8 + 5.2 = 13</title>
		<link>http://julian32.wordpress.com/2010/12/14/6-8-5-2-13/</link>
		<comments>http://julian32.wordpress.com/2010/12/14/6-8-5-2-13/#comments</comments>
		<pubDate>Tue, 14 Dec 2010 20:27:28 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://julian32.wordpress.com/?p=207</guid>
		<description><![CDATA[Kein Wunder, dass wir da so gut abschneiden&#8230;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=207&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<span style="text-align:center; display: block;"><a href="http://julian32.wordpress.com/2010/12/14/6-8-5-2-13/"><img src="http://img.youtube.com/vi/pY-NWkKKO4M/2.jpg" alt="" /></a></span>
<p>Kein Wunder, dass wir da so gut abschneiden&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/julian32.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/julian32.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/julian32.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/julian32.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/julian32.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/julian32.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/julian32.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/julian32.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/julian32.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/julian32.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/julian32.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/julian32.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/julian32.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/julian32.wordpress.com/207/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=207&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://julian32.wordpress.com/2010/12/14/6-8-5-2-13/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/db6f222ee582d9ed96b9ae5220fb89fe?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">Julian</media:title>
		</media:content>
	</item>
		<item>
		<title>Wiederauferstehung</title>
		<link>http://julian32.wordpress.com/2010/12/12/wiederauferstehung/</link>
		<comments>http://julian32.wordpress.com/2010/12/12/wiederauferstehung/#comments</comments>
		<pubDate>Sun, 12 Dec 2010 13:36:54 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://julian32.wordpress.com/?p=192</guid>
		<description><![CDATA[Oder so. Nachdem ich mal wieder bloggen will und auch diverse andere Blog-Hosting-Serivces ausprobiert habe (Tumblr, Posterous, &#8230;) und mit keinem so wirklich glücklich war, werde ich eben dieses Blog wiederbeleben. Als Zeichen des Neuanfangs habe ich gleich mal ein neues Theme ausgesucht. Diesmal wird natürlich hoffentlich alles besser. ;-)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=192&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Oder so. Nachdem ich mal wieder bloggen will und auch diverse andere Blog-Hosting-Serivces ausprobiert habe (Tumblr, Posterous, &#8230;) und mit keinem so wirklich glücklich war, werde ich eben dieses Blog wiederbeleben. Als Zeichen des Neuanfangs habe ich gleich mal ein neues Theme ausgesucht. Diesmal wird natürlich hoffentlich alles besser. ;-)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/julian32.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/julian32.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/julian32.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/julian32.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/julian32.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/julian32.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/julian32.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/julian32.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/julian32.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/julian32.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/julian32.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/julian32.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/julian32.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/julian32.wordpress.com/192/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=192&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://julian32.wordpress.com/2010/12/12/wiederauferstehung/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/db6f222ee582d9ed96b9ae5220fb89fe?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">Julian</media:title>
		</media:content>
	</item>
		<item>
		<title>Android SDK unter Debian Squeeze</title>
		<link>http://julian32.wordpress.com/2010/08/09/android-sdk-unter-debian-squeeze/</link>
		<comments>http://julian32.wordpress.com/2010/08/09/android-sdk-unter-debian-squeeze/#comments</comments>
		<pubDate>Sun, 08 Aug 2010 22:10:48 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[ADB]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[SDK]]></category>

		<guid isPermaLink="false">http://julian32.wordpress.com/?p=178</guid>
		<description><![CDATA[Wie ihr vielleicht mitbekommen habt, habe ich mir ein Smartphone gekauft, auf dem Android läuft. Und dafür will man dann ja auch vielleicht Software für entwickeln, auch wenn man das in Java tun muss, führt ja kein Weg dran vorbei. Also SDK geladen und gespielt. Wollte ich zumindest, hat aber nicht komplett so funktioniert, wie [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=178&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Wie ihr vielleicht mitbekommen habt, habe ich mir ein Smartphone gekauft, auf dem Android läuft. Und dafür will man dann ja auch vielleicht Software für entwickeln, auch wenn man das in Java tun muss, führt ja kein Weg dran vorbei. Also SDK geladen und gespielt. Wollte ich zumindest, hat aber nicht komplett so funktioniert, wie ich wollte. Hauptproblem war eben das verwenden von USB-Debugging zusammen mit meinem Samsung Galaxy S. Deshalb will ich hier jetzt mal die Schritte erläutern, die es für eine saubere Installation gebraucht hat. Es hat etwa 3 Tage gedauert, bis ich das so zusammengebastelt bekommen habe, da sämtliche Lösungen, die ich im Internet gefunden habe, nicht funktionierten.</p>
<ol>
<li>
<p>Zuerst legen wir eine Gruppe an, in die alle Benutzer kommen, die über den SDK Zugriff auf angeschlossene Android-Geräte bekommen sollen und fügen diese auch gleich hinzu (also in meinem Fall <code>julian</code>). Achtet darauf, dass die GID noch frei ist. Ihr müsst euch dann irgendwann noch neu einloggen, da die neue Gruppe erst dann aktiv ist.</p>
<p>		<code>addgroup --gid 123 androidsdk<br />
adduser julian androidsdk</code>
	</li>
<li>
<p>Dann legen wir direkt die udev-Regel für das Gerät an. Dazu benötigen wir die Vendor- und Product-ID, die in der Ausgabe von <code>lsusb</code> enthalten sind. Diese sieht bei meinem Galaxy S zum Beispiel so aus:</p>
<p>		<code>Bus 003 Device 055: ID 04e8:681c Samsung Electronics Co., Ltd Galaxy Portal/Spica Android Phone</code></p>
<p>Die 4-stellige Hexadezimalzahlen vor und nach dem Doppelpunkt sind für uns interessant. Die erste ist die Vendor-ID und die zweite die Product-ID. Daraus legen wir folgende udev-Regel an und speichern sie in <code>/etc/udev/rules.d/51_android.rules</code> (natürlich müsst ihr für andere Geräte die IDs anpassen):</p>
<p>		<code>BUS=="usb", ATTRS{idVendor}=="04e8", ATTRS{idProduct}=="681c", GROUP="androidsdk", MODE="0660"</code></p>
<p>Dann noch schnell die Regeln neu laden:</p>
<p>		<code>udevadm control --reload-rules</code>
	</li>
<li>
<p>Nun <a href="http://developer.android.com/sdk/index.html">laden wir den SDK herunter</a>, enpacken ihn und setzen die Rechte richtig:</p>
<p>		<code># wget http://dl.google.com/android/android-sdk_r06-linux_86.tgz<br />
# tar xvzf android-sdk_r06-linux_86.tgz<br />
# mv android-sdk-linux_86/ /opt/android-sdk<br />
# chown -R root:androidsdk /opt/android-sdk/<br />
# chmod -R ug+rw /opt/android-sdk/</code>
	</li>
<li>
<p>Als nächstes müsst ihr <code>/opt/android-sdk/tools</code> zu eurem <code>$PATH</code> hinzufügen. Entweder ihr macht das temporär mit</p>
<p>		<code>$ export PATH=$PATH:/opt/android-sdk/tools</code></p>
<p>oder dauerhaft, indem ihr</p>
<p>		<code>PATH=$PATH:/opt/android-sdk/tools</code></p>
<p>zu eurer <code>~/.bashrc</code> hinzufügt und diese neu ladet:</p>
<p>		<code>source ~/.bashrc</code>
	</li>
<li>
<p>Wenn jetzt alles funktioniert, sollte beim Ausführen von <code>adb devices</code> euer Smartphone auftauchen (wenn nicht, habt ihr das gleiche Problem, wie ich: Ihr findet im Internet keine Lösung):</p>
<p>		<code>$ adb devices<br />
List of devices attached<br />
900028b91393	device</code>
	</li>
</ol>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/julian32.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/julian32.wordpress.com/178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/julian32.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/julian32.wordpress.com/178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/julian32.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/julian32.wordpress.com/178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/julian32.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/julian32.wordpress.com/178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/julian32.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/julian32.wordpress.com/178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/julian32.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/julian32.wordpress.com/178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/julian32.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/julian32.wordpress.com/178/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=178&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://julian32.wordpress.com/2010/08/09/android-sdk-unter-debian-squeeze/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/db6f222ee582d9ed96b9ae5220fb89fe?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">Julian</media:title>
		</media:content>
	</item>
		<item>
		<title>Pencil vs. Camera</title>
		<link>http://julian32.wordpress.com/2010/05/31/pencil-vs-camera/</link>
		<comments>http://julian32.wordpress.com/2010/05/31/pencil-vs-camera/#comments</comments>
		<pubDate>Mon, 31 May 2010 20:10:59 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Fotografie]]></category>

		<guid isPermaLink="false">http://julian32.wordpress.com/?p=161</guid>
		<description><![CDATA[Aus dem Flickr-Set Pencil Vs Camera! von Ben Heine. Sehr cool, wie ich finde. (via alexvetter.de)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=161&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/benheine/4543266206/" title="Pencil Vs Camera - 9 by Ben Heine, on Flickr"><img src="http://farm5.static.flickr.com/4037/4543266206_34ff98a35c_z.jpg" width="575" alt="Pencil Vs Camera - 9" /></a></p>
<p><a href="http://www.flickr.com/photos/benheine/4524197834/" title="Pencil Vs Camera - 4 by Ben Heine, on Flickr"><img src="http://farm5.static.flickr.com/4038/4524197834_f9a9ae0924_z.jpg" width="575" alt="Pencil Vs Camera - 4" /></a></p>
<p><a href="http://www.flickr.com/photos/benheine/4536421796/" title="Pencil Vs Camera - 7 by Ben Heine, on Flickr"><img src="http://farm5.static.flickr.com/4056/4536421796_5379fcd0e8_z.jpg" width="575" alt="Pencil Vs Camera - 7" /></a></p>
<p>Aus dem Flickr-Set <a href="http://www.flickr.com/photos/benheine/sets/72157623723956821/">Pencil Vs Camera!</a> von <a href="http://www.benjaminheine.blogspot.com/">Ben Heine</a>. Sehr cool, wie ich finde.</p>
<p>(via <a href="http://alexvetter.de/post/577055288/ben-heines-pencil-vs-camera-series-via">alexvetter.de</a>)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/julian32.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/julian32.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/julian32.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/julian32.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/julian32.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/julian32.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/julian32.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/julian32.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/julian32.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/julian32.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/julian32.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/julian32.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/julian32.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/julian32.wordpress.com/161/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=161&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://julian32.wordpress.com/2010/05/31/pencil-vs-camera/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/db6f222ee582d9ed96b9ae5220fb89fe?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">Julian</media:title>
		</media:content>

		<media:content url="http://farm5.static.flickr.com/4037/4543266206_34ff98a35c_z.jpg" medium="image">
			<media:title type="html">Pencil Vs Camera - 9</media:title>
		</media:content>

		<media:content url="http://farm5.static.flickr.com/4038/4524197834_f9a9ae0924_z.jpg" medium="image">
			<media:title type="html">Pencil Vs Camera - 4</media:title>
		</media:content>

		<media:content url="http://farm5.static.flickr.com/4056/4536421796_5379fcd0e8_z.jpg" medium="image">
			<media:title type="html">Pencil Vs Camera - 7</media:title>
		</media:content>
	</item>
		<item>
		<title>Happy Towel Day!</title>
		<link>http://julian32.wordpress.com/2010/05/25/happy-towel-day/</link>
		<comments>http://julian32.wordpress.com/2010/05/25/happy-towel-day/#comments</comments>
		<pubDate>Mon, 24 May 2010 23:19:38 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
		
		<guid isPermaLink="false">http://julian32.wordpress.com/?p=149</guid>
		<description><![CDATA[(aus den WikiMedia Commons)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=149&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img src="http://dl.dropbox.com/u/92247/julian32.wordpress.com/towelday.jpg" alt="Happy Towel Day" /></p>
<p style="font-size:80%;text-align:right;">(<a href="http://commons.wikimedia.org/wiki/File:Towelday-Innsbruck.jpg">aus den WikiMedia Commons</a>)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/julian32.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/julian32.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/julian32.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/julian32.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/julian32.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/julian32.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/julian32.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/julian32.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/julian32.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/julian32.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/julian32.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/julian32.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/julian32.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/julian32.wordpress.com/149/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=149&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://julian32.wordpress.com/2010/05/25/happy-towel-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/db6f222ee582d9ed96b9ae5220fb89fe?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">Julian</media:title>
		</media:content>

		<media:content url="http://dl.dropbox.com/u/92247/julian32.wordpress.com/towelday.jpg" medium="image">
			<media:title type="html">Happy Towel Day</media:title>
		</media:content>
	</item>
		<item>
		<title>Java-Applets unter Linux</title>
		<link>http://julian32.wordpress.com/2010/04/25/java-applets-unter-linux/</link>
		<comments>http://julian32.wordpress.com/2010/04/25/java-applets-unter-linux/#comments</comments>
		<pubDate>Sun, 25 Apr 2010 11:24:12 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://julian32.wordpress.com/?p=133</guid>
		<description><![CDATA[Ich darf mich mal wieder über Java aufregen. Nach ewigem Rumprobieren und Suchen habe ich jetzt endlich eine Lösung dafür gefunden, dass in meinem Firefox keine Java-Applets mehr starten: Die Kerneloption net.ipv6.bindv6only Wenn die auf 1 gesetzt ist, dann funktioniert das ganze nicht. Lösung: open file /etc/sysctl.d/bindv6only.conf and set net.ipv6.bindv6only=0, then restart the procfs with [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=133&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ich darf mich mal wieder über Java aufregen. Nach ewigem Rumprobieren und Suchen habe ich jetzt endlich eine Lösung dafür gefunden, dass in meinem Firefox keine Java-Applets mehr starten:</p>
<p style="text-align:center;font-size:2em;">Die Kerneloption</p>
<p style="text-align:center;font-size:3em;"><code>net.ipv6.bindv6only</code></p>
<p>Wenn die auf <code>1</code> gesetzt ist, dann funktioniert das ganze nicht.</p>
<p>Lösung:</p>
<blockquote><p>open file /etc/sysctl.d/bindv6only.conf and set net.ipv6.bindv6only=0, then restart the procfs with invoke-rc.d procps restart</p></blockquote>
<p>Quelle: <a href="http://www.linuxquestions.org/questions/debian-26/squeeze-in-case-you-have-no-network-connection-with-java-apps-778366/"> squeeze : in case you have no network connection with java apps &#8230;  (linuxquestions.org)</a></p>
<p><strong>Und jetzt mal ganz ehrlich: DAS DARF DOCH WOHL NICHT WAHR SEIN?!</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/julian32.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/julian32.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/julian32.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/julian32.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/julian32.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/julian32.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/julian32.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/julian32.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/julian32.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/julian32.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/julian32.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/julian32.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/julian32.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/julian32.wordpress.com/133/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=133&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://julian32.wordpress.com/2010/04/25/java-applets-unter-linux/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/db6f222ee582d9ed96b9ae5220fb89fe?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">Julian</media:title>
		</media:content>
	</item>
		<item>
		<title>Stirb Flash, STIRB!!</title>
		<link>http://julian32.wordpress.com/2010/01/31/stirb-flash-stirb/</link>
		<comments>http://julian32.wordpress.com/2010/01/31/stirb-flash-stirb/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 11:08:32 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://julian32.wordpress.com/?p=130</guid>
		<description><![CDATA[Flash ist das neue Comic Sans und bei Adobe prügeln sie sich in den Kommentaren, weil Adobe rumheult, da das iPad kein Flash kann und die Apple-Fanboys Flash scheiße finden. Sieht super für Flash aus, hoffentlich geht es dabei drauf. Dann ist nur noch das Problem mit H264 und OGG bei HTML5-&#60;video&#62;. Ich bin ja [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=130&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://seanmcdonald.ca/post/362088859/flash-is-the-new-comic-sans">Flash ist das neue Comic Sans</a> und bei <a href="http://blogs.adobe.com/flashplatform/2010/01/apples_ipad_--_a_broken_link.html">Adobe prügeln sie sich in den Kommentaren</a>, weil Adobe rumheult, da das iPad kein Flash kann und die Apple-Fanboys Flash scheiße finden. Sieht super für Flash aus, hoffentlich geht es dabei drauf. Dann ist nur noch das Problem mit H264 und OGG bei HTML5-<code>&lt;video&gt;</code>. Ich bin ja für OGG.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/julian32.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/julian32.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/julian32.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/julian32.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/julian32.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/julian32.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/julian32.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/julian32.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/julian32.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/julian32.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/julian32.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/julian32.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/julian32.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/julian32.wordpress.com/130/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=130&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://julian32.wordpress.com/2010/01/31/stirb-flash-stirb/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/db6f222ee582d9ed96b9ae5220fb89fe?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">Julian</media:title>
		</media:content>
	</item>
		<item>
		<title>Jahreswechsel&#8230;</title>
		<link>http://julian32.wordpress.com/2010/01/01/jahreswechsel/</link>
		<comments>http://julian32.wordpress.com/2010/01/01/jahreswechsel/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 23:37:46 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://julian32.wordpress.com/?p=125</guid>
		<description><![CDATA[&#8230;sogar ein Jahrzentwechsel. Und was hat sich geändert? Nichts, außer dass ich jetzt mehrere Wochen das Datum falsch schreiben werde. :D<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=125&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&#8230;sogar ein Jahrzentwechsel. Und was hat sich geändert?</p>
<p>Nichts, außer dass ich jetzt mehrere Wochen das Datum falsch schreiben werde. :D</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/julian32.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/julian32.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/julian32.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/julian32.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/julian32.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/julian32.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/julian32.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/julian32.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/julian32.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/julian32.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/julian32.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/julian32.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/julian32.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/julian32.wordpress.com/125/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=125&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://julian32.wordpress.com/2010/01/01/jahreswechsel/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/db6f222ee582d9ed96b9ae5220fb89fe?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">Julian</media:title>
		</media:content>
	</item>
		<item>
		<title>26th Chaos Communication Congress</title>
		<link>http://julian32.wordpress.com/2009/12/26/26th-chaos-communication-congress/</link>
		<comments>http://julian32.wordpress.com/2009/12/26/26th-chaos-communication-congress/#comments</comments>
		<pubDate>Sat, 26 Dec 2009 13:06:54 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Congress]]></category>

		<guid isPermaLink="false">http://julian32.wordpress.com/?p=114</guid>
		<description><![CDATA[Da morgen der 26C3 beginnt, möchte ich hier mal die etwas lange Liste der Vorträge, die ich per Livestream schauen will, bloggen. Tag 1 (27.12.2009) Here be dragonsSaal 1, 11:30 &#8211; 12:30 (Fahrplan) Der Hackerparagraph beim BundesverfassungsgerichtSaal 2, 12:45 &#8211; 13:45 (Fahrplan) Leyen-RhetorikSaal 1, 14:00 &#8211; 15:00 (Fahrplan) Why Net Neutrality Matters?Saal 1, 16:00 &#8211; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=114&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Da morgen der 26C3 beginnt, möchte ich hier mal die etwas lange Liste der Vorträge, die ich per Livestream schauen will, bloggen.</p>
<h4>Tag 1 (27.12.2009)</h4>
<ul>
<li><strong>Here be dragons</strong><br />Saal 1, 11:30 &#8211; 12:30 (<a href="http://events.ccc.de/congress/2009/Fahrplan/events/3700.en.html">Fahrplan</a>)</li>
<li><strong>Der Hackerparagraph beim Bundesverfassungsgericht</strong><br />Saal 2, 12:45 &#8211; 13:45 (<a href="http://events.ccc.de/congress/2009/Fahrplan/events/3674.en.html">Fahrplan</a>)</li>
<li><strong>Leyen-Rhetorik</strong><br />Saal 1, 14:00 &#8211; 15:00 (<a href="http://events.ccc.de/congress/2009/Fahrplan/events/3481.en.html">Fahrplan</a>)</li>
<li><strong>Why Net Neutrality Matters?</strong><br />Saal 1, 16:00 &#8211; 17:00 (<a href="http://events.ccc.de/congress/2009/Fahrplan/events/3501.en.html">Fahrplan</a>)</li>
<li><strong>Internetsperren</strong><br />Saal 2, 17:15 &#8211; 18:15 (<a href="http://events.ccc.de/congress/2009/Fahrplan/events/3594.en.html">Fahrplan</a>)</li>
<li><strong>Das Zugangserschwerungsgesetz</strong><br />Saal 3, 18:30 &#8211; 19:30 (<a href="http://events.ccc.de/congress/2009/Fahrplan/events/3495.en.html">Fahrplan</a>)</li>
<li><strong>Wireless power transfer</strong><br />Saal 3, 22:45 &#8211; 22:45 (<a href="http://events.ccc.de/congress/2009/Fahrplan/events/3696.en.html">Fahrplan</a>)</li>
<li><strong>cat /proc/sys/net/ipv4/fuckups</strong><br />Saal 1, 23:00 &#8211; 0:00 (<a href="http://events.ccc.de/congress/2009/Fahrplan/events/3596.en.html">Fahrplan</a>)</li>
<li><strong>CFD &#8211; Hacker Gaming Show</strong><br />Saal 1, 00:00 &#8211; 2:00 (<a href="http://events.ccc.de/congress/2009/Fahrplan/events/3550.en.html">Fahrplan</a>)</li>
</ul>
<h4>Tag 2 (28.12.2009)</h4>
<ul>
<li><strong>Eine Zensur findet nicht statt</strong><br />Saal 1, 11:30 &#8211; 12:30 (<a href="http://events.ccc.de/congress/2009/Fahrplan/events/3523.en.html">Fahrplan</a>)</li>
<li><strong>Die neokonservativen Thinktanks in der BRD</strong><br />Saal 2, 12:45 &#8211; 13:45 (<a href="http://events.ccc.de/congress/2009/Fahrplan/events/3622.en.html">Fahrplan</a>)</li>
<li><strong>Vier Fäuste für ein Halleluja</strong><br />Saal 1,  17:15 &#8211; 18:15 (<a href="http://events.ccc.de/congress/2009/Fahrplan/events/3691.en.html">Fahrplan</a>)</li>
<li><strong>Die Schlacht um die Vorratsdatenspeicherung</strong><br />Saal 1, 18:30 &#8211; 19:30 (<a href="http://events.ccc.de/congress/2009/Fahrplan/events/3708.en.html">Fahrplan</a>)</li>
<li><strong>Liquid Democracy</strong><br />Saal 2, 20:30 &#8211; 21:30 (<a href="http://events.ccc.de/congress/2009/Fahrplan/events/3464.en.html">Fahrplan</a>)</li>
<li><strong>&#8222;Haste ma&#8217;n netblock?&#8220;</strong><br />Saal 3, 21:45 &#8211; 22:45 (<a href="http://events.ccc.de/congress/2009/Fahrplan/events/3688.en.html">Fahrplan</a>)</li>
<li><strong>Hacker Jeopardy</strong><br />Saal 1, 0:00 &#8211; 2:00 (<a href="http://events.ccc.de/congress/2009/Fahrplan/events/3669.en.html">Fahrplan</a>)</li>
</ul>
<h4>Tag 3 (29.12.2009)</h4>
<ul>
<li><strong>CCC-Jahresrückblick</strong><br />Saal 1, 11:30 &#8211; 13:45 (<a href="http://events.ccc.de/congress/2009/Fahrplan/events/3690.en.html">Fahrplan</a>)</li>
<li><strong>Optimised to fail</strong><br />Saal 2, 17:15 &#8211; 18:15 (<a href="http://events.ccc.de/congress/2009/Fahrplan/events/3657.en.html">Fahrplan</a>)</li>
<li><strong>Technik des neuen ePA</strong><br />Saal 2, 20:30 &#8211; 21:30 (<a href="http://events.ccc.de/congress/2009/Fahrplan/events/3510.en.html">Fahrplan</a>)</li>
<li><strong>Fnord-Jahresrückblick 2009</strong><br />Saal 1, 21:45 &#8211; 22:45 (<a href="http://events.ccc.de/congress/2009/Fahrplan/events/3613.en.html">Fahrplan</a>)</li>
<li><strong>Nougatbytes &#8211; Ein Wortspiel, bunt und in stereo</strong><br />Saal 1, 0:00 &#8211; 1:30 (<a href="http://events.ccc.de/congress/2009/Fahrplan/events/3671.en.html">Fahrplan</a>)</li>
</ul>
<h4>Tag 4 (30.12.2009)</h4>
<ul>
<li><strong>Wikipedia &#8211; Wegen Irrelevanz gelöscht</strong><br />Saal 1, 11:30 &#8211; 13:45 (<a href="http://events.ccc.de/congress/2009/Fahrplan/events/3699.en.html">Fahrplan</a>)</li>
<li><strong>Security Nightmares</strong><br />Saal 1, 17:15 &#8211; 18:15 (<a href="http://events.ccc.de/congress/2009/Fahrplan/events/3687.en.html">Fahrplan</a>)</li>
</ul>
<p>Dazu kommen dann noch weitere Vorträge, die zur gleichen Zeit wie andere stattfinden und von denen ich dann die Recordings schauen werde. ;)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/julian32.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/julian32.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/julian32.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/julian32.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/julian32.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/julian32.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/julian32.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/julian32.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/julian32.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/julian32.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/julian32.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/julian32.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/julian32.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/julian32.wordpress.com/114/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=114&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://julian32.wordpress.com/2009/12/26/26th-chaos-communication-congress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/db6f222ee582d9ed96b9ae5220fb89fe?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">Julian</media:title>
		</media:content>
	</item>
		<item>
		<title>Python FAIL</title>
		<link>http://julian32.wordpress.com/2009/10/08/python-fail/</link>
		<comments>http://julian32.wordpress.com/2009/10/08/python-fail/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 16:35:55 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://julian32.wordpress.com/?p=107</guid>
		<description><![CDATA[[Update] Mein Fehler&#8230; Das ist ja mal sehr interessant. Python ist also nicht wirklich für Mathe-Hausaufgaben zu empfehlen, sofern man nicht Decimal benutzt.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=107&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>[Update]</strong> <a href="#comment-19">Mein Fehler&#8230;</a></p>
<pre class="brush: python;">
&gt;&gt;&gt; from math import pi
&gt;&gt;&gt; from decimal import *
&gt;&gt;&gt; (Decimal('4')/Decimal('3')) * Decimal('4')**3 * Decimal(str(pi)) * 1800
Decimal(&quot;482548.6315914239999999999999&quot;)
&gt;&gt;&gt; 4**3 * pi * 1800 * 4/3
482548.63159139222
&gt;&gt;&gt; 4/3 * 4**3 * pi * 1800
361911.47369354416
</pre>
<p>Das ist ja mal sehr interessant. Python ist also nicht wirklich für Mathe-Hausaufgaben zu empfehlen, sofern man nicht <code>Decimal</code> benutzt.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/julian32.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/julian32.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/julian32.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/julian32.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/julian32.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/julian32.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/julian32.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/julian32.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/julian32.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/julian32.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/julian32.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/julian32.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/julian32.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/julian32.wordpress.com/107/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=107&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://julian32.wordpress.com/2009/10/08/python-fail/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/db6f222ee582d9ed96b9ae5220fb89fe?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">Julian</media:title>
		</media:content>
	</item>
		<item>
		<title>Schleifen und Leerzeichen in der Bash</title>
		<link>http://julian32.wordpress.com/2009/09/12/schleifen-und-leerzeichen-in-der-bash/</link>
		<comments>http://julian32.wordpress.com/2009/09/12/schleifen-und-leerzeichen-in-der-bash/#comments</comments>
		<pubDate>Sat, 12 Sep 2009 06:40:17 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Shell]]></category>

		<guid isPermaLink="false">http://julian32.wordpress.com/?p=100</guid>
		<description><![CDATA[Eigentlich gehören Leerzeichen nicht unbedingt in Dateinamen, jedoch gibt es sie leider viel zu oft. Also gehen wir einmal von dem folgenden Verzeichnis aus: $ ls -Q1 "hello-world" "i love spaces" Und jetzt versuchen wir es, einmal mit for durch die Dateinamen zu gehen. Doch leider gibt das ein kleines Problem, da for ein Leerzeichen [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=100&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Eigentlich gehören Leerzeichen nicht unbedingt in Dateinamen, jedoch gibt es sie leider viel zu oft. Also gehen wir einmal von dem folgenden Verzeichnis aus:</p>
<pre>$ ls -Q1
"hello-world"
"i love spaces"</pre>
<p>Und jetzt versuchen wir es, einmal mit <code>for</code> durch die Dateinamen zu gehen. Doch leider gibt das ein kleines Problem, da <code>for</code> ein Leerzeichen als Trenner sieht.</p>
<pre>$ for i in `ls`; do echo $i; done
hello-world
i
love
spaces</pre>
<p>Das Problem lässt sich jedoch mit einem einfachen Trick recht leicht lösen. Man nimmt <code>ls</code> und statt einer <code>for</code>- eine <code>while</code>-Schleife als Pipe:</p>
<pre>$ ls | while read i; do echo $i; done
hello-world
i love spaces</pre>
<p>Zu beachten ist jedoch, dass man den Dateinamen dann auch mit Leerzeichen in der Variable <code>$i</code> hat, weshalb man sie am besten in Anführungszeichen setzt:</p>
<pre>ls | while read i; do cp \"$i\" `echo $i | tr " " "_"`; done</pre>
<p>Mit diesen Befehlt wären dann auch gleich die Leerzeichen weg und man bräuchte diesen Beitrag nicht mehr :]</p>
<p style="font-size:80%;color:transparent;">Ich bin leicht müde. Wer Rechtschreibfehler oder Sinnlosigkeit findet, darf sie behalten.</p>
<p>[<strong>Update</strong>] <code>ls</code> ist ein schlechtes Beispiel, denn da gibt es eine viel einfachere Alternative: <code>for i in *; do ...</code>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/julian32.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/julian32.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/julian32.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/julian32.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/julian32.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/julian32.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/julian32.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/julian32.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/julian32.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/julian32.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/julian32.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/julian32.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/julian32.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/julian32.wordpress.com/100/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=100&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://julian32.wordpress.com/2009/09/12/schleifen-und-leerzeichen-in-der-bash/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/db6f222ee582d9ed96b9ae5220fb89fe?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">Julian</media:title>
		</media:content>
	</item>
		<item>
		<title>Wahlwerbung der CDU</title>
		<link>http://julian32.wordpress.com/2009/09/10/wahlwerbung-der-cdu/</link>
		<comments>http://julian32.wordpress.com/2009/09/10/wahlwerbung-der-cdu/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 19:20:42 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Politik]]></category>

		<guid isPermaLink="false">http://julian32.wordpress.com/?p=97</guid>
		<description><![CDATA[Die CDU stellt ein Wahlplakat auf, erwischt (wie auch immer, mir unerklärlich) eine Hauptleitung der Telekom und alle Telekom-Kunden in einem Ort mit etwa 6500 Einwohnern haben weder Telefon noch DSL. Und die Telekom will die Leitung nicht reparieren, da sie das Plakat nicht entfernen dürfe. (via fefe und netzpolitik)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=97&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Die CDU stellt ein Wahlplakat auf, erwischt (wie auch immer, mir unerklärlich) eine Hauptleitung der Telekom und alle Telekom-Kunden in einem Ort mit etwa 6500 Einwohnern haben weder Telefon noch DSL. Und die Telekom will die Leitung nicht reparieren, da sie das Plakat nicht entfernen dürfe.</p>
<p>(via <a href="http://blog.fefe.de/?ts=b457ebb8">fefe</a> und <a href="http://netzpolitik.org/2009/cdu-wahlkampf-vergroessert-die-digitale-spaltung/">netzpolitik</a>)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/julian32.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/julian32.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/julian32.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/julian32.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/julian32.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/julian32.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/julian32.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/julian32.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/julian32.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/julian32.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/julian32.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/julian32.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/julian32.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/julian32.wordpress.com/97/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=97&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://julian32.wordpress.com/2009/09/10/wahlwerbung-der-cdu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/db6f222ee582d9ed96b9ae5220fb89fe?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">Julian</media:title>
		</media:content>
	</item>
		<item>
		<title>Screenshots unter Linux</title>
		<link>http://julian32.wordpress.com/2009/09/07/screenshots-unter-linux/</link>
		<comments>http://julian32.wordpress.com/2009/09/07/screenshots-unter-linux/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 13:30:33 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://julian32.wordpress.com/?p=89</guid>
		<description><![CDATA[Screenshots unter Linux, ja, was ist denn daran das Problem? Eigentlich nichts. Es gibt verschiedene Tools dafür. Ich will hier jedoch beschreiben, wie man das ganze etwas erweitern kann: Nämlich darauf, dass die Dateien automatisch auf Dropbox geladen werden und der Link dazu in die Zwischenablage kopiert wird. Dies ist sehr praktisch, wenn man mal [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=89&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Screenshots unter Linux, ja, was ist denn daran das Problem? Eigentlich nichts. Es gibt verschiedene Tools dafür. Ich will hier jedoch beschreiben, wie man das ganze etwas erweitern kann: Nämlich darauf, dass die Dateien automatisch auf <a href="http://www.getdropbox.com/">Dropbox</a> geladen werden und der Link dazu in die Zwischenablage kopiert wird. Dies ist sehr praktisch, wenn man mal nur kurz einen Screenshot erstellen will, um jemandem etwas zu zeigen.</p>
<p>Benötigt werden dazu der Dropbox-Client une einige Pakete, die sich unter Debian mit dem folgenden Befehl installieren lassen:</p>
<pre>aptitude install scrot xsel pwgen</pre>
<p>Danach speichert man dieses Script in einem Verzeichnis, dass sich in <code>$PATH</code> befindet als zum Beispiel <code>make-screenshot</code> und macht diese Datei ausführbar.</p>
<pre class="brush: bash;">
#!/bin/sh

ARG=$1
DROPBOX_PATH=~/Dropbox
DROPBOX_CMD=/usr/bin/dropbox
SCROT_CMD=/usr/bin/scrot
XSEL_CMD=/usr/bin/xsel
TR_CMD=/usr/bin/tr
RAND=`pwgen -s -A 16 1`

if [ -z $ARG ]; then
        ARG=&quot;-a&quot;
fi

if [ &quot;$ARG&quot; = &quot;-h&quot; ]; then
        echo &quot;-----  Help  -----&quot;
        echo &quot;Usage: $0 [-a|-s]&quot;
fi

SCREENSHOT_FILENAME=$DROPBOX_PATH/Public/screenshots/`date +%Y-%m-%d-%H-%M-%S`_$RAND.png
SCROT_ARGS=&quot;&quot;

if [ &quot;$ARG&quot; = &quot;-s&quot; ]; then
        SCROT_ARGS=&quot;-s&quot;
fi

$SCROT_CMD $SCROT_ARGS $SCREENSHOT_FILENAME
$DROPBOX_CMD puburl $SCREENSHOT_FILENAME | $TR_CMD -d '\n' | $XSEL_CMD -i
</pre>
<p>Damit das ganze Funktioniert, muss in der Dropbox noch ein Verzeichnis angelegt werden:</p>
<pre>mkdir ~/Dropbox/Public/screenshots</pre>
<p>Wenn man jetzt <code>make-screenshot -a</code> ausführt, wird ein Screenshot des gesamten Desktops erstellt, bei <code>make-screenshot -s</code> kann men einen Bereich oder ein Fenster mit der Maus auswählen.</p>
<p>Die URL lässt sich dann mit der Mitteltaste einfügen.</p>
<p>Unter Fluxbox hat man die Möglichkeit, die beiden Befehle an bestimmte Tastenkombinationen zu binden. Dazu fügt man zum Beispiel folgendes in die Datei <code>~/.fluxbox/keys</code> ein:</p>
<pre># Screenshots
## Strg + Druck =&gt; Ganzer Bildschirm
Control 111 :Exec make-screenshot -a
## Strg + Alt + Druck =&gt; Auswahl
Control Mod1 111 :Exec make-screenshot -s</pre>
<p>Danach Fluxbox neu starten und die Tastenkombinationen können verwendet werden. Natürlich kann man auch Control weglassen, doch darauf habe ich Bereits Befehle gebunden, um Screenshots zu erstellen, ohne diese hochzuladen.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/julian32.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/julian32.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/julian32.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/julian32.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/julian32.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/julian32.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/julian32.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/julian32.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/julian32.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/julian32.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/julian32.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/julian32.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/julian32.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/julian32.wordpress.com/89/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=89&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://julian32.wordpress.com/2009/09/07/screenshots-unter-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/db6f222ee582d9ed96b9ae5220fb89fe?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">Julian</media:title>
		</media:content>
	</item>
		<item>
		<title>ExpressCard-hotplugging unter Linux</title>
		<link>http://julian32.wordpress.com/2009/09/04/expresscard-hotplugging-unter-linux/</link>
		<comments>http://julian32.wordpress.com/2009/09/04/expresscard-hotplugging-unter-linux/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 14:20:33 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://julian32.wordpress.com/?p=86</guid>
		<description><![CDATA[ExpressCards unterstützen Hotplugging. Zumindest theoretisch. Es auch praktisch unter Linux funktionieren zu lassen, ist ganz einfach. Es muss nur das Modul pciehp mit den entsprechenden Optionen geladen werden. # Modul laden modprobe pciehp pciehp_force=1 # Modul immer beim Booten laden echo pciehp pciehp_force=1 &#62;&#62; /etc/modules Warnung: Das ganze funktioniert so nicht unter Ubuntu 9.04 Jaunty, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=86&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>ExpressCards unterstützen Hotplugging. Zumindest theoretisch. Es auch praktisch unter Linux funktionieren zu lassen, ist ganz einfach. Es muss nur das Modul <code>pciehp</code> mit den entsprechenden Optionen geladen werden.</p>
<pre># Modul laden
modprobe pciehp pciehp_force=1
# Modul immer beim Booten laden
echo pciehp pciehp_force=1 &gt;&gt; /etc/modules</pre>
<p>Warnung: Das ganze funktioniert so nicht unter Ubuntu 9.04 Jaunty, weil, aus welchen (mir unverständlichen) Gründen auch immer, pciehp nicht mehr als Modul vorhanden ist, sondern fest in dem Kernel kompiliert, jedoch nicht aktiviert, ist. Hier muss man folgendes zu den Boot-Parametern hinzufügen und rebooten:</p>
<pre>pciehp.pciehp_force=1</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/julian32.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/julian32.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/julian32.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/julian32.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/julian32.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/julian32.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/julian32.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/julian32.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/julian32.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/julian32.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/julian32.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/julian32.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/julian32.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/julian32.wordpress.com/86/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=julian32.wordpress.com&amp;blog=9131465&amp;post=86&amp;subd=julian32&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://julian32.wordpress.com/2009/09/04/expresscard-hotplugging-unter-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/db6f222ee582d9ed96b9ae5220fb89fe?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">Julian</media:title>
		</media:content>
	</item>
	</channel>
</rss>
