Archive for June, 2007

links for 2007-06-24

Twitter Updates for 2007-06-23

  • Finally, I have my computer back #
  • Just set my twitter picture #
  • Off to the gym #
  • Actually, never mind. I don’t have time #
  • At Crystal’s party #

Powered by Twitter Tools.

Shell Scripting for the Day

As I occasionally download AVIs to my server and then want to fetch them easily, I wrote this bash function to do it for me easily:

grabavis () {
ssh server ‘ls ‘$1′/*.avi’ | xargs -I {} -n 1 basename {} | xargs -I {} -n 1 scp server:$1/{} Desktop/{}
}

Then, I was having some problems with some of the downloaded files having parentheses in them, thus throwing some errors. Thus, I wrote this:

stripparens () {
mv $1 `echo $1 | sed ’s/[()]//g’`
}

Useful stuff.

Twitter Updates for 2007-06-21

  • Back in LA #

Powered by Twitter Tools.

Twitter Updates for 2007-06-20

  • Sitting in Pierre Trudeau, Montreal’s airport, awaiting my flight to Chicago and then back to LA #

Powered by Twitter Tools.

Twitter Updates for 2007-06-19

  • In Montreal. Pretty nice city #

Powered by Twitter Tools.

Twitter Updates for 2007-06-16

  • In Ottowa. At our concert I messed up the words on my solo - at least my tone was supposedly really good #
  • Gah! I’m in Quebec and I don’t speak a lick of French! #

Powered by Twitter Tools.

links for 2007-06-15

Twitter Updates for 2007-06-14

  • In Toronto #

Powered by Twitter Tools.

Twitter Updates for 2007-06-12

  • In Niagara Falls, Canada…. sweet #

Powered by Twitter Tools.

« Previous PageNext Page »