January 2010

Snow photos as I promised

A couple of weeks ago I mentioned it started snowing in Vancouver (Surrey). Well I never got around to post some pictures, so here goes. These are from two separate days.

_53W5909.jpg
_53W5923.jpg
_53W5935.jpg

Blog Categories:

My second coffee table book just arrived

Before I show our book, first some background.

We had a couple of issues with the Apple book service. Using iPhoto to create the book is as simple as you can expect it to be. However, usually with simplicity comes a lack of power features. Some layout techniques are just not possible, and your options are quite limited. That being said, it was good enough for my first attempt at creating a coffee table book.

So when the book finally arrived, there were a couple of things that put me off and some things I liked.

    Blog Categories:

    New Photo Blog

    Whenever I feel the need to post an image that I want to comment on, I will do so here. Check back regularly for updates.

    Blog Categories:

    How to remove a file in unix with a leading dash in it's name?

    That was the question I asked myself recently when I had a file called --exclude in the root of my filesystem. These commands all failed:

    rm --exclude
    rm "--exclude"
    rm \-\-exclude
    rm ??exclude

    So I found the solution - so simple it embarrassed me. Just add the full path:

    rm /--exclude

    or tell the command line parser to stop interpreting options:

    rm -- --exclude

    Easy!

    Blog Categories:

    Back to top