Andrew Wolverton
Buddhist, Musician, Software Engineer
2013-08-23
Contacts
2013-04-28
Sundays
Sometimes... on Sundays... I'm overwhelmed by an uncontrollable sadness. It feels like the end of a memory I'll never get back.
2013-04-27
Crash
Sometimes when I'm driving I fantasize about being in an accident. I crave the sound of the impact, the smell of the bending, crunching metal and the complete and utter surrender to whatever may come.
I've been in 2 car crashes. In the first I flipped an old SUV on a winter country road, 6 times clockwise and twice end over end before coming to a dead stop upside down in a drought laden creek bed. I woke up several hours later with a concussion and hanging upside down from my seat belt. I had reacted poorly to a dog who decided to run out in front of me on that icy winter night.
In the second I ran into a car going about 45mph t-bone-style when the driver decided to cross 6 lanes of traffic about 10 yards in front of me.
I'm not sure where this fantasy daydream comes from but when I have it, nothing seems more real. In both cases I was completely calm. My heart didn't race. I eased into the slow motion frame rate crash with complete acceptance. My mind was blue-water clear. If I had to make a guess that's probably what I'm looking for. Clarity and acceptance.
2013-01-22
Holding the door
One of the most simple and easily contagious acts of generosity I see is holding the door for someone else. Particularly while entering a shared office space, parking garage, hospital, or the like. One after another the person in front holds the door for the next and it passes on like a virus. There are as many reasons for doing it as there are people who participate so I won't pretend to have some great insight into the human condition here but they all benefit materially, and I'd venture to bet at least one of them feels better about themselves. How do we make this work in other situations?
2013-01-21
Make Believe
2012-09-09
Building Node.js on Raspberry Pi
http://learn.adafruit.com/adafruit-raspberry-pi-educational-linux-distro/occidentalis-v0-dot-2
2. Install build dependenciessudo apt-get install git-core build-essential
3. Get the latest version of Node from github (v0.8.8)git config --global user.email "you@example.com"
git config --global user.name "Your Name"
git clone https://github.com/joyent/node
4. Get these OpenSSL and V8 patchescurl https://github.com/stolsma/node/commit/5bef2b06f480b79bb203191f23d114adcdd9734b.patch | git am
curl https://github.com/stolsma/node/commit/db219e052176e2501158dd4390629531e813594a.patch | git am
curl https://github.com/joyent/node/commit/f8fd9aca8bd01fa7226e1abe75a5bcf903f287ab.patch | git am
curl https://github.com/joyent/node/commit/7142b260c6c299fc9697e6554620be47a6f622a9.patch | git am
5. Build Nodecd node
./configure
make
sudo make install