<?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>my knowledge rack</title>
	<atom:link href="http://ww2624.awi2.de/blog2/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://ww2624.awi2.de/blog2</link>
	<description>Probleme aus Studium und Alltag</description>
	<lastBuildDate>Sat, 17 Jul 2010 13:04:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>LaTeX Makefile &#8211; Temporäre Dateien automatisch verschieben</title>
		<link>http://ww2624.awi2.de/blog2/?p=141</link>
		<comments>http://ww2624.awi2.de/blog2/?p=141#comments</comments>
		<pubDate>Sat, 17 Jul 2010 13:04:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Latex]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://ww2624.awi2.de/blog2/?p=141</guid>
		<description><![CDATA[Hallo Zusammen, es war jetzt endlich an der Zeit ein Makefile zu schreiben, das es erlaubt, die von pdflatex erstellen Dateien automatisch zu verschieben. Zu diesen temporären Dateien gehören beispielsweise .aux oder .out. Zudem wird die ausgegebene PDF-Datei in ein Ausgabe-Verzeichnis verschoben. Mit Hilfe des Parameters &#8220;-output-directory&#8221; des Kommandozeilenbefehls pdflatex ist das so nicht möglich. [...]]]></description>
			<content:encoded><![CDATA[<p>Hallo Zusammen,<br />
es war jetzt endlich an der Zeit ein Makefile zu schreiben, das es erlaubt, die von <code>pdflatex</code> erstellen Dateien automatisch zu verschieben. Zu diesen temporären Dateien gehören beispielsweise <code>.aux</code> oder<code> .out</code>. Zudem wird die ausgegebene PDF-Datei in ein Ausgabe-Verzeichnis verschoben. Mit Hilfe des Parameters &#8220;-output-directory&#8221; des Kommandozeilenbefehls pdflatex ist das so nicht möglich. Hiermit kann lediglich der Pfad für alle temporären Dateien gesetzt werden.</p>

<div class="wp_syntax"><div class="code"><pre class="make" style="font-family:monospace;">FILE<span style="color: #004400;">=</span>interimReport
DEPS<span style="color: #004400;">=*.</span>tex
TMP_FILETYPES<span style="color: #004400;">=</span>bbl blg log aux out toc lof lot idx acr alg acn glg glo ind idx lol gls ilg
FILE_DEPS<span style="color: #004400;">=$</span><span style="color: #004400;">&#40;</span><span style="color: #000088;">FILE</span><span style="color: #004400;">&#41;</span><span style="color: #004400;">.</span>tex <span style="color: #004400;">$</span><span style="color: #004400;">&#40;</span><span style="color: #000088;">DEPS</span><span style="color: #004400;">&#41;</span>
&nbsp;
all<span style="color: #004400;">:</span> <span style="color: #004400;">$</span><span style="color: #004400;">&#40;</span><span style="color: #000088;">FILE</span><span style="color: #004400;">&#41;</span><span style="color: #004400;">.</span>pdf moveOutput cleanup
&nbsp;
<span style="color: #004400;">$</span><span style="color: #004400;">&#40;</span><span style="color: #000088;">FILE</span><span style="color: #004400;">&#41;</span><span style="color: #004400;">.</span>pdf<span style="color: #004400;">:</span> <span style="color: #004400;">$</span><span style="color: #004400;">&#40;</span><span style="color: #000088;">FILE_DEPS</span><span style="color: #004400;">&#41;</span>
        pdflatex <span style="color: #004400;">$</span><span style="color: #004400;">&#40;</span><span style="color: #000088;">FILE</span><span style="color: #004400;">&#41;</span>
        bibtex <span style="color: #004400;">$</span><span style="color: #004400;">&#40;</span><span style="color: #000088;">FILE</span><span style="color: #004400;">&#41;</span>
        pdflatex <span style="color: #004400;">$</span><span style="color: #004400;">&#40;</span><span style="color: #000088;">FILE</span><span style="color: #004400;">&#41;</span>
        pdflatex <span style="color: #004400;">$</span><span style="color: #004400;">&#40;</span><span style="color: #000088;">FILE</span><span style="color: #004400;">&#41;</span>
&nbsp;
cleanup<span style="color: #004400;">:</span>
        if test <span style="color: #004400;">-</span>d tmp<span style="color: #004400;">;</span> then true<span style="color: #004400;">;</span> <span style="color: #666622; font-weight: bold;">else</span> mkdir tmp<span style="color: #004400;">;</span> fi
        if test <span style="color: #004400;">-</span>e <span style="color: #004400;">$</span><span style="color: #004400;">&#40;</span><span style="color: #000088;">FILE</span><span style="color: #004400;">&#41;</span><span style="color: #004400;">-</span>blx<span style="color: #004400;">.</span>bib<span style="color: #004400;">;</span> then mv <span style="color: #004400;">-</span>t <span style="color: #004400;">./</span>tmp <span style="color: #004400;">$</span><span style="color: #004400;">&#40;</span><span style="color: #000088;">FILE</span><span style="color: #004400;">&#41;</span><span style="color: #004400;">-</span>blx<span style="color: #004400;">.</span>bib<span style="color: #004400;">;</span> fi
        for type in <span style="color: #004400;">$</span><span style="color: #004400;">&#40;</span><span style="color: #000088;">TMP_FILETYPES</span><span style="color: #004400;">&#41;</span><span style="color: #004400;">;</span> do for file in <span style="color: #000088; font-weight: bold;">$$</span><span style="color: #004400;">&#40;</span>find <span style="color: #004400;">.</span> <span style="color: #004400;">-</span>maxdepth <span style="color: #CC2200;">1</span> <span style="color: #004400;">-</span>name <span style="color: #CC2200;">&quot;*.$$type&quot;</span><span style="color: #004400;">&#41;</span><span style="color: #004400;">;</span> do mv <span style="color: #000088; font-weight: bold;">$$</span>file tmp<span style="color: #004400;">;</span> done<span style="color: #004400;">;</span> done
&nbsp;
moveOutput<span style="color: #004400;">:</span>
        if test <span style="color: #004400;">-</span>d out<span style="color: #004400;">;</span> then true<span style="color: #004400;">;</span> <span style="color: #666622; font-weight: bold;">else</span> mkdir out<span style="color: #004400;">;</span> fi
        if test <span style="color: #004400;">-</span>e <span style="color: #004400;">$</span><span style="color: #004400;">&#40;</span><span style="color: #000088;">FILE</span><span style="color: #004400;">&#41;</span><span style="color: #004400;">.</span>pdf<span style="color: #004400;">;</span> then mv <span style="color: #004400;">$</span><span style="color: #004400;">&#40;</span><span style="color: #000088;">FILE</span><span style="color: #004400;">&#41;</span><span style="color: #004400;">.</span>pdf out<span style="color: #004400;">;</span> fi</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://ww2624.awi2.de/blog2/?feed=rss2&amp;p=141</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Redmine facts</title>
		<link>http://ww2624.awi2.de/blog2/?p=133</link>
		<comments>http://ww2624.awi2.de/blog2/?p=133#comments</comments>
		<pubDate>Sat, 12 Jun 2010 22:07:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Allgemeines]]></category>
		<category><![CDATA[bugtracking]]></category>
		<category><![CDATA[redmine]]></category>

		<guid isPermaLink="false">http://ww2624.awi2.de/blog2/?p=133</guid>
		<description><![CDATA[Redmine Facts (Stand 01.06.2010) Kerndaten: Offizielle Website ist http://redmine.org Gebschrieben in Ruby unter Verwendung des „on rails framework“ Datenbank-Backend PostgreSQL, Oracle, SQL Server, SQLite. Veröffentlicht unter GNU General Public License v2 Ursprünglich französisches Projekt Projektmitglieder Administrator Jean-Philippe Lang 17 Mitprogrammierer (6 aktive mit mehr als 25 Tickets) Aktivität des Projekts Erstes Release war am v0.1.0 [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-size: large;"><strong>Redmine Facts (Stand 01.06.2010)<br />
</strong></span></p>
<p><span style="text-decoration: underline;"><strong>Kerndaten</strong></span>:</p>
<ul>
<li>Offizielle Website ist <a href="http://redmine.org">http://redmine.org</a></li>
<li>Gebschrieben in Ruby  unter 	Verwendung des „on rails framework“</li>
<li>Datenbank-Backend PostgreSQL, 	Oracle, SQL Server, SQLite.</li>
<li>Veröffentlicht unter GNU General 	Public License v2</li>
<li>Ursprünglich französisches 	Projekt</li>
<li>Projektmitglieder
<ul>
<li>Administrator Jean-Philippe Lang</li>
<li>17 Mitprogrammierer (6 aktive mit 		mehr als 25 Tickets)</li>
</ul>
</li>
<li>Aktivität des Projekts
<ul>
<li>Erstes Release war am v0.1.0 		(2006-06-25)</li>
<li>
<p lang="en-GB">Releases: 2006-4; 		2007-9; 2008-9; 2009-8; 2010-4;</p>
</li>
<li>Letztes Release v0.9.4 		(2010-05-01)</li>
</ul>
</li>
<li>Zur Redmine Entwicklung der 	Software:
<ul>
<li>Defect: 435 offen / 2121</li>
<li>Feature: 1425 offen / 2282</li>
<li>Patch: 275 offen / 962</li>
</ul>
</li>
</ul>
<p><span style="text-decoration: underline;"><strong>Kernfunktionalität:</strong></span></p>
<ul>
<li>Mehrere Projekte, pro Projekt sind folgende Funktionen unterstützt:
<ul>
<li>Issue Tracking, Feature Tracking</li>
<li>Wiki und Forum</li>
<li>Files, Dokumente</li>
<li>Rollen basierte Berechtigung</li>
<li>
<p lang="en-GB">Gantt chart and 		Kalendar</p>
</li>
<li>
<p lang="en-GB">Time tracking 		functionality</p>
</li>
</ul>
</li>
</ul>
<p lang="en-GB"><span style="text-decoration: underline;"><strong>Support:</strong></span></p>
<ul>
<li>Forum: 	http://www.redmine.org/projects/redmine/boards</li>
<li>Supportforum 	ca. 14.000 Beiträge</li>
<li>
<p lang="en-GB">IRC Support Chat 	#redmine on freenode IRC network</p>
</li>
</ul>
<p lang="en-GB">
<p lang="en-GB">
<p><span style="text-decoration: underline;"><strong>Plugin-Entwicklung:</strong></span></p>
<ul>
<li>Tutorial: 	http://www.redmine.org/wiki/redmine/Plugin_Tutorial</li>
<li>Eigene Datenmodelle</li>
<li>Kontrolllogik für Plugin</li>
<li>Templates</li>
<li>Menüeinträge</li>
<li>Übersetzungen</li>
</ul>
<p lang="en-GB"><span style="text-decoration: underline;"><strong>Third Party Tools:</strong></span></p>
<ul>
<li>http://www.redmine.org/wiki/redmine/ThirdPartyTools</li>
<li>iPhone/Android App, Firefox 	Toolbar und einige andere</li>
<p>Für weiterführende Informationen ist folgende Präsentation (Linux Tag 2009) ebenfalls interessant:
</ul>
<p><a href='http://ww2624.awi2.de/blog2/wp-content/uploads/2010/06/LinuxTagBerlin2009Redmine.pdf'>LinuxTagBerlin2009Redmine</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ww2624.awi2.de/blog2/?feed=rss2&amp;p=133</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LaTeX Quellcode eines Assignment als Vorlage</title>
		<link>http://ww2624.awi2.de/blog2/?p=125</link>
		<comments>http://ww2624.awi2.de/blog2/?p=125#comments</comments>
		<pubDate>Sun, 24 Jan 2010 22:06:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Latex]]></category>
		<category><![CDATA[Master Studium]]></category>
		<category><![CDATA[vorlage]]></category>

		<guid isPermaLink="false">http://ww2624.awi2.de/blog/?p=125</guid>
		<description><![CDATA[Hallo Leute, ein alter Bekannter hat heute nach dem LaTeX Quellcode eines Assignments zur Verwendung als Vorlage gefragt. Da es vielleicht noch mehr Leute gibt, die sich dafür interessieren, stelle ich hier den Quellcode meines zweiten Assignments zur freien Verfügung: LaTeX Quellcode Der Quellcode wurde unter Linux erstellt, daher auf die Zeilenumbrüche achtgeben Viel Spass [...]]]></description>
			<content:encoded><![CDATA[<p>Hallo Leute,<br />
ein alter Bekannter hat heute nach dem LaTeX Quellcode eines Assignments zur Verwendung als Vorlage gefragt. Da es vielleicht noch mehr Leute gibt, die sich dafür interessieren, stelle ich hier den Quellcode meines zweiten Assignments zur freien Verfügung:<br />
<a href="wp-content/assignment2_quellcode.zip">LaTeX Quellcode</a><br />
Der Quellcode wurde unter Linux erstellt, daher auf die Zeilenumbrüche achtgeben <img src='http://ww2624.awi2.de/blog2/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Viel Spass damit!</p>
<p>p.s.: In ca. 5 Wochen gibt es dann noch eine weitere [perfekte <img src='http://ww2624.awi2.de/blog2/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> ]  Vorlage, die ich im Rahmen eines Ferienkurses mit einem Kollegen zusammen entwickle.</p>
]]></content:encoded>
			<wfw:commentRss>http://ww2624.awi2.de/blog2/?feed=rss2&amp;p=125</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Assignment 3 &#8211; Network protocol analysis</title>
		<link>http://ww2624.awi2.de/blog2/?p=116</link>
		<comments>http://ww2624.awi2.de/blog2/?p=116#comments</comments>
		<pubDate>Sun, 24 Jan 2010 21:31:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Master Studium]]></category>
		<category><![CDATA[icmp]]></category>
		<category><![CDATA[ipv6]]></category>
		<category><![CDATA[tcp]]></category>
		<category><![CDATA[wireshark]]></category>

		<guid isPermaLink="false">http://ww2624.awi2.de/blog/?p=116</guid>
		<description><![CDATA[Hello to everybody, here is my work that I have done over the christmas holidays. This time it is probably uninteresting for the most people, because the assignment is in some parts specific to our university. But there are many things included about IP version 4 and version 6 which are readable, so enjoy it [...]]]></description>
			<content:encoded><![CDATA[<p>Hello to everybody,<br />
here is my work that I have done over the christmas holidays. This time it is probably uninteresting for the most people, because the assignment is in some parts specific to our university. But there are many things included about IP version 4 and version 6 which are readable, so enjoy it <img src='http://ww2624.awi2.de/blog2/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Assignment 3.1:<br />
<a href="wp-content/assignment3.1.pdf">Analysis of current network protocols IPv4, ICMPv4, ARP, CSMA/CD using software monitor Ethereal/Wireshark</a></p>
<p>Assignment 3.2:<br />
<a href="wp-content/assignment3.2.pdf">Analysis of transport layer protocols TCP and UDP using software monitor Wireshark</a></p>
<p>Assignment 3.3:<br />
<a href="wp-content/assignment3.3.pdf">Analysis of new internet protocols IPv6 and ICMPv6 using software monitor Wireshark</a></p>
<p>Greetings Micha Koller</p>
]]></content:encoded>
			<wfw:commentRss>http://ww2624.awi2.de/blog2/?feed=rss2&amp;p=116</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UbuntuOne kann keine Verbindung herstellen</title>
		<link>http://ww2624.awi2.de/blog2/?p=111</link>
		<comments>http://ww2624.awi2.de/blog2/?p=111#comments</comments>
		<pubDate>Tue, 05 Jan 2010 22:12:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[ubuntuone]]></category>

		<guid isPermaLink="false">http://ww2624.awi2.de/blog/?p=111</guid>
		<description><![CDATA[An meinem Notebook gehe ich mal über WLAN mit verschiedenen systemweiten Proxys ins Internet und mal ohne Proxy Server (je nach Lokalität). Jedoch kam dabei der UbuntuOne Dienst so sehr durcheinander, dass generell keine Verbindung mehr möglich war. Zur kompletten Neuinstallation hat mir folgenden Anleitung geholfen (von forum.ubuntuusers.de): CLIENT ENTFERNEN 1. Ubuntu One Client schließen [...]]]></description>
			<content:encoded><![CDATA[<p>An meinem Notebook gehe ich mal über WLAN mit verschiedenen systemweiten Proxys ins Internet und mal ohne Proxy Server (je nach Lokalität). Jedoch kam dabei der UbuntuOne Dienst so sehr durcheinander, dass generell keine Verbindung mehr möglich war. Zur kompletten Neuinstallation hat mir folgenden Anleitung geholfen (von forum.ubuntuusers.de):</p>
<p><strong>CLIENT ENTFERNEN</strong></p>
<p>1. Ubuntu One Client schließen<br />
2.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-rf</span> ~<span style="color: #000000; font-weight: bold;">/</span>.local<span style="color: #000000; font-weight: bold;">/</span>share<span style="color: #000000; font-weight: bold;">/</span>ubuntuone
<span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-rf</span> ~<span style="color: #000000; font-weight: bold;">/</span>.cache<span style="color: #000000; font-weight: bold;">/</span>ubuntuone
<span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-rf</span> ~<span style="color: #000000; font-weight: bold;">/</span>.config<span style="color: #000000; font-weight: bold;">/</span>ubuntuone
<span style="color: #c20cb9; font-weight: bold;">mv</span> ~<span style="color: #000000; font-weight: bold;">/</span>Ubuntu\ One<span style="color: #000000; font-weight: bold;">/</span> ~<span style="color: #000000; font-weight: bold;">/</span>Ubuntu\ One_old<span style="color: #000000; font-weight: bold;">/</span></pre></div></div>

<p>3. Menü öffnen Anwendungen-&gt;Zubehör-&gt;Passwörter und Verschlüsselung, gehe zum Passwort tab, lösche Ubuntu One token. Er kann auch &#8220;Desktop Couch user authentication&#8221; heißen. Mehrere Einträge können geschlöscht werden.</p>
<p>4. (optional) Prüfen, ob UbuntuOne Prozesse laufen:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">ps</span> <span style="color: #660033;">-aux</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">grep</span> ubuntuone</pre></div></div>

<p>Prozesse beenden mit</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">kill</span> <span style="color: #660033;">-9</span> <span style="color: #000000; font-weight: bold;">&lt;</span>PROZESS_ID<span style="color: #000000; font-weight: bold;">&gt;</span></pre></div></div>

<p>5. Pakete  komplett entfernen</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> purge ubuntuone-client<span style="color: #000000; font-weight: bold;">*</span> python-ubuntuone-storage<span style="color: #000000; font-weight: bold;">*</span></pre></div></div>

<p><strong>CLIENT NEU INSTALLIEREN</strong></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> ubuntuone-client<span style="color: #000000; font-weight: bold;">*</span> python-ubuntuone-storage<span style="color: #000000; font-weight: bold;">*</span></pre></div></div>

<p>6. Den Ordner ~/Ubuntu One öffnen und eine Datei erstellen, die nicht leer ist<br />
6. Open Anwendungen-&gt;Internet-&gt;Ubuntu One und füge deinen Computer bei Ubuntu One hinzu, auf der Seite, die sich nach dem Starten von Ubuntu One öffnet.</p>
]]></content:encoded>
			<wfw:commentRss>http://ww2624.awi2.de/blog2/?feed=rss2&amp;p=111</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Status des WebGroupCommunicationCenter (WGCC)</title>
		<link>http://ww2624.awi2.de/blog2/?p=101</link>
		<comments>http://ww2624.awi2.de/blog2/?p=101#comments</comments>
		<pubDate>Tue, 05 Jan 2010 10:46:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WGCC]]></category>
		<category><![CDATA[updates]]></category>

		<guid isPermaLink="false">http://ww2624.awi2.de/blog/?p=101</guid>
		<description><![CDATA[Hallo Leute, in den letzten Tagen erreichen mich viele Nachfragen bezüglich des WebGroupCommunicationCenter (WGCC) Projekts. Dieses Projekt habe ich mit vielen Helfern während meiner Freizeit betreut sowie während des Studiums als kleinen Nebenverdienst. Da dieses Projekt seit einigen Jahren nicht mehr weiterentwickelt wird, befindet es sich nicht mehr auf dem aktuellen Stand der Technik. Generell [...]]]></description>
			<content:encoded><![CDATA[<p>Hallo Leute,</p>
<p>in den letzten Tagen erreichen mich viele Nachfragen bezüglich des WebGroupCommunicationCenter (WGCC) Projekts. Dieses Projekt habe ich mit vielen Helfern während meiner Freizeit betreut sowie während des Studiums als kleinen Nebenverdienst. Da dieses Projekt seit einigen Jahren nicht mehr weiterentwickelt wird, befindet es sich nicht mehr auf dem aktuellen Stand der Technik. Generell gab es in den letzten Jahren immer wieder Sicherheitsprobleme, die nicht durch Programmaktualisierungen behoben werden konnten. Ich rate allen, die das WGCC noch einsetzen, zu einem ehemaligen Konkurrenzprodukt (PhpBB, WBB, etc&#8230;) zu wechseln. Es werden von meiner Seite aus keine Aktualisierung oder Weiterentwicklung angestrebt und ein Nachfolgeentwickler konnte nicht gefunden werden.</p>
<p>Nichtsdestotrotz stelle ich euch hier die neuste Version zur Verfügung:<br />
<a href="wp-content/wgcc_release_1_0_3_withallhotfixes.zip">WGCC 1.0.3 mit Updates</a><br />
Ausschließlich private Nutzung ist gestattet.</p>
<p>Viele Grüße<br />
Micha</p>
]]></content:encoded>
			<wfw:commentRss>http://ww2624.awi2.de/blog2/?feed=rss2&amp;p=101</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>LaTeX: Zeilenumbruch bei texttt</title>
		<link>http://ww2624.awi2.de/blog2/?p=95</link>
		<comments>http://ww2624.awi2.de/blog2/?p=95#comments</comments>
		<pubDate>Tue, 05 Jan 2010 10:34:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Latex]]></category>
		<category><![CDATA[texttt]]></category>
		<category><![CDATA[trennzeichen]]></category>

		<guid isPermaLink="false">http://ww2624.awi2.de/blog/?p=95</guid>
		<description><![CDATA[Heute hatte ich das Problem, viele MAC-Adressen in einer Schreibmaschinen- /Typewriter-Schriftart (\texttt{&#8230;}) im Fließtext darzustellen. LateX bricht diese Schriftart standardmäßig nicht um, da kein Trennzeichen dafür definiert ist. Für mein Problem (darstellung von MAC-Adressen) war es sinnvoll den Doppelpunkt als Trennzeichen festzulegen. Dies geschieht mit folgenden LaTeX Befehlen, die in der Preambel eingefügt werden müssen: [...]]]></description>
			<content:encoded><![CDATA[<p>Heute hatte ich das Problem, viele MAC-Adressen in einer Schreibmaschinen- /Typewriter-Schriftart (\texttt{&#8230;}) im Fließtext darzustellen. LateX bricht diese Schriftart standardmäßig nicht um, da kein Trennzeichen dafür definiert ist. Für mein Problem (darstellung von MAC-Adressen) war es sinnvoll den Doppelpunkt als Trennzeichen festzulegen. Dies geschieht mit folgenden LaTeX Befehlen, die in der Preambel eingefügt werden müssen:</p>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\newcommand</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\origttfamily</span></span><span style="color: #E02020; ">}{</span><span style="color: #E02020; ">}</span>
<span style="color: #800000; font-weight: normal;">\<span style="color: #800000; font-weight: bold;">let</span></span><span style="color: #800000; font-weight: normal;">\origttfamily</span>=<span style="color: #800000; font-weight: normal;">\ttfamily</span> <span style="color: #2C922C; font-style: italic;">%Voheriges \ttfamily sichern</span>
<span style="color: #800000; font-weight: normal;">\renewcommand</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\ttfamily</span></span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\origttfamily</span> <span style="color: #800000; font-weight: normal;">\hyphenchar</span><span style="color: #800000; font-weight: normal;">\font</span>=`<span style="color: #E02020; ">\</span>:</span><span style="color: #E02020; ">}</span></pre></div></div>

<p>Nebenbei angemerkt sei , dass man das Standardtrennzeichen mit</p>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\defaulthypenchar</span>=ASCII-CODE</pre></div></div>

<p>setzen kann.</p>
]]></content:encoded>
			<wfw:commentRss>http://ww2624.awi2.de/blog2/?feed=rss2&amp;p=95</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Network security and encryption &#8211; Assignment 2</title>
		<link>http://ww2624.awi2.de/blog2/?p=80</link>
		<comments>http://ww2624.awi2.de/blog2/?p=80#comments</comments>
		<pubDate>Sun, 13 Dec 2009 13:37:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Master Studium]]></category>

		<guid isPermaLink="false">http://ww2624.awi2.de/blog/?p=80</guid>
		<description><![CDATA[Hello to everybody who&#8217;s reading this! A few days ago I finished a huge assignment according to my master course. I wish to share the things I have written. The contents are roughly: - Simple ciphers like Caesar and Vigenere - Symmetric–Key encryption with AES and DES - Modular arithmetic (mathematical derivation of some statements [...]]]></description>
			<content:encoded><![CDATA[<p>Hello to everybody who&#8217;s reading this!</p>
<p>A few days ago I finished a huge assignment according to my master course.<br />
I wish to share the things I have written. The contents are roughly:<br />
- Simple ciphers like Caesar and  Vigenere<br />
- Symmetric–Key encryption with AES and DES<br />
- Modular arithmetic (mathematical derivation of some statements using Eulers theorem and Extended Euler)<br />
- Discovering divisibility rules<br />
- Public key encryption &#8211; RSA (generating RSA key, encrypt and decrypt manually [only some basic matlab functions are used])<br />
- Diffie-Hellman Key Exchange Protocol<br />
- Shamir’s No-Key Protocol<br />
- Cryptographical Protocols – Message Integrity (HASH Algorithms like md5)<br />
- Authentification by Challenge and Response<br />
- Anonymous Mail Communication<br />
- Steganography</p>
<p>Enjoy to read it!</p>
<p>Update 05.01.10: File was updated because the previous one was not complete&#8230;<br />
<a href='/blog/wp-content/assignment_2.pdf'>Click here to read the assignment written by Micha Koller</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ww2624.awi2.de/blog2/?feed=rss2&amp;p=80</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 9.10: ISO Datei mit Inhalt eines Verzeichnis erstellen</title>
		<link>http://ww2624.awi2.de/blog2/?p=72</link>
		<comments>http://ww2624.awi2.de/blog2/?p=72#comments</comments>
		<pubDate>Sat, 07 Nov 2009 15:19:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[virtualbox]]></category>
		<category><![CDATA[iso datei erstellen]]></category>

		<guid isPermaLink="false">http://ww2624.awi2.de/blog/?p=72</guid>
		<description><![CDATA[Hallo Leute, soeben hatte ich das Problem, dass ich ein Verzeichnis in der VirtualBox als CD-Laufwerk einbinden wollte/musste. Mein Vorgehen war folgendes: 1. ISO-Datei mit dem Inhalt eines Verzeichnis/Ordner erstellen. Dies kann man über den unterstehenden shell-Befehl erreichen: mkisofs -r -J -o abbild.iso content_directory 2. Danach kann man die ISO-Datei als CD-ROM Abbild in der [...]]]></description>
			<content:encoded><![CDATA[<p>Hallo Leute,</p>
<p>soeben hatte ich das Problem, dass ich ein Verzeichnis in der VirtualBox als CD-Laufwerk einbinden wollte/musste.<br />
Mein Vorgehen war folgendes:</p>
<p>1. ISO-Datei mit dem Inhalt eines Verzeichnis/Ordner erstellen. Dies kann man über den unterstehenden shell-Befehl erreichen:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">mkisofs <span style="color: #660033;">-r</span> <span style="color: #660033;">-J</span> <span style="color: #660033;">-o</span> abbild.iso content_directory</pre></div></div>

<p>2. Danach kann man die ISO-Datei als CD-ROM Abbild in der Virtualbox einbinden.</p>
]]></content:encoded>
			<wfw:commentRss>http://ww2624.awi2.de/blog2/?feed=rss2&amp;p=72</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 9 (Jaunty) &#8211; Dokument/Datei als PDF drucken</title>
		<link>http://ww2624.awi2.de/blog2/?p=68</link>
		<comments>http://ww2624.awi2.de/blog2/?p=68#comments</comments>
		<pubDate>Sun, 18 Oct 2009 13:34:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[cups]]></category>
		<category><![CDATA[drucken]]></category>

		<guid isPermaLink="false">http://ww2624.awi2.de/blog/?p=68</guid>
		<description><![CDATA[Heute habe ich mich mal um das Problem gekümmert, dass das Drucken eines Dokuments als PDF unter Ubuntu noch nicht so funktioniert hat wie ich mir das vorstelle. Zunächst habe ich das entsprechend benötigte Paket ausfindig gemacht und installiert: # Deinstallieren, falls man davor zuviel rumgespielt hat sudo apt-get remove cups-pdf # Paket neu installieren [...]]]></description>
			<content:encoded><![CDATA[<p>Heute habe ich mich mal um das Problem gekümmert, dass das Drucken eines Dokuments als PDF unter Ubuntu noch nicht so funktioniert hat wie ich mir das vorstelle. Zunächst habe ich das entsprechend benötigte Paket ausfindig gemacht und installiert:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># Deinstallieren, falls man davor zuviel rumgespielt hat</span>
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> remove cups-pdf
<span style="color: #666666; font-style: italic;"># Paket neu installieren</span>
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> cups-pdf</pre></div></div>

<p>In der Datei  /etc/cups/cups-pdf.conf ist der Speicherpfad gespeichert, der für die erzeugten PDF benutzt wird. Dies ist in der ersten (nicht zu den Kommentaren gehörenden) Zeile zu sehen: <code>Out ${HOME}/PDF</code>.</p>
<p>Als Standardeinstellung der Ordner PDF im Homeverzeichnis des Benutzers festgelegt.<br />
<strong>Wichtig dabei ist, dass dieser Ordner erst erstellt werden muss, damit das Drucken auch funktioniert.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://ww2624.awi2.de/blog2/?feed=rss2&amp;p=68</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
