Jan 15, 2012
Getting the latest version of Blender in Ubuntu
Blender is awesome. Its a free and open-source 3D computer graphics software package used for creating animated films, visual effects, interactive 3D applications and/or video games. I have only just...
read more
Jan 14, 2012
Awesome Little-know Ubuntu Applications
There are thousands(ish) of applications on Ubuntu’s Software Centre, and some can be incredibly useful, some really good games, and some which you’d never have thought existed.
Here is a...
read more
Jan 13, 2012
Fixing knackered Seagate Drives
I have written an application to do most of this with a rather special USB -> TTL adapter, and would quite happily do this for a bottle of wine for anyone, but here is how I fixed my inlaw’s...
read more
Jan 12, 2012
Installing and Configuring Spideroak Headless
I use Spideroak for all my backups (I’ll dispense with the obligatory referral link) – http://www.spideroak.com and I wanted to use it to back up my VPS I have with CloudNext.
As I use Ubuntu,...
read more
Jan 11, 2012
Batch converting WAV to MP3 with bash and ffmpeg
Here’s a quickie to loop through files and convert them to MP3s:
#!/bin/sh
for i in *.wav; do
if [ -e "$i" ]; then
file=`basename "$i" .wav`
ffmpeg -i "$i" "$file.mp3"
...
read more
popular articles
random articles
