<?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>Linux Swords &#187; mjava</title>
	<atom:link href="http://blog.mjava.ch/author/admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.mjava.ch</link>
	<description>kids, baduk und cmd-lines</description>
	<lastBuildDate>Thu, 23 Dec 2010 12:01:30 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>created new yubnub command: findjar</title>
		<link>http://blog.mjava.ch/2008/12/31/created-new-yubnub-command-findjar/</link>
		<comments>http://blog.mjava.ch/2008/12/31/created-new-yubnub-command-findjar/#comments</comments>
		<pubDate>Wed, 31 Dec 2008 08:15:53 +0000</pubDate>
		<dc:creator>mjava</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[cmd-lines]]></category>

		<guid isPermaLink="false">http://blog.mjava.ch/2008/12/31/created-new-yubnub-command-findjar/</guid>
		<description><![CDATA[I just recently stumbled accross www.findjar.com, a usefull tool
to find jar-files [who would have guessed..]
And I created a yubnub command for it: findjar
Hope somebody else finds this usefull too  

Blogged with the Flock Browser

Tags: javajar

]]></description>
			<content:encoded><![CDATA[<p>I just recently stumbled accross www.findjar.com, a usefull tool<br />
to find jar-files [who would have guessed..]</p>
<p>And I created a <a href="http://www.yubnub.org">yubnub</a> command for it: <a href="http://yubnub.org/kernel/man?args=findjar">findjar</a></p>
<p>Hope somebody else finds this usefull too <img src='http://blog.mjava.ch/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><a class="noborder" href="http://findjar.com/index.jsp"><img src="http://findjar.com/img/logo.png" /></a></p>
<div class="flockcredit" style="text-align: right; color: #CCC; font-size: x-small;">Blogged with the <a href="http://www.flock.com/blogged-with-flock" style="color: #999; font-weight: bold;" target="_new" title="Flock Browser">Flock Browser</a></div>
<p><!-- technorati tags begin -->
<p style="font-size:10px;text-align:right;">Tags: <a href="http://technorati.com/tag/javajar" rel="tag">javajar</a></p>
<p><!-- technorati tags end --></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mjava.ch/2008/12/31/created-new-yubnub-command-findjar/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>more cmdlines [linux-user only]</title>
		<link>http://blog.mjava.ch/2008/10/20/more-cmdlines-linux-user-only/</link>
		<comments>http://blog.mjava.ch/2008/10/20/more-cmdlines-linux-user-only/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 20:19:40 +0000</pubDate>
		<dc:creator>mjava</dc:creator>
				<category><![CDATA[cmd-lines]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[bash cmdline]]></category>

		<guid isPermaLink="false">http://blog.mjava.ch/2008/10/20/more-cmdlines-linux-user-only/</guid>
		<description><![CDATA[I recently learned and relearned more of common cmdlines and oneliners in bash.
Posting them gives me a place to lookup these until I enter them properly into my wiki.
linux-users follow here
copying/moving files/directories for backup:
mv originalfilename.txt{,.backup}
will result in originalfilename.txt.backup
!! will repeat the last command, usefull for adding sudo in front of it: &#8217;sudo !!&#8217;
As for repeating [...]]]></description>
			<content:encoded><![CDATA[<p>I recently learned and relearned more of common cmdlines and oneliners in <em>bash</em>.<br />
Posting them gives me a place to lookup these until I enter them properly into my wiki.</p>
<p>linux-users follow here<span id="more-219"></span></p>
<p>copying/moving files/directories for backup:<br />
<code>mv originalfilename.txt{,.backup}</code><br />
will result in <em>originalfilename.txt.backup</em></p>
<p><code>!!</code> will repeat the last command, usefull for adding <em>sudo</em> in front of it: <em>&#8217;sudo !!&#8217;</em></p>
<p>As for repeating the last command, you can also use the <em>&#8216;^a^b&#8217;</em> notation. It will repeat the last command and replace the first &#8216;a&#8217; with a &#8216;b&#8217;. Let&#8217;s see an example:</p>
<p>Let&#8217;s say your last command was <em>tar xzvf somefile-version-1.16.9.tar.gz</em> and you realized that<br />
you should have written &#8216;17&#8242; instead of &#8216;16&#8242;. Here&#8217;s the quickfix:<br />
<code>^16^17</code></p>
<p>If you look at the output of the <em>history </em>  command, you&#8217;ll see the command-number in front of the command. You can use <em>&#8216;!&#8217; </em>  with the number:</p>
<p><code>!534</code></p>
<p>will repeat the command with the number 534.</p>
<p>Another usefull shortcut is <em>&lt;Esc&gt; + &#8216;_&#8217;</em>. This will repeat the last parameter of the last command, usefull when creating new directories and then &#8216;cd&#8217; into them.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mjava.ch/2008/10/20/more-cmdlines-linux-user-only/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>holidays</title>
		<link>http://blog.mjava.ch/2008/10/18/holidays-2/</link>
		<comments>http://blog.mjava.ch/2008/10/18/holidays-2/#comments</comments>
		<pubDate>Sat, 18 Oct 2008 20:59:24 +0000</pubDate>
		<dc:creator>mjava</dc:creator>
				<category><![CDATA[Nicht kategorisiert]]></category>

		<guid isPermaLink="false">http://blog.mjava.ch/2008/10/18/holidays-2/</guid>
		<description><![CDATA[
aaahhhh, wanna go back, now!
Blogged with the Flock Browser

Tags: holidays

]]></description>
			<content:encoded><![CDATA[<p><img src="http://lh5.ggpht.com/linuxswords/SPoP5XSVSdI/AAAAAAAAAhU/gmx2CPgPLeI/s576/photoImage.jpg" /></p>
<p>aaahhhh, wanna go back, now!
<div class="flockcredit" style="text-align: right; color: #CCC; font-size: x-small;">Blogged with the <a href="http://www.flock.com/blogged-with-flock" style="color: #999; font-weight: bold;" target="_new" title="Flock Browser">Flock Browser</a></div>
<p><!-- technorati tags begin -->
<p style="font-size:10px;text-align:right;">Tags: <a href="http://technorati.com/tag/holidays" rel="tag">holidays</a></p>
<p><!-- technorati tags end --></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mjava.ch/2008/10/18/holidays-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>fixing the locks in a svn repository</title>
		<link>http://blog.mjava.ch/2008/09/07/fixing-the-locks-in-a-svn-repository/</link>
		<comments>http://blog.mjava.ch/2008/09/07/fixing-the-locks-in-a-svn-repository/#comments</comments>
		<pubDate>Sun, 07 Sep 2008 10:43:29 +0000</pubDate>
		<dc:creator>mjava</dc:creator>
				<category><![CDATA[Nicht kategorisiert]]></category>

		<guid isPermaLink="false">http://blog.mjava.ch/2008/09/07/fixing-the-locks-in-a-svn-repository/</guid>
		<description><![CDATA[i recently run into an svn error. I could not update/commit whatsoever from/to the repository.
I run a svnadmin verify and discovered that the db-locks run out.
A quick search showed that I should upgrade the underlying berkley-db. I found a guide
to do this:
[LINK]
there is short term fix and a long term fix. thx for the good [...]]]></description>
			<content:encoded><![CDATA[<p>i recently run into an svn error. I could not update/commit whatsoever from/to the repository.<br />
I run a svnadmin verify and discovered that the db-locks run out.</p>
<p>A quick search showed that I should upgrade the underlying berkley-db. I found a guide<br />
to do this:</p>
<p><a href="http://www.kryogenix.org/days/2006/08/12/lock-table-is-out-of-available-locker-entries">[LINK]</a></p>
<p>there is short term fix and a long term fix. thx for the good work!</p>
<div class="flockcredit" style="text-align: right; color: #CCC; font-size: x-small;">Blogged with the <a href="http://www.flock.com/blogged-with-flock" style="color: #999; font-weight: bold;" target="_new" title="Flock Browser">Flock Browser</a></div>
<p><!-- technorati tags begin -->
<p style="font-size:10px;text-align:right;">Tags: <a href="http://technorati.com/tag/svndb%20berkly%20lock%20entries" rel="tag">svndb berkly lock entries</a></p>
<p><!-- technorati tags end --></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mjava.ch/2008/09/07/fixing-the-locks-in-a-svn-repository/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My new desk</title>
		<link>http://blog.mjava.ch/2008/09/02/my-new-desk/</link>
		<comments>http://blog.mjava.ch/2008/09/02/my-new-desk/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 21:21:19 +0000</pubDate>
		<dc:creator>mjava</dc:creator>
				<category><![CDATA[studying/job/career]]></category>

		<guid isPermaLink="false">http://blog.mjava.ch/2008/09/02/my-new-desk/</guid>
		<description><![CDATA[just started my new job at imis.ch and got a clean desk 
 
Blogged with the Flock Browser
]]></description>
			<content:encoded><![CDATA[<p>just started my new job at imis.ch and got a clean desk <img src='http://blog.mjava.ch/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
 <a href="http://www.new.facebook.com/photo.php?pid=30056196&amp;id=1410348249" id="myphotolink"><img src="http://photos-b.ak.facebook.com/photos-ak-sf2p/v337/133/52/1410348249/n1410348249_30067753_8632.jpg" id="myphoto" /></a>
<div class="flockcredit" style="text-align: right; color: #CCC; font-size: x-small;">Blogged with the <a href="http://www.flock.com/blogged-with-flock" style="color: #999; font-weight: bold;" target="_new" title="Flock Browser">Flock Browser</a></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.mjava.ch/2008/09/02/my-new-desk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Father! (Again!)</title>
		<link>http://blog.mjava.ch/2008/08/19/father-again/</link>
		<comments>http://blog.mjava.ch/2008/08/19/father-again/#comments</comments>
		<pubDate>Tue, 19 Aug 2008 10:05:32 +0000</pubDate>
		<dc:creator>mjava</dc:creator>
				<category><![CDATA[Kids]]></category>
		<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://blog.mjava.ch/2008/08/19/father-again/</guid>
		<description><![CDATA[Since today 3:55am, a beautiful daughter joined our family!
Blogged with the Flock Browser

Tags: kids

]]></description>
			<content:encoded><![CDATA[<p>Since today 3:55am, a beautiful daughter joined our family!</p>
<div class="flockcredit" style="text-align: right; color: #CCC; font-size: x-small;">Blogged with the <a href="http://www.flock.com/blogged-with-flock" style="color: #999; font-weight: bold;" target="_new" title="Flock Browser">Flock Browser</a></div>
<p><!-- technorati tags begin -->
<p style="font-size:10px;text-align:right;">Tags: <a href="http://technorati.com/tag/kids" rel="tag">kids</a></p>
<p><!-- technorati tags end --></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mjava.ch/2008/08/19/father-again/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The real Thing</title>
		<link>http://blog.mjava.ch/2008/08/14/the-real-thing/</link>
		<comments>http://blog.mjava.ch/2008/08/14/the-real-thing/#comments</comments>
		<pubDate>Thu, 14 Aug 2008 17:54:34 +0000</pubDate>
		<dc:creator>mjava</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://blog.mjava.ch/2008/08/14/the-real-thing/</guid>
		<description><![CDATA[
Blogged with the Flock Browser

Tags: iphoneegg

]]></description>
			<content:encoded><![CDATA[<p><a href="https://mail.google.com/mail/?ui=2&amp;ik=d9479631dd&amp;attid=0.1&amp;disp=inline&amp;view=att&amp;th=11bc1f937ee09a0c" title=""><img alt="" src="https://mail.google.com/mail/?attid=0.1&amp;disp=emb&amp;view=att&amp;th=11bc1f937ee09a0c" border="0" /></a>
<div class="flockcredit" style="text-align: right; color: #CCC; font-size: x-small;">Blogged with the <a href="http://www.flock.com/blogged-with-flock" style="color: #999; font-weight: bold;" target="_new" title="Flock Browser">Flock Browser</a></div>
<p><!-- technorati tags begin -->
<p style="font-size:10px;text-align:right;">Tags: <a href="http://technorati.com/tag/iphoneegg" rel="tag">iphoneegg</a></p>
<p><!-- technorati tags end --></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mjava.ch/2008/08/14/the-real-thing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert mp3 to m4b -&gt; Audiobooks</title>
		<link>http://blog.mjava.ch/2008/08/10/convert-mp3-to-m4b-audiobooks/</link>
		<comments>http://blog.mjava.ch/2008/08/10/convert-mp3-to-m4b-audiobooks/#comments</comments>
		<pubDate>Sun, 10 Aug 2008 09:34:40 +0000</pubDate>
		<dc:creator>mjava</dc:creator>
				<category><![CDATA[Nicht kategorisiert]]></category>

		<guid isPermaLink="false">http://blog.mjava.ch/2008/08/10/convert-mp3-to-m4b-audiobooks/</guid>
		<description><![CDATA[There are a lot of tools available to convert mp3 files into m4b files, the
format for audiobooks on the iPods/iPhones.
However, I stille like to do it on the cmd-line. Its clean and fast. You just need to
have mpg123 and faac installed:
mpg123 -s input.mp3 &#124; faac -b 80 -P -X -w -o output.m4b -
If you want [...]]]></description>
			<content:encoded><![CDATA[<p>There are a lot of tools available to convert mp3 files into m4b files, the<br />
format for audiobooks on the iPods/iPhones.</p>
<p>However, I stille like to do it on the cmd-line. Its clean and fast. You just need to<br />
have <span style="font-style: italic;">mpg123</span> and <span style="font-style: italic;">faac </span>installed:</p>
<p><code>mpg123 -s input.mp3 | faac -b 80 -P -X -w -o output.m4b -</code><br />
If you want to convert a whole directory of mp3 files, as it is the common desire, here<br />
is the onliner:<br />
<code>for i in $(ls *mp3);&nbsp; do mpg123 -s $i | faac -b 80 -P -X -w -o ${i%mp3}m4b -; done</code></p>
<p>You can find this cmd-lines also in my <a href="http://wiki.mjava.ch/index.php/Audiobook">wiki.</a></p>
<p><a href="http://wiki.mjava.ch/index.php/Audiobook"><img alt="The image â€œhttp://wiki.mjava.ch/skins/common/images/wiki.pngâ€ cannot be displayed, because it contains errors." src="http://wiki.mjava.ch/skins/common/images/wiki.png" /></a>
<div class="flockcredit" style="text-align: right; color: #CCC; font-size: x-small;">Blogged with the <a href="http://www.flock.com/blogged-with-flock" style="color: #999; font-weight: bold;" target="_new" title="Flock Browser">Flock Browser</a></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.mjava.ch/2008/08/10/convert-mp3-to-m4b-audiobooks/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Search my Blog and my Wiki via yubnub</title>
		<link>http://blog.mjava.ch/2008/08/06/search-my-blog-and-my-wiki-via-yubnub/</link>
		<comments>http://blog.mjava.ch/2008/08/06/search-my-blog-and-my-wiki-via-yubnub/#comments</comments>
		<pubDate>Wed, 06 Aug 2008 18:33:36 +0000</pubDate>
		<dc:creator>mjava</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[cmd-lines]]></category>

		<guid isPermaLink="false">http://blog.mjava.ch/2008/08/06/search-my-blog-and-my-wiki-via-yubnub/</guid>
		<description><![CDATA[I created&#160; 2 yubnub search commands:
&#8216;lsw word&#8216; searches on my wiki for word
&#8216;lsb word&#8217; searches on my blog for word

&#160;
Blogged with the Flock Browser
]]></description>
			<content:encoded><![CDATA[<p>I created&nbsp; 2 yubnub search commands:<br />
&#8216;lsw <span style="font-style: italic;">word</span>&#8216; searches on my wiki for <span style="font-style: italic;">word<br />
&#8216;</span>lsb<span style="font-style: italic;"> word&#8217; </span>searches on my blog for <span style="font-style: italic;">word<br />
</span><br />
&nbsp;<a href="http://yubnub.org"><img alt="Yubnub" src="http://yubnub.org/images/yubnub.png" /></a></p>
<div class="flockcredit" style="text-align: right; color: #CCC; font-size: x-small;">Blogged with the <a href="http://www.flock.com/blogged-with-flock" style="color: #999; font-weight: bold;" target="_new" title="Flock Browser">Flock Browser</a></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.mjava.ch/2008/08/06/search-my-blog-and-my-wiki-via-yubnub/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[game] Challenging the akinator</title>
		<link>http://blog.mjava.ch/2008/08/05/game-challenging-the-akinator/</link>
		<comments>http://blog.mjava.ch/2008/08/05/game-challenging-the-akinator/#comments</comments>
		<pubDate>Tue, 05 Aug 2008 06:17:15 +0000</pubDate>
		<dc:creator>mjava</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://blog.mjava.ch/2008/08/05/game-challenging-the-akinator/</guid>
		<description><![CDATA[Stumbled about the http://www.devinettor.com/. A genie is guessing what character
you are thinking of. must be interesting programming logic behind it. 

Have fun!
Blogged with the Flock Browser

Tags: akinatorgame ai

]]></description>
			<content:encoded><![CDATA[<p>Stumbled about the <a href="http://www.devinettor.com/">http://www.devinettor.com/</a>. A genie is guessing what character<br />
you are thinking of. must be interesting programming logic behind it. </p>
<p><img style="width: 187px; height: 182px;" src="http://www.devinettor.com/imgs/attitudes/akinator_1_defi.png" /><br />
Have fun!
<div class="flockcredit" style="text-align: right; color: #CCC; font-size: x-small;">Blogged with the <a href="http://www.flock.com/blogged-with-flock" style="color: #999; font-weight: bold;" target="_new" title="Flock Browser">Flock Browser</a></div>
<p><!-- technorati tags begin -->
<p style="font-size:10px;text-align:right;">Tags: <a href="http://technorati.com/tag/akinatorgame%20ai" rel="tag">akinatorgame ai</a></p>
<p><!-- technorati tags end --></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mjava.ch/2008/08/05/game-challenging-the-akinator/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

