MOTD

Message Of The Day

Wed, 29 Sep 2004

05:16 [zork(~/sam/lees-deli-blt)] cat 20040928.txt

Today's Adventure

I set out at lunch today to go somewhere that wasn't Lee's. For some reason I just didn't want it. I wanted something pizza-y. I headed out to the Crocker Galleria on Post (or Sutter depending on which direction you are coming from.) I looked at the San Francisco Soup Company (another big Downtown SF chain) and a few other places. Nothing looked appealing. Walked up Kearny towards North Beach, passed the International Food Court on Bush and Kearny to find a Lee's.

This Lee's had a nice dining room that looked into Belden Alley. Most of the Lee's are just Delis, with no dining space. This one also has a little salad bar.

I got my usual, and noticed that the price wasn't quite the same as the Lee's on Market. This isn't unusual as the Lee's on Market the price fluctuates depending on who makes the sandwich and what time of day it is. After getting my sandwich I also noticed that on the cash register there was a sticker stating that they round all prices to the nearest nickle. No pennies at Lee's. Horray for the abolishment of the penny.

I ended up with pizza for dinner. All and all not bad.

Fri, 24 Sep 2004

03:37 [zork(~/octal/hardware)] cat FPGA.txt

Fully Portugese Goose Assassins

So, thanks to the pongmechanik thing, I came across http://fpga4fun.com, which seems like a good idea. I'm not really impressed with the content of the website itself, but they do have some interesting stuff.

I'd like to get some FPGA stuff to play with, it's definately more convenient than buying a brazillion discrete logic chips, even if the end result won't look quite as cool. Of course, although I'd be able to look down upon the poor PIC-using masses if I had several FPGA projects, FPGAs are still rather pricey for hobbyist usage. And much more importantly, all of the software for programming (or more specifically, the place & route) is proprietary, and although there are some free crippled versions out there, they're all for Windows (I don't yet know how well they'd work with WINE). Now, I do know enough about FPGAs to know why a manufacturer wouldn't want to release the information required to do place and route, but that doesn't mean I'm going to pay hundreds to thousands of dollars for SOFTWARE of all things.

Thu, 23 Sep 2004

21:47 [zork(~/sam/lees-deli-blt)] cat 20040923.txt

Tacos

Today no Lee's. Instead went to the International Food Court thing in the basement at Bush and Belden Place and got tacos. Need to get some filipino food there one day.

Wed, 22 Sep 2004

21:06 [zork(~/sam/lees-deli-blt)] cat 20040922.txt

Different Lee's

I went to the Lee's on New Montgomery today. Much bigger than the one on Market that usually go to. They have a salad bar, chinese food, and some burrito thing going on.

I got my usual. No melted cheese today, but I think they either use better Mayo or more mayo, or some better cheese. Quite tasty.

Tue, 21 Sep 2004

21:52 [zork(~/sam/lees-deli-blt)] cat links.txt

Really Bloggy

It has come to my attention that blogs should have links. So, um here are some:

http://www.sfstation.com/restaurants/lees

http://google.com/search?q=bacon+lettuce+tomato

21:46 [zork(~/sam/lees-deli-blt)] cat 20040921.txt

Today's Sammich

They have topped themselves today at Lee's. Apparently by the time I got in to get my sandwich the Bacon had cooled down. So they heated it up in the microwave. When I asked for my slice of cheese on the sandwich they put the cheese on the BACON IN THE MICROWAVE.

MELTED CHEESE!

This is probably the best so far. An almost hot BLT with melted Cheddar! Also discovered that Lee's has Orangina. Which is probably the best Orange drink in existence. Unfortunately I got the last one in the cooler so hopefully they get restocked daily.

21:46 [zork(~/sam/lees-deli-blt)] cat intro.txt

NEW BLOG

So I moved to SF in January. There were many things I didn't know about. Like where to get good lunches. After I got a job I found via a coworker Lee's Deli. Lee's Deli is great and cheap. There are several in downtown SF making it very convenient.

On their menu they had a BLT for like $3. Whatta lunch deal. They put tons of Bacon on it. It's like super bacon. So at first I would only get it on plain wheat bread. It was a super bacon sandwich, but with the wheat bread it would get mushy.

Then I found out about their other breads. I was on a path of upgrading to the Ultimate Bacon Lettuce Tomato Sammich.

This journal exists to log my journey to BLT nirvana.

Up to this point:

  • Replaced wheat bread with Dutch Crunch roll
  • Added two slices of swiss
  • Removed a slice of swiss, didn't change sandwich much and saves 5 cents
  • Changed swiss to cheddar.

Sat, 18 Sep 2004

02:30 [zork(~/sam/code)] cat python-abuse-1.txt

THINGS THAT HAPPEN

import UserDict,os

class WriteFileCacheDict (UserDict.UserDict):
    def __getitem__ (self, key):
        if not self.data.has_key(key):
            self.data[key] = open (key, 'w+')
        return self.data[key]

class MagicalFileDict (WriteFileCacheDict):
    def __getitem__ (self, key):
        if not self.data.has_key(key):
            d = os.path.dirname(key)
            if not os.path.isdir(d):
                os.makedirs(d)
        return WriteFileCacheDict.__getitem__(self, key)

[zork(~)] cal
[zork(~)] tree
[zork(~)] syndicate.py
[zork(~)] cat README