tag feed test

working?

After about two and a half years I am finally nearly there. My collection of 80’s and 90’s half broken equipment may have seen better days, but at least it doesn’t all sound the same.

More updates soon, maybe even with some tunes / drafts.

Nerd list incase anyone is interested:

  • Soundcraft 200B 16ch – mixer
  • Waldorf Q Rack – synth
  • Akai S3000CD – sampler
  • Boss SE50 – multi-fx
  • Behringer Composer Pro – compressor
  • Terratec Phase88 FW – soundcard
  • Behringer BCR2000 – midi controller
  • Akai MFC-42 – analogue filter
Damn those last few dead leads

MIDI guitar

Have been playing with a friends MIDI’d up Godin. It’s a somewhat strange experience to have a guitar making strange sounds from a synth. Definitely something to keep an eye out for if you’re into that kind of thing. Bleeding edge?? guitar tech.

  1. find ./ -name '*.html' -or -name '*.php' \
  2. -print0 | xargs -0 svn propset svn:keywords Id

edit: quick correction, thanks Lukas

  1. virt-install --name=mysql --ram=512 --vcpus=1 \
  2. --file=/dev/mapper/CC-xen--mysql \
  3. --paravirt \
  4. --location=http://rich-desktop/Centos_5/

  1. find . -type f | xargs sed -c -ibak 's/search/replace/'

or
  1. find . -type f | xargs perl -pi~ -e 's/s_show_nofity/s_show_notify/g;'

  1. for i in *.tif;
  2. do convert blank320x240.png $i -auto-orient -resize 320x240 \
  3. -colorspace RGB -compose Src -gravity center -composite $i.jpg;
  4. done

linux find examples

  1. #find all files under /dir older than 7 days, and delete
  2. find /dir -type f -mtime +7 | xargs rm -f
  3. #find all files newer than FILE, and delete
  4. find /dir -type f -newer /path/to/FILE -exec rm \{\} \;
  5. #find all files older than 10 minutes, and print names(print is default)
  6. find /dir -type f -mmin +10 -print
  7. #find all files newer than 1 day, and tar them to file.tar
  8. find /dir -type f -mtime -1 | tar -c -T - -f file.tar