Modern-day weddings

December 6, 2005 at 10:52 pm (PT) in Personal

I never thought I’d say this, but I’ve now been to two wedding receptions where the DJ played “Baby Got Back”. I had no idea that Sir Mix-a-Lot was such a wedding staple.

Mitchell says that almost all the weddings he’s been to have played that. What is wrong with people these days? Well, at least I haven’t heard Nine Inch Nails’ “Closer” yet.

Netflix and the stigma of mediocrity

October 1, 2005 at 7:44 pm (PT) in Rants/Raves

Netflix allows people to rate movies. I remember their rating system once upon a time including a “just okay” choice. Now, however, their options are:

  • 1 star: Hated it
  • 2 stars: Didn’t like it
  • 3 stars: Liked it
  • 4 stars: Really liked it
  • 5 stars: Loved it

There is no room to indicate that a movie is mediocre, that you neither would demand your money back nor would care to watch the movie again. Is this another form of society’s belief that there’s something inherently wrong with being average? It’s like parents who can’t stand the thought of their kids getting C grades in high school.

So, as in high school, the end result is grade inflation. I see a movie that I think is “just okay”. I don’t dislike it, so I give it 3 stars. But then I see a movie that I actually do like, and now that the 3-star rating is cheapened, I have to give it 4 stars. Argh. (And do we really need to distinguish between “really liked it” and “loved it”? Is this really high school?)

Why can’t everyone have Bill McNeal’s attitude? (And yes, he did admit at the end of the episode that being adequate sucks, but it was fun while it lasted.)

Not coincidentally, it’s the time of the year when everyone at VMware writes performance evaluations.

2# umop apisdn

July 16, 2005 at 3:32 pm (PT) in Art

More ambigrams, this time of coworkers’ names:

  • Lisa
  • Walter
  • plangdale/alex. Philip Langdale (whose user ID is “plangdale”) and Alex share an office. Alex has the inner seat. (And thank goodness for Photoshop’s polar distortion filter.)

I’ve discovered that John Langdon is releasing a second edition of his WordPlay book which has a new section about how to create ambigrams. I’m slightly annoyed since I already own the first edition, and it’s signed and personalized, so I can’t exactly sell it or give it away. Well, at least my first edition is a hardcover.

Cubism

July 7, 2005 at 8:47 pm (PT) in Personal

I am such a square that I am now a cube.

Bah.

Late the other night as I was returning alone to my car after watching Batman Begins, I noticed that the car parked next to mine had its lights left on. One of the doors was unlocked, and there was no one around, so I let myself in to turn the lights off.

Almost everyone thinks I’m nuts for doing so. Well, at least I didn’t get myself arrested or shot.

Firefox goodness

June 12, 2005 at 11:18 pm (PT) in Rants/Raves

Cool Firefox extensions I’ve recently discovered:

  • Password Composer (video demo). Generates passwords based on a master password and on the domain name of a website, so you get a unique password for each site without having to remember each one. This is a really slick, simple, and effective solution to my complaint about e-commerce sites requiring accounts. Unlike other password generators, even though it generates strong passwords, they aren’t random, so you always can derive your passwords as needed, even if you don’t have the extension installed. (My friend Lior points out that a weaker, low-tech alternative is simply to incorporate the website name directly into your password, e.g. swordfish_gmail. If you do that, though, you should make it less obvious; perhaps use only every third letter of the site name.)
  • Document Map (screenshot). Creates a nifty, navigatable outline of the current page’s headings in the sidebar. Works really well for wiki-generated pages, WordPress weblogs, and programming reference documents (such as w3.org’s HTML and CSS specs).
  • Web Developer Extension. If I still were attempting to do web development, I’d be all over this. View tag and style hierarchies, make live CSS edits, and more.
  • Keyconfig. Modify Firefox’s keybindings. I can’t count the number of times that I’ve accidentally hit backspace outside of a textbox and lost something I was in the middle of writing.

Another cool trick I discovered was how to run multiple Firefox profiles simultaneously. This can be useful if you want to have separate profiles for web development and for normal browsing and want different sets of extensions installed for each. It’s also useful if you want to try out new extensions and themes without screwing up your default profile. To do this on Windows, make a firefox.cmd script:

@echo off
setlocal
set MOZ_NO_REMOTE=1

:: Adjust the path to firefox.exe as appropriate. start "" "C:\Program Files\Mozilla Firefox\firefox.exe" -p %* endlocal

Create a new profile by running the script with no arguments. Thereafter, you can load that profile by running firefox.cmd profile-name.

Recently in a programming forum I frequent, someone posted some sample code he had written and asked for a critique. He would be providing this code to prospective employers.

If you’re trying to get a job programming, providing sample code is good. However, it’s a little surprising what some people consider to be good sample code.

Your goal should be not only to demonstrate that you can write code, but that you can write maintainable code. Write-once, read-never code is worse than useless; it’s fragile and wastes the time of anyone else who ever tries to modify it.

Quick and easy things you can do to improve your code samples:

  • Make your code readable. More whitespace is better than less. More braces are better than fewer. People judge books by covers; make your code look good.
  • Document your code. Document your functions’ contracts; what are their inputs? what are their outputs?
  • Use defensive programming techniques. Aggressively use assertions to check that inputs are valid. Enforce functions’ contracts.
  • Handle errors. (Okay, this one is neither quick nor easy.) In my opinion, handling errors well is probably one of the hardest things about programming. It complicates resource management, it makes code ugly, it’s tedious, no one wants to do it, but it has to be done. If you’re going to submit sample code, take the time to handle errors. Use SESE patterns in C and RAII patterns in C++. At the very least, use comments to acknowledge where you ignore errors.

(Of course, only do the above if you also intend to continue doing them in practice. Misrepresenting yourself is dishonest, okay?)

Revenge of the Sith impressions

May 28, 2005 at 1:11 pm (PT) in Rants/Raves, Reviews

VMware took us all to see Revenge of the Sith on opening day last week. Woo! Overall I thought it was okay; it was way better than The Phantom Menace and Attack of the Clones, and it could have been a lot worse.

Impressions (spoilers ahead):

(more…)

I am such a sucker for girls wearing glasses.

May 27, 2005 at 11:13 pm (PT) in Personal

Sigh.

Back into Palm OS programming?

April 25, 2005 at 1:10 am (PT) in Personal, Programming

I bought a Treo 650 this week, and it’s awesome. It’s even inspiring me to do some programming for Palm OS again. Unfortunately, getting back into that groove is really hard.

I wrote a lot of great code while I was at Sony, but of course all that code is Sony-owned and outside of my grasp. To do any Palm OS development work again, I’d need to rewrite everything from scratch, which is demotivating because I’d be redoing work that I had done already and—since I’m now rusty at this—work that I had done better. It makes me feel like my life is progressing backwards.