search
top

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

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

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

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

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
Page 3 of 512345
top