Archive for August, 2007

Various Ruby Learning Links

For reference, a few ruby links.

Poignant Guide to Ruby
A Ruby user guide
Ruby How Tos
Ruby code snippets

Everyone loves it

Say no more….

Powered by ScribeFire.

Linux how to change the file extensions for multiple files in a directory

Where source is old extension and dest is new extension, in terminal type:

for x in *.source; do mv “$x” “${x%.source}.dest”; done

Powered by ScribeFire.

Installing a nice black vista style theme from Ubuntu Studio

Feisty-UbuntuStudioTheme

Instructions on how to install the default UbuntuStudio theme in other Ubuntu distros.

http://www.belutz.net/2007/05/11/installing-ubuntu-studio-theme/

Powered by ScribeFire.