Posted by & filed under Cooking, Photography.

Pizza is one of those things that’s really satisfying to make. I have a crust recipe that I’ve been slowly working on making better, and I think I’m almost there now. To test this theory I decided to make a shrimp and pesto pizza today.

Read more »

Posted by & filed under Cooking.

One of the advantages of moving to where I did is the fact that my closest farmer’s market is now just a little down the street. As a result, getting fresh, local ingredients has become exceptionally easy. One of the more interesting parts has been that there is a fresh seafood vendor in the market, and I’ve been getting seafood every Sunday as my “fancy dinner” base. Last week she suggested trying their halibut, so I decided to make a cream sauce based dish.

Read more »

Posted by & filed under Linux, Raspberry Pi.

I have a Raspberry Pi. They recently announced that the official Raspbian (debian for the raspi) was released. For those that are curious, these are the default installed packages:

(or download the text file)

I originally posted this as a reddit comment, but for those that don’t do reddit, here are some instructions on how to remove all the GUI packages:

On the rpi do the following:

1
2
3
4
pi@raspberrypi ~ $ wget http://bluewavedigital.net/diffPackages.txt
pi@raspberrypi ~ $ sudo dpkg --set-selections < diffPackages.txt
pi@raspberrypi ~ $ sudo apt-get -u dselect-upgrade
pi@raspberrypi ~ $ sudo apt-get autoremove --purge

Note that I did this by hand and just used the diff between what the stock image was vs what I ended up with, so your mileage may vary. Do this at your own risk!

Read more »