September 29, 2007 12:50 pm

Signs In My Neighborhood

My friend Dave Hotstream has been posting photos of his neighborhood. That inspired me to dust off iPhoto and compile a set of photos of my own neighborhood. I’m a lettering nerd, so I usually take photos of signs. Luckily, my neighborhood is full of old, beautiful and/or weird specimens.

Electronic tubes. The swash makes no sense. Why is "Bar" highlighted?

Most of the sign aficionados I know consider the advent of vacuformed and cut plastic signs to be the beginning of the end. They are probably right, but I’m still kind of obsessed with these things.

Check out that ampersand. Crabs!?

I adore “boring” signs like these two. They don’t need fancy swashes or anything like that to get the job done.

Go fish.

I suppose it’s not surprising that this place is near the taxidermist.

1913-1917 4 FTW!

Some of the building owners seem to have gone out of their way to preserve old signs. They should get a trophy or something.

It's another dimension.

The ligature and the super thin parentheses on this one are stellar.

This is weird.

This place is covered in lettering like this. It’s crazy.

If you have to ask, you don't need to know.

“Klein Bros.” That’s all it says. No “Hardware Store” or “Attorney at Law” or “Pet Hotel”. Thus, I have no idea what the Klein brothers do.

Nice afii10029.

Nice afii10029.

Filed under: Signs, Photos, Lettering
September 21, 2007 7:20 am

FeatureProof Beta 1

Among the avalanche of code I just open sourced is a humble little application called FeatureProof. This application is an environment for testing features in OpenType fonts.

I’ve been thinking about this tool since TypoTechnica 2005. During a round table discussion at that conference, Erik van Blokland and I made the case for a robust tool for testing OpenType features. Specifically, we stated that we felt that there was a huge need for a tool capable of programmatically testing OpenType features. We had been doing this with our other programming work, so it seemed natural that we should be able to do it with our OpenType feature work.

I waited for someone to build such a tool. Nothing happened, so I decided to build it myself. FeatureProof is the result. It allows you to interactively test features and analyze the results, browse the compiled feature data and execute programmatic test cases. It has become indispensable in my work.

You can download the application over at code.typesupply.com. There is a good bit of documentation there as well.

This is a beta release, so I would appreciate any bug reports.

Filed under: OpenType, Programming
7:13 am

code.typesupply.com

I’m happy to announce that I’ve decided to open source a large portion of of my font development code repository. This batch of code includes core libraries for building font development applications, FontLab scripts and one full fledged application. At last count it was around 25,643 lines of Python code.

Why am I doing this? I really care about type design. It is what I love. I don’t just love doing it myself, I love seeing other people produce excellent typefaces. So, hopefully this will help people do good work.

The code is housed at code.typesupply.com.

Enjoy.

Filed under: Programming, Announcements
September 10, 2007 10:36 pm

Type Supply Website (The Making of)

I recently launched a new site for my company. I put a lot of thought and work into it, and a few people have asked me questions about the tools I used, why I did some things the way that I did and stuff like that. I love behind-the-scenes, making-of stories, especially about nerdy stuff, so I present to you: The Making of the Type Supply Website (2007 Edition).

Design

My background is in print, but I’ve designed several websites over the years so designing for the web is not a big change for me. That said, designing for the web has always been a source of minor frustration. I’ve never been able to express why until recently. Khoi Vinh articulated it perfectly a few weeks ago:

on the Web, design is not a method for implementing narrative

Exactly! I don’t have any problem dealing with the new interaction behaviors that the web has brought forth. I struggle with the fact that telling stories is very difficult on the web. I wanted my site to express my personality and get across the passion that I have for what I do. In other words, I wanted to tell the story of my work. I could have just put it all in a paragraph, made a simple image portfolio and been done with it, but that’s not how I do things. After a ton of experimentation, I settled on a fairly informal design with bright colors, lots of images and a casual tone of voice. Each typeface family has it’s own subsection where I can expound on the intricacies of ink swells and still have plenty of room to show big images of the typefaces doing what they do best. I don’t think what I settled on is groundbreaking, but I think it gets across who I am. I hope it does anyway. Please don’t tell me if it doesn’t.

Django

The earlier versions of my site consisted of static HTML that was either written by hand or generated with Corbon. That sucked. Several years ago I handled the design side of a big PHP/PostgreSQL based website. I know it’s a cliché at this point, but working with a dynamic system was an eye opener. When I decided that I wanted to do a big Type Supply site, I knew that it had to be database driven.

I’m fluent in Python. That means that I am legally required to hate PHP. (Kidding!) Thus, I had no interest in dealing with PHP again. I’ve been monitoring a few Python based web frameworks over the last couple of years. Django, TurboGears, web.py, etc. I decided to go with Django. It is a mature framework with an active development community, excellent documentation, a nice Python API and a clean template syntax. I couldn’t be happier with it. I had a working version of my site up and running within a few days. Sure, I rewrote it two times after that, but I’m a little bit of a perfectionist that way.

One of the great things about Django is its template system. Granted, some people argue for other template systems, but I think they are really starting to split hairs on this. It’s like arguing which ice cream flavor is better: vanilla or chocolate? I don’t care. I’m just happy that I have ice cream. Anyway, what was I saying? Oh yeah, the template system. One of the nice things about it is that it is possible to filter data. I’m using a handful of filters to process all of my text. My text is stored in the database in Markdown syntax. The text is pushed through the Markdown filter and then through the excellent Typogrify. Thus, my text is stored as plain text, not HTML, but I get nicely formatted HTML without doing any hard work.

On and on and on. You get the idea. I ♥ Django!

MochiKit

Up to this point I had never written any JavaScript. Not even a single alert("Hello World!") line. I always thought that I would hate it, but I was pleasantly surprised to learn that I don’t. It’s not Python, which I adore, but it isn’t bad. I wanted some simple effects on my site, fades between images, an interactive LetterSetter interface, etc. I wrote all of these from scratch. Then I wrote them from scratch again. Then I ditched all the code in favor of MochiKit. Yay MochiKit!

Coda

One of the things that has kept me away from web development has been my frustration with the tools used to develop sites. It has been a cobbled together mess. Then, along came Coda. Coda made me want to work on a new website. In fact, I had designed my new site a few months before Coda was released. It sat stagnant because the thought of jumping back into the web development whirlwind made me ill. I downloaded Coda the day it was released, licensed it a day or so later and started writing the code for my site. John Gruber wrote a thorough review of Coda that explains why it is so good. I do have one minor gripe: compiled Python files show up the file browser. Argh! My eyes! I reported this to Panic. Other than that, I’m really happy with the application.

HTML & CSS

All together now: typography on the web sucks! I’d write more on this, but I think the dead horse has been flogged enough.

One thing: Safari 3 users get a slightly different design than everyone else. Buttons have rounded corners and main elements have subtle drop shadows. I did all this stuff with the proposed CSS3 attributes that are supported by WebKit. I tried the rounded corner support in Firefox and Camino, but images inside the rounded elements were not properly clipped. Sorry Firefox.

The End

I think that’s it. I don’t develop websites very often, and it in the past it was torturous, but this was fun. I hope people like the result.

Filed under: Programming, Graphic Design
September 7, 2007 10:04 am

Hello World.

With the launch of the new Type Supply website I’ve decided to turn this site into a blog. Yes, I’m finally jumping into the year 2001.

So, here I am. I tend to be shy, secretive about my work and more interested in listening than talking. However, every now and then I do have something to say. I plan on talking about things that I know well: type design, graphic design and type technology. I hope you’ll find it interesting.

Filed under: Announcements