Alaska - When do you have to remove studded snow tires?

If you live in Alaska, when do you have to remove studded snow tires? Information from alaska.gov.

Dick Van Dyke Show - Stacey sleepwalking

Coming from a family of sleepwalkers, this is funny.

Paraprosdokians

From an email today:

Hello Peter, this is me ...

Hello Peter, this is me ... your father ... Walter Bishop. (From the tv series, Fringe.)

Happy Earth Day, 2013

Happy Earth Day, 2013. To celebrate, it's snowing here in Boulder, Colorado.

Bobby Darin - Simple Song of Freedom

I was deeply saddened this past week when our politicians couldn't come to any sort of agreement regarding background checks on people who buy guns, presumably because of the influence of the NRA. As I thought about this again today, I thought about this great song from Bobby Darin:

Gene Roddenberry talks about why Star Trek succeeded

Gene Roddenberry talking about why Star Trek succeeded:

Make sure we have a different Congress

Well said.

Never count on making a good sale (Warren Buffett)

“Never count on making a good sale. Have the purchase price be so attractive that even a mediocre sale gives good results.”

~ Warren Buffett

A Scala Null Object example

A Null Object is an object that extends a base type with a null or neutral behavior. Here’s the Scala version of the Java example Wikipedia uses to demonstrate this:

trait Animal {
  def makeSound()
}

class Dog extends Animal {
  def makeSound() { println("woof") }
}

class NullAnimal extends Animal {
  def makeSound() {}
}

As you can imagine, later in your application you might have some code like this:

Syndicate content