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.
Author: Marc Olivier Meunier
Marc has spent the past few years putting oil on the fire of growth companies. He leads by example and puts a lot of emphasis on inclusion, constantly working to create a safe environment. A warm leader with a passion for memorable experiences and innovation.
Marc is available for contracting as a fractional Head of Customer Experience.
Find Marc on Linkedin
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.
Reading Time: < 1 minuteThanks to the power of lsof:
lsof -i -P | grep -i process_lambda
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