Configure HTC Magic for Data and MMS on ELISA finland network

Reading Time: < 1 minuteI just upgraded my HTC Magic with Android 1.5 from the official release on the HTC website and I was surprised to see that all my settings, sms, contacts and pictures have been erased… So I had to reconfigure everything. Luckily one of my colleague is more persistant than me and got it all sorted.

Netact OSS System Administration licence test

Reading Time: < 1 minuteLast week I passed the Netact OSS 5.x system administration licence test. This test is a bit like some kind of certification.
We were 4 trainers in the room. Everybody failed except me.

Which port is this process listening to?

Reading Time: < 1 minuteThanks to the power of lsof:

lsof -i -P | grep -i process_lambda

Convert a flac file into an mp3 file

Reading Time: < 1 minuteOn Ubuntu, install flac.

#apt-get install flac lame

Put the following script in /usr/bin/ and give it a name (convert_flac.sh or flac2mp3.sh)

#!/bin/bash  
FLAC=$1
MP3="${FLAC%.flac}.mp3"
[ -r "$FLAC" ] || { echo can not read file \"$FLAC\" >&1 ; exit 1 ; } ;
metaflac --export-tags-to=- "$FLAC" | sed 's/=\(.*\)/="\1"/' >tmp.tmp
cat tmp.tmp
. ./tmp.tmp
rm tmp.tmp