Archiv

Autor Archiv

created new yubnub command: findjar

31. Dezember 2008

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:

mjava Java, cmd-lines

more cmdlines [linux-user only]

20. Oktober 2008

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 Mehr…

mjava cmd-lines, linux

holidays

18. Oktober 2008

aaahhhh, wanna go back, now!

Blogged with the Flock Browser

Tags:

mjava Nicht kategorisiert

fixing the locks in a svn repository

7. September 2008

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 work!

Blogged with the Flock Browser

Tags:

mjava Nicht kategorisiert

My new desk

2. September 2008

just started my new job at imis.ch and got a clean desk ;)

Blogged with the Flock Browser

mjava studying/job/career

Father! (Again!)

19. August 2008

Since today 3:55am, a beautiful daughter joined our family!

Blogged with the Flock Browser

Tags:

mjava Kids, Life

The real Thing

14. August 2008

Blogged with the Flock Browser

Tags:

mjava Life

Convert mp3 to m4b -> Audiobooks

10. August 2008

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 | faac -b 80 -P -X -w -o output.m4b -
If you want to convert a whole directory of mp3 files, as it is the common desire, here
is the onliner:
for i in $(ls *mp3);  do mpg123 -s $i | faac -b 80 -P -X -w -o ${i%mp3}m4b -; done

You can find this cmd-lines also in my wiki.

The image “http://wiki.mjava.ch/skins/common/images/wiki.png” cannot be displayed, because it contains errors.

Blogged with the Flock Browser

mjava Nicht kategorisiert

Search my Blog and my Wiki via yubnub

6. August 2008

I created  2 yubnub search commands:
‘lsw word‘ searches on my wiki for word
lsb word’ searches on my blog for word

 Yubnub

Blogged with the Flock Browser

mjava Web, cmd-lines

[game] Challenging the akinator

5. August 2008

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:

mjava IT, Web