I live in Omaha.
 
Navigation
 
Search
 
Random Image
Hobbs 344.jpg
 
Me. Elsewhere.
 
Archives
 
Darcy
 
Recently Read
 
Things I Like
KDE
 
License
 

I love that feeling…

You know that feeling where you’ve been struggling with understanding something for hours, or days, and then it just pops into place? I love that feeling. I just had that feeling with GTK and libsigc++.

Posted June 22nd, 2007 - Permalink
Categories: Geek - Life

No Comments »
 

One less machine…

Jobs announced that I now need one less machine to do good web development, no more macs for me. Safari On Windows

Posted June 11th, 2007 - Permalink
Categories: Geek
Tags:
No Comments »
 

Gunslinger Girl

So my folks are out of town for a few days and when that happens I tend to get a lot less useful things done, and a lot more enjoyable things I have been waiting to do get, well, enjoyed.

One of those was an anime I got that looked good, ‘Gunslinger Girl’. It was very good. Exceptional art, good story line and extremely compelling characters.

I’m not kidding about the characters, they were amazingly deep for an anime and for only having 240 minutes to develop the 10 of them. I don’t often re-watch anime, but ‘Gunslinger Girl’ is on my list again.

Posted June 8th, 2007 - Permalink
Categories: Consume - Geek
Tags: ,
2 Comments »
 

m4a2mp3

I had some m4a encoded files I wanted in mp3 (don’t judge me) so I cooked up a modified script from one found here, that does the trick.

1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash
#
# m4a2mp3
#
for i in *.m4a; do
  mplayer -vc null -vo null -ao pcm:fast "$i" -ao pcm:file="${i%.m4a}.wav"
done
for i in *.wav; do
  lame -h -V2 --vbr-new "$i" "$(i%.wav}.mp3"
done
 
rm *.wav

Update (06/19/07)
Just a quick note, you can use this to convert any supported audio file by replacing all the m4a with the correct extension. E.G. For flac replace m4a with fla. A nice little vim command for that would be :%s/m4a/fla/g
Update (03/18/08)
I posted a version to go from anything (that mplayer can play) to mp3 without editing the script. Check it out here.
Posted June 4th, 2007 - Permalink
Categories: Geek
Tags: , , , ,
1 Comment »
 

I am a fool….

I cleaned out my /var/www without backing it up. There goes a whole bunch of code I don’t have anywhere else. Including the base of BlowPass 1.0. Hours and hours are now gone.

Update (06/01/07)
Whew! I forgot, I tarred BlowPass 1.0 up earlier. I’m only out about an hour or two of dev work.
Posted June 1st, 2007 - Permalink
Categories: Geek
Tags: ,
No Comments »
 
More Posts
 
Copyright © 2006 - 2010 John Hobbs
get userping