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
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.
find ./ -name '*.html' -or -name '*.php' \ -print0 | xargs -0 svn propset svn:keywords Id
edit: quick correction, thanks Lukas
virt-install --name=mysql --ram=512 --vcpus=1 \ --file=/dev/mapper/CC-xen--mysql \ --paravirt \ --location=http://rich-desktop/Centos_5/
find . -type f | xargs sed -c -ibak 's/search/replace/'
or
find . -type f | xargs perl -pi~ -e 's/s_show_nofity/s_show_notify/g;'
for i in *.tif; do convert blank320x240.png $i -auto-orient -resize 320x240 \ -colorspace RGB -compose Src -gravity center -composite $i.jpg; done
#find all files under /dir older than 7 days, and delete find /dir -type f -mtime +7 | xargs rm -f #find all files newer than FILE, and delete find /dir -type f -newer /path/to/FILE -exec rm \{\} \; #find all files older than 10 minutes, and print names(print is default) find /dir -type f -mmin +10 -print #find all files newer than 1 day, and tar them to file.tar find /dir -type f -mtime -1 | tar -c -T - -f file.tar

Recent Comments