<?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>NerdyRoom™ &#187; Willi</title>
	<atom:link href="http://www.nrtm.de/index.php/author/willi/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nrtm.de</link>
	<description>never read the manual</description>
	<lastBuildDate>Mon, 06 Feb 2012 21:02:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>tr &#8211; almost forgotten (at least i had)</title>
		<link>http://www.nrtm.de/index.php/2012/02/06/tr-almost-forgotten-at-least-i-had/</link>
		<comments>http://www.nrtm.de/index.php/2012/02/06/tr-almost-forgotten-at-least-i-had/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 20:48:07 +0000</pubDate>
		<dc:creator>Willi</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.nrtm.de/?p=3836</guid>
		<description><![CDATA[I confess, I use ms excel from time to time. I find it easy to shuffle around datasets and to create simple diagrams to see if my data matches my expectations. But as soon as it comes to really plotting the data for publishing I curse myself for never having learned to use a sophisticated [...]]]></description>
			<content:encoded><![CDATA[<p>I confess, I use ms excel from time to time. I find it easy to shuffle around datasets and to create simple diagrams to see if my data matches my expectations. But as soon as it comes to really plotting the data for publishing I curse myself for never having learned to use a sophisticated command line tool and revert back to my crappy configured gnuplots. Normally I just copy the parts of the dataset I want from the various excel sheets into plain txt files to have gnuplot plot them. Damn MS uses \r instead of \n so gnuplot doesn&#8217;t plot these files. This is where tr comes to the rescue:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">tr</span> <span style="color: #ff0000;">'\r'</span> <span style="color: #ff0000;">'\n'</span> <span style="color: #000000; font-weight: bold;">&lt;</span> input.dat <span style="color: #000000; font-weight: bold;">&gt;</span> output.dat</pre></div></div>

<p>Why do I always end up using these damn old *nix tools &#8211; OMG &#8211; I&#8217;m getting old . . .</p>
 <p><a href="http://www.nrtm.de/?flattrss_redirect&amp;id=3836&amp;md5=986f79cbfdc68ec31fd3d5b1b547da4f" title="Flattr" target="_blank"><img src="https://www.nrtm.de/wp-content/plugins/flattrss/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.nrtm.de/index.php/2012/02/06/tr-almost-forgotten-at-least-i-had/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<atom:link rel="payment" href="http://www.nrtm.de/?flattrss_redirect&amp;id=3836&amp;md5=986f79cbfdc68ec31fd3d5b1b547da4f" type="text/html" />
	</item>
		<item>
		<title>keeping track of changes in /etc</title>
		<link>http://www.nrtm.de/index.php/2012/01/17/keeping-track-of-changes-in-etc/</link>
		<comments>http://www.nrtm.de/index.php/2012/01/17/keeping-track-of-changes-in-etc/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 01:19:27 +0000</pubDate>
		<dc:creator>Willi</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[management]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[etc]]></category>
		<category><![CDATA[git]]></category>

		<guid isPermaLink="false">http://www.nrtm.de/?p=3821</guid>
		<description><![CDATA[using git was kind of painful as you had to configure &#8220;apt&#8221; to keep track of the changes with a &#8220;Post-Invoke&#8221; command. Determining the caller of apt was something ugly like &#8220;caller=$(ps axww &#124; grep &#8220;^ *$$&#8221; -B3 &#124; grep &#8221; apt-get &#8221; &#124; head -n1 &#124; sed &#8216;s/^.*\(apt-get .*\)/\1/&#8217; )&#8221;. Forgetting to &#8220;chmod og-rwx [...]]]></description>
			<content:encoded><![CDATA[<p>using git was kind of painful as you had to configure &#8220;apt&#8221; to keep track of the changes with a &#8220;Post-Invoke&#8221; command. Determining the caller of apt was something ugly like &#8220;caller=$(ps axww | grep &#8220;^ *$$&#8221; -B3 | grep &#8221; apt-get &#8221; | head -n1 | sed &#8216;s/^.*\(apt-get .*\)/\1/&#8217; )&#8221;. Forgetting to &#8220;chmod og-rwx /etc/.git&#8221; made your password shadows world readable. No fun at all . . .</p>
<p>The simple solution to all of that is called: <strong>etckeeper</strong></p>
<p>It uses git per default but can use mercurial(hg), bazaar, or darcs as well. Supported packet managers are apt(dpkg), yum(rpm), pacman-g2 and probably more. Etckeeper does a commit every day per default, but as its a normal git (or hg &#8230;) one can manually commit any time (by using git directly or through &#8220;etckeeper commit message&#8221;). Everything (else) can be configured at /etc/etckeeper &#8211; funny coincidence &#8211; changes there will be tracked by etckeeper as well. Sounds like a self fulfilling prophecy &#8211; doesn&#8217;t it <img src='http://www.nrtm.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>BTW: Normally, etckeeper is run inside /etc but with the command &#8220;etckeeper init [-d directory] one can keep a clone of /etc elsewhere (read: backup).</p>
 <p><a href="http://www.nrtm.de/?flattrss_redirect&amp;id=3821&amp;md5=7ddd2748349581a1cc07e889e6443e6d" title="Flattr" target="_blank"><img src="https://www.nrtm.de/wp-content/plugins/flattrss/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.nrtm.de/index.php/2012/01/17/keeping-track-of-changes-in-etc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<atom:link rel="payment" href="http://www.nrtm.de/?flattrss_redirect&amp;id=3821&amp;md5=7ddd2748349581a1cc07e889e6443e6d" type="text/html" />
	</item>
		<item>
		<title>2012 &#8211; here we are</title>
		<link>http://www.nrtm.de/index.php/2012/01/02/2012-here-we-are/</link>
		<comments>http://www.nrtm.de/index.php/2012/01/02/2012-here-we-are/#comments</comments>
		<pubDate>Mon, 02 Jan 2012 01:57:29 +0000</pubDate>
		<dc:creator>Willi</dc:creator>
				<category><![CDATA[games]]></category>

		<guid isPermaLink="false">http://www.nrtm.de/?p=3811</guid>
		<description><![CDATA[2012 &#8211; lets hope the mayas simply ran out of ink or something . . . There&#8217;s a new trend of refurbished old games that i particularly like because everything was better in the old days, even the e-games http://www.reghardware.com/2011/11/17/ten_videogames_remastered_in_hd/ HAPPY NEW YEAR, Willi]]></description>
			<content:encoded><![CDATA[<p>2012 &#8211; lets hope the mayas simply ran out of ink or something . . . <img src='http://www.nrtm.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>There&#8217;s a new trend of refurbished old games that i particularly like because everything was better in the old days, even the e-games <img src='http://www.nrtm.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><a href="http://www.reghardware.com/2011/11/17/ten_videogames_remastered_in_hd/">http://www.reghardware.com/2011/11/17/ten_videogames_remastered_in_hd/</a></p>
<p>HAPPY NEW YEAR,<br />
Willi</p>
 <p><a href="http://www.nrtm.de/?flattrss_redirect&amp;id=3811&amp;md5=131e463d5394cf8ebebc19e801ac5d78" title="Flattr" target="_blank"><img src="https://www.nrtm.de/wp-content/plugins/flattrss/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.nrtm.de/index.php/2012/01/02/2012-here-we-are/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<atom:link rel="payment" href="http://www.nrtm.de/?flattrss_redirect&amp;id=3811&amp;md5=131e463d5394cf8ebebc19e801ac5d78" type="text/html" />
	</item>
		<item>
		<title>01 Lightning Talk</title>
		<link>http://www.nrtm.de/index.php/2011/12/23/01-lightning-talk/</link>
		<comments>http://www.nrtm.de/index.php/2011/12/23/01-lightning-talk/#comments</comments>
		<pubDate>Fri, 23 Dec 2011 11:42:39 +0000</pubDate>
		<dc:creator>Willi</dc:creator>
				<category><![CDATA[Lightning Talks]]></category>
		<category><![CDATA[ludum dare]]></category>
		<category><![CDATA[zsh]]></category>

		<guid isPermaLink="false">http://www.nrtm.de/?p=3800</guid>
		<description><![CDATA[Hurra, die ersten Zwei Lightning Talks wurden gehalten. Ich fand beide sehr interessant. Jupp und Ronny werden jetzt noch einmal zusammenfassen worum es ging. Jupp: zsh https://github.com/jupp0r/nrtm-lightning-talks/blob/master/1_zsh/demo.txt Ronny: Ludum Dare Ludum Dare heißt ins deutsche übersetzt &#8220;ein Spiel geben&#8221;. Und genau darum geht es. Sich einfach mal ein Wochenende hinsetzen und von vorn bis hinten [...]]]></description>
			<content:encoded><![CDATA[<p>Hurra,</p>
<p>die ersten Zwei Lightning Talks wurden gehalten. Ich fand beide sehr interessant. Jupp und Ronny werden jetzt noch einmal zusammenfassen worum es ging.</p>
<p><strong>Jupp: zsh</strong></p>
<p><iframe src="http://player.vimeo.com/video/33980683" width="500" height="375" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></p>
<p><a href="https://github.com/jupp0r/nrtm-lightning-talks/blob/master/1_zsh/demo.txt">https://github.com/jupp0r/nrtm-lightning-talks/blob/master/1_zsh/demo.txt</a></p>
<p><strong>Ronny: Ludum Dare</strong></p>
<p>Ludum Dare heißt ins deutsche übersetzt &#8220;ein Spiel geben&#8221;. Und genau darum geht es. Sich einfach mal ein Wochenende hinsetzen und von vorn bis hinten ein Spiel fertig stellen und veröffentlichen.</p>
<p>Die Regeln sind einfach. Du hast 48 Stunden Zeit und sollst allein, alles an Inhalt (Text, Bilder, Ton) und Code in dieser Zeit erstellen. Es ist dabei erlaubt eigene Bibliotheken und Spiele-Engines zu benutzen solang diese öffentlich verfügbar sind.<br />
Dein Spiel muss sich an ein Thema halten was meist mit einem Wort betitelt ist. Dieses mal war es &#8220;Alone&#8221;, vorher unter Anderem &#8220;Escape&#8221; und &#8220;It&#8217;s dangerous to go alone. Take this.&#8221;.</p>
<p>Nach den 48h haben alle Teilnehmer 3 Wochen Zeit die Spiele der Anderen in verschiedenen Kategorien zu bewerten. Danach gibt es ein Ranking und Fame für die Besten.</p>
<p>Ich selbst bin erst vor einem halben Jahr dieses Event gestoßen, und dieses mal habe ich mich kurzfristig dafür entschieden mitzumachen. Vorbereitungszeit war eine Stunde.<br />
Es geht nicht darum etwas besonders tolles zu erschaffen, sondern um mit anderen Menschen zur gleichen Zeit eine Idee oder einen Aspekt herauszuarbeiten und ein kleines Spiel daraus entstehen zu lassen.<br />
Einfach coden, malen, Musik und Sounds machen und alles in einen Topf werfen.</p>
<p>Die Absicht des Wettbewerbs ist folgendermaßen:<br />
Viele Ideen scheitern oder werden niemals realisiert weil der Mensch vor dem Aufwand zurückschreckt oder sein Perfektionsstreben ihn dazu treibt ewig an etwas zu basteln ohne es je zu Veröffentlichen. Denn es ist ja noch nicht zeigenswert. Das kennst du oder? Ludum Dare will all jenen eine Ausrede bieten etwas fertig zubasteln.</p>
<p>Ich hatte riesigen Spaß dabei. Am Ende habe ich mein Spiel nicht eingereicht. Jetzt im Nachhinein denke ich haette es trotzdem machen sollen, denn Andere spiele waren wesentlich sinnloser als meines. <a href="http://www.ludumdare.com/compo/2011/12/18/bailing-out/">(link)</a></p>
<p>Von den gegeben 48 Stunden habe ich etwa 18 vorm PC verbracht und aktiv gebaut. Andere verbringen noch wesentlich weniger Zeit damit. Es geht also auch nicht darum zwei Tage sich mit Koffein wach zuhalten. Selbst der Survival Guides rät zu genug Schlaf und ausgewogener Ernährung.</p>
<p>Wer eine Pause einlegt kann sich im IRC nach Tipps oder Infos umsehen oder den ein oder anderen Livestream schauen um zu sehen wie der Workflow anderer Entwickler aussieht. Der Minecraft-Erschaffer Notch streamt zum Beispiel immer.</p>
<p>Ludum Dare findet alle 4 Monate statt. Wer also Lust bekommen haben sollte muss nicht lange warten. Im April ist es schon wieder soweit. Ich werde auf jeden Fall wieder mitmachen!</p>
<p>Links:</p>
<ul>
<li><a href="http://www.ludumdare.com/compo/">LD</a></li>
<li><a href="http://www.ludumdare.com/compo/rules/">LD: Regeln</a></li>
<li><a href="http://www.ludumdare.com/compo/ludum-dare-22/?action=preview&#038;etype=compo">LD: Alle Spiele</a></li>
<li><a href="http://www.reddit.com/r/ludumdare">LD@reddit</a></li>
<li><a href="http://www.bfxr.net/">bfxr</a></li>
<li><a href="http://drpetter.se/project_sfxr.html">sfxr</a></li>
</ul>
 <p><a href="http://www.nrtm.de/?flattrss_redirect&amp;id=3800&amp;md5=70ad31eeabc1d049aee188a67d2d1e6e" title="Flattr" target="_blank"><img src="https://www.nrtm.de/wp-content/plugins/flattrss/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.nrtm.de/index.php/2011/12/23/01-lightning-talk/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<atom:link rel="payment" href="http://www.nrtm.de/?flattrss_redirect&amp;id=3800&amp;md5=70ad31eeabc1d049aee188a67d2d1e6e" type="text/html" />
	</item>
		<item>
		<title>Hier mal für alle zur Einstimmung auf Weihnachten</title>
		<link>http://www.nrtm.de/index.php/2011/12/22/hier-mal-fur-alle-zur-einstimmung-auf-weihnachten/</link>
		<comments>http://www.nrtm.de/index.php/2011/12/22/hier-mal-fur-alle-zur-einstimmung-auf-weihnachten/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 10:24:42 +0000</pubDate>
		<dc:creator>Willi</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.nrtm.de/?p=3808</guid>
		<description><![CDATA[ein Lehr-Video zur Weihnachtsgeschichte Und dieses Jahr haben Sie auch noch den ganzen wichtigen Rest erklärt, Genesis, Sintflut etc:]]></description>
			<content:encoded><![CDATA[<p>ein Lehr-Video zur Weihnachtsgeschichte <img src='http://www.nrtm.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><iframe width="500" height="281" src="http://www.youtube.com/embed/zduwusyip8M?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p>Und dieses Jahr haben Sie auch noch den ganzen wichtigen Rest erklärt, Genesis, Sintflut etc:</p>
<p><iframe width="500" height="281" src="http://www.youtube.com/embed/ttInl1ewJVo?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
 <p><a href="http://www.nrtm.de/?flattrss_redirect&amp;id=3808&amp;md5=d033e856f92944c54fbbe1d9bc474153" title="Flattr" target="_blank"><img src="https://www.nrtm.de/wp-content/plugins/flattrss/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.nrtm.de/index.php/2011/12/22/hier-mal-fur-alle-zur-einstimmung-auf-weihnachten/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<atom:link rel="payment" href="http://www.nrtm.de/?flattrss_redirect&amp;id=3808&amp;md5=d033e856f92944c54fbbe1d9bc474153" type="text/html" />
	</item>
		<item>
		<title>RL Horror</title>
		<link>http://www.nrtm.de/index.php/2011/12/19/rl-horror/</link>
		<comments>http://www.nrtm.de/index.php/2011/12/19/rl-horror/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 00:08:02 +0000</pubDate>
		<dc:creator>Willi</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.nrtm.de/?p=3793</guid>
		<description><![CDATA[Hallo, manchmal versteh ich die Leute die pessimistisch in die Zukunft blicken, angesichts solcher Studien: http://www.unicef.org/publications/files/FGM-C_final_10_October.pdf Ich bin auf die PDF im Zusammenhang mit einem Video (gefunden bei fefe) gestoßen: und hatte auf Wikipedia (http://de.wikipedia.org/wiki/Ägypten) erschreckende Zahlen zu Ägypten und Genitalverstümmelung bei Frauen gefunden eine UNICEF-Statistik gibt, bezogen auf das Jahr 2003, eine Inzidenz von [...]]]></description>
			<content:encoded><![CDATA[<p>Hallo,</p>
<p>manchmal versteh ich die Leute die pessimistisch in die Zukunft blicken, angesichts solcher Studien:</p>
<p><a href="http://www.unicef.org/publications/files/FGM-C_final_10_October.pdf">http://www.unicef.org/publications/files/FGM-C_final_10_October.pdf</a></p>
<p>Ich bin auf die PDF im Zusammenhang mit einem Video (gefunden bei fefe) gestoßen:</p>
<p><iframe width="500" height="281" src="http://www.youtube.com/embed/4iboFV-yeTE?start=35&#038;fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p>und hatte auf Wikipedia (http://de.wikipedia.org/wiki/Ägypten) erschreckende Zahlen zu Ägypten und Genitalverstümmelung bei Frauen gefunden</p>
<blockquote><p>eine UNICEF-Statistik gibt, bezogen auf das Jahr 2003, eine Inzidenz von 97,0 % in der Altersgruppe der zwischen 15 und 49 Jahre alten Frauen an</p></blockquote>
<p>Mein Gedanke ist bei so was dann immer &#8211; Scheisse geht&#8217;s uns gut. Wir diskutieren ob das Glas halb voll oder halb leer ist und vergessen darüber dass wir in der Lage sind, uns trinkbares Leitungswasser nach belieben zu zapfen, wann immer wir wollen . . . Ich meine dabei weniger den Fakt dass es Leitungswasser gibt sondern dass ich noch am Leben und im Stande bin den Wasserhahn selber zu bedienen. Mir geht&#8217;s da also bedeutend besser als den Demonstranten im Video . . .</p>
<p>Einen schönen 4&#8242;ten Advent,<br />
Willi</p>
 <p><a href="http://www.nrtm.de/?flattrss_redirect&amp;id=3793&amp;md5=d3f73b99e3e08bc65127567daba9c80f" title="Flattr" target="_blank"><img src="https://www.nrtm.de/wp-content/plugins/flattrss/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.nrtm.de/index.php/2011/12/19/rl-horror/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<atom:link rel="payment" href="http://www.nrtm.de/?flattrss_redirect&amp;id=3793&amp;md5=d3f73b99e3e08bc65127567daba9c80f" type="text/html" />
	</item>
		<item>
		<title>screen scroll back</title>
		<link>http://www.nrtm.de/index.php/2011/11/10/screen-scroll-back/</link>
		<comments>http://www.nrtm.de/index.php/2011/11/10/screen-scroll-back/#comments</comments>
		<pubDate>Thu, 10 Nov 2011 03:58:35 +0000</pubDate>
		<dc:creator>Willi</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[screen]]></category>

		<guid isPermaLink="false">http://www.nrtm.de/?p=3727</guid>
		<description><![CDATA[Ich wusste bis gerade eben nicht dass man in &#8220;screen&#8221; sogar scrollen kann &#8211; hier ein kurzer Abriss wie es geht. Zuerst in den copy modus wechseln: ctrl-a &#91; Dann sollte in der Status Zeile kurz sowas wie &#8220;Copy Mode&#8221; erscheinen. Danach kann man mit den &#8220;vi&#8221; Kommandos scrollen. Am sinnvollsten sind ctrl-f (forward) und [...]]]></description>
			<content:encoded><![CDATA[<p>Ich wusste bis gerade eben nicht dass man in &#8220;screen&#8221; sogar scrollen kann &#8211; hier ein kurzer Abriss wie es geht.<br />
Zuerst in den copy modus wechseln:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">ctrl-a <span style="color: #7a0874; font-weight: bold;">&#91;</span></pre></div></div>

<p>Dann sollte in der Status Zeile kurz sowas wie &#8220;Copy Mode&#8221; erscheinen. Danach kann man mit den &#8220;vi&#8221; Kommandos scrollen. Am sinnvollsten sind ctrl-f (forward) und ctrl-b (backward) um Seitenweise zu scrollen, Pfeiltasten sollten auch gehen. </p>
<p>Einziges Problem &#8211; per default werden nur 100 Zeilen gespeichert. Das kann man mit einem Eintrag in die $HOME/.screenrc ändern:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">defscrollback <span style="color: #000000;">10000</span></pre></div></div>

<p>Suchen geht auch:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">/</span> <span style="color: #7a0874; font-weight: bold;">&#40;</span>forward search<span style="color: #7a0874; font-weight: bold;">&#41;</span>
? <span style="color: #7a0874; font-weight: bold;">&#40;</span>backward search<span style="color: #7a0874; font-weight: bold;">&#41;</span></pre></div></div>

<p>Man kann sogar kopieren &#8211; deswegen copymode:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">ctrl-a <span style="color: #7a0874; font-weight: bold;">&#91;</span>
<span style="color: #666666; font-style: italic;">#navigigieren zur gewünschten zeile</span>
leertaste
<span style="color: #666666; font-style: italic;">#markieren der zu kopierenden zeilen</span>
leertaste
ctrl-a <span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #666666; font-style: italic;">#fügt den Inhalt der puffers dann auf der kommandozeile ein . . .</span></pre></div></div>

 <p><a href="http://www.nrtm.de/?flattrss_redirect&amp;id=3727&amp;md5=21185b3e6be180bd55c172d12cec9294" title="Flattr" target="_blank"><img src="https://www.nrtm.de/wp-content/plugins/flattrss/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.nrtm.de/index.php/2011/11/10/screen-scroll-back/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<atom:link rel="payment" href="http://www.nrtm.de/?flattrss_redirect&amp;id=3727&amp;md5=21185b3e6be180bd55c172d12cec9294" type="text/html" />
	</item>
		<item>
		<title>Indian summer</title>
		<link>http://www.nrtm.de/index.php/2011/11/07/indian-summer/</link>
		<comments>http://www.nrtm.de/index.php/2011/11/07/indian-summer/#comments</comments>
		<pubDate>Mon, 07 Nov 2011 18:57:51 +0000</pubDate>
		<dc:creator>Willi</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.nrtm.de/?p=3704</guid>
		<description><![CDATA[These trees are right outside of the CIB &#8211; and although I used my crappy mobile-phone-camera the colors still look awesome:]]></description>
			<content:encoded><![CDATA[<p>These trees are right outside of the CIB &#8211; and although I used my crappy mobile-phone-camera the colors still look awesome:<br />
<a href="http://www.nrtm.de/wp-content/uploads/2011/11/07112011008.jpg"><img src="http://www.nrtm.de/wp-content/uploads/2011/11/07112011008-768x1024.jpg" alt="" title="Indian Summer in Bloomington" width="768" height="1024" class="aligncenter size-large wp-image-3705" /></a></p>
 <p><a href="http://www.nrtm.de/?flattrss_redirect&amp;id=3704&amp;md5=7e233816a1fdc5670e15e0e648a1ded3" title="Flattr" target="_blank"><img src="https://www.nrtm.de/wp-content/plugins/flattrss/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.nrtm.de/index.php/2011/11/07/indian-summer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<atom:link rel="payment" href="http://www.nrtm.de/?flattrss_redirect&amp;id=3704&amp;md5=7e233816a1fdc5670e15e0e648a1ded3" type="text/html" />
	</item>
		<item>
		<title>calibre launchpad fun</title>
		<link>http://www.nrtm.de/index.php/2011/11/03/calibre-launchpad-fun/</link>
		<comments>http://www.nrtm.de/index.php/2011/11/03/calibre-launchpad-fun/#comments</comments>
		<pubDate>Thu, 03 Nov 2011 20:02:36 +0000</pubDate>
		<dc:creator>Willi</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.nrtm.de/?p=3677</guid>
		<description><![CDATA[If you have the time read this bug report: https://bugs.launchpad.net/calibre/+bug/885027 It is entertaining and frightening at the same time (as i am a user of calibre). Funny side-note: When i was in my first year as a student at TU-Dresden, a guy called Martin Pitt introduced me to an OS called Debian that he was [...]]]></description>
			<content:encoded><![CDATA[<p>If you have the time read this bug report:</p>
<p><a href="https://bugs.launchpad.net/calibre/+bug/885027">https://bugs.launchpad.net/calibre/+bug/885027</a></p>
<p>It is entertaining and frightening at the same time (as i am a user of calibre). Funny side-note: When i was in my first year as a student at TU-Dresden, a guy called Martin Pitt introduced me to an OS called Debian that he was maintaining on some boxes for the student representatives. He told me he would start to work for a small and  then unknown company called Canonical <img src='http://www.nrtm.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>He apparently fixed the the calibre-issues for ubuntu with a wrapper script . . .</p>
<p>Martins genius saved my life at a ITEA meeting once where i had to present shell scripts to manager-type people:<br />
<a href="http://www.piware.de/2009/04/presentations-of-shell-commands/">http://www.piware.de/2009/04/presentations-of-shell-commands/</a> </p>
<p>So albeit we only met like 3-4 times many years ago his name surfaces every once in while.</p>
<p>BNW,<br />
Willi</p>
 <p><a href="http://www.nrtm.de/?flattrss_redirect&amp;id=3677&amp;md5=a1ff34770b54625892d3ef94cffb6857" title="Flattr" target="_blank"><img src="https://www.nrtm.de/wp-content/plugins/flattrss/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.nrtm.de/index.php/2011/11/03/calibre-launchpad-fun/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<atom:link rel="payment" href="http://www.nrtm.de/?flattrss_redirect&amp;id=3677&amp;md5=a1ff34770b54625892d3ef94cffb6857" type="text/html" />
	</item>
		<item>
		<title>The good old days</title>
		<link>http://www.nrtm.de/index.php/2011/11/03/the-good-old-days/</link>
		<comments>http://www.nrtm.de/index.php/2011/11/03/the-good-old-days/#comments</comments>
		<pubDate>Thu, 03 Nov 2011 17:49:42 +0000</pubDate>
		<dc:creator>Willi</dc:creator>
				<category><![CDATA[games]]></category>
		<category><![CDATA[Quake3]]></category>

		<guid isPermaLink="false">http://www.nrtm.de/?p=3675</guid>
		<description><![CDATA[I do not want to brag about the good old days but I think the video is right in so many ways that Id&#8217; like to share it with you. I used to be a/the &#8220;common&#8221; quake III arena player &#8211; and can&#8217;t remember having played something which came even close to this experience since [...]]]></description>
			<content:encoded><![CDATA[<p>I do not want to brag about the good old days but I think the video is right in so many ways that Id&#8217; like to share it with you. I used to be a/the &#8220;common&#8221; quake III arena player &#8211; and can&#8217;t remember having played something which came even close to this experience since then. There was this magic moment after 2h of straight Q3A playing when you suddenly could sense the other players movement in advance. There&#8217;s an inherent joy to firing a rocket along an empty corridor and have you opponent run right into it &#8211; ahhh yes &#8211; the simple things in life . . .</p>
<p><a href="http://www.youtube.com/watch?v=W1ZtBCpo0eU">http://www.youtube.com/watch?v=W1ZtBCpo0eU</a></p>
 <p><a href="http://www.nrtm.de/?flattrss_redirect&amp;id=3675&amp;md5=d71ca0a94cf31dd4ba2f6a10765681a5" title="Flattr" target="_blank"><img src="https://www.nrtm.de/wp-content/plugins/flattrss/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.nrtm.de/index.php/2011/11/03/the-good-old-days/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<atom:link rel="payment" href="http://www.nrtm.de/?flattrss_redirect&amp;id=3675&amp;md5=d71ca0a94cf31dd4ba2f6a10765681a5" type="text/html" />
	</item>
	</channel>
</rss>

