<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>Tal Leming</title>
	<link>http://talleming.com</link>
	<description>Tal's Blog</description>
	<pubDate>Wed, 16 Apr 2008 14:57:04 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.2</generator>
	<language>en</language>
			<item>
		<title>Fraction Fever</title>
		<link>http://talleming.com/2008/04/16/fraction-fever/</link>
		<comments>http://talleming.com/2008/04/16/fraction-fever/#comments</comments>
		<pubDate>Wed, 16 Apr 2008 14:57:02 +0000</pubDate>
		<dc:creator>tal</dc:creator>
		
		<category><![CDATA[OpenType]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Type Design]]></category>

		<guid isPermaLink="false">http://talleming.com/2008/04/16/fraction-fever/</guid>
		<description><![CDATA[I&#8217;ve never liked the way fraction feature is usually implemented in OpenType fonts. I thought I was the only person until Kent Lew wrote to me with the same frustration. We talked about it a bit and I worked up a possible solution. Here goes&#8230;

The Current Situation

The standard fraction feature algorithm works like this:


Convert all [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve never liked the way fraction feature is usually implemented in OpenType fonts. I thought I was the only person until <a href="http://kentlew.com">Kent Lew</a> wrote to me with the same frustration. We talked about it a bit and I worked up a possible solution. Here goes&#8230;</p>

<h3>The Current Situation</h3>

<p>The standard fraction feature algorithm works like this:</p>

<ol>
<li>Convert all numbers in the string to numerators.</li>
<li>Starting at the beginning of the string, convert any numerator following a slash or a denominator to a denominator.</li>
<li>Convert all instances of a slash to a fraction bar.</li>
</ol>

<p>This works perfectly well from a programming standpoint, but from a user standpoint it is cumbersome. The user is required to select the precise text to which to apply fractions. This is a lot of work in practice. For example, it requires nine (9!) steps for the designer to set fractions in this simple list of ingredients.</p>

<p><img src="http://talleming.com/wp-content/uploads/2008/04/fractionsold-1.png" alt="1" /></p>

<p>Select &#8220;1/2&#8221;</p>

<p><img src="http://talleming.com/wp-content/uploads/2008/04/fractionsold-2.png" alt="2" /></p>

<p>Activate the fractions feature.</p>

<p><img src="http://talleming.com/wp-content/uploads/2008/04/fractionsold-3.png" alt="3" /></p>

<p>Select &#8220;1/4&#8221;</p>

<p><img src="http://talleming.com/wp-content/uploads/2008/04/fractionsold-4.png" alt="4" /></p>

<p>Activate the fractions feature.</p>

<p><img src="http://talleming.com/wp-content/uploads/2008/04/fractionsold-5.png" alt="5" /></p>

<p>Select &#8220;7/8&#8221;</p>

<p><img src="http://talleming.com/wp-content/uploads/2008/04/fractionsold-6.png" alt="6" /></p>

<p>Activate the fractions feature.</p>

<p><img src="http://talleming.com/wp-content/uploads/2008/04/fractionsold-7.png" alt="7" /></p>

<p>Select &#8220;1/3&#8221;</p>

<p><img src="http://talleming.com/wp-content/uploads/2008/04/fractionsold-8.png" alt="8" /></p>

<p>Activate the fractions feature.</p>

<p><img src="http://talleming.com/wp-content/uploads/2008/04/fractionsold-9.png" alt="9" /></p>

<p>Remove the spaces.</p>

<p><img src="http://talleming.com/wp-content/uploads/2008/04/fractionsold-10.png" alt="10" /></p>

<p>That is a <strong>lot</strong> of work. Now think about doing that in a 150 page cookbook.</p>

<h3>A Possible Solution</h3>

<p>So, what can be done? I kicked around the idea and came up with this algorithm:</p>

<ol>
<li>Convert every instance of a slash preceded and followed by a figure to a fraction bar.</li>
<li>For every found fraction bar or numerator, look back one glyph. If the found glyph is a figure, convert it to a numerator. Do this for the 10 glyphs preceding the fraction bar until a non-figure is encountered.</li>
<li>For every glyph following a fraction bar or a denominator, if the glyph is a figure, convert it to a denominator. Do this until a non-figure is encountered.</li>
<li>Convert every space preceded by a figure and followed by a numerator to a thin space.</li>
</ol>

<p>In code it looks like this:</p>

<pre>
@figures = [
    zero
    one
    two
    three
    four
    five
    six
    seven
    eight
    nine
];
@numerators = [
    zero.numerator
    one.numerator
    two.numerator
    three.numerator
    four.numerator
    five.numerator
    six.numerator
    seven.numerator
    eight.numerator
    nine.numerator
];
@denominators = [
    zero.denominator
    one.denominator
    two.denominator
    three.denominator
    four.denominator
    five.denominator
    six.denominator
    seven.denominator
    eight.denominator
nine.denominator
];

feature frac {
    sub @figures slash' @figures by fraction;

    lookup Numerator_1 {
        sub @figures'
        fraction by @numerators;
    } Numerator_1;

    lookup Numerator_2 {
        sub @figures'
        @numerators
        fraction by @numerators;
    } Numerator_2;

    lookup Numerator_3 {
        sub @figures'
        @numerators
        @numerators
        fraction by @numerators;
    } Numerator_3;

    lookup Numerator_4 {
        sub @figures'
        @numerators
        @numerators
        @numerators
        fraction by @numerators;
    } Numerator_4;

    lookup Numerator_5 {
        sub @figures'
        @numerators
        @numerators
        @numerators
        @numerators
        fraction by @numerators;
    } Numerator_5;

    lookup Numerator_6 {
        sub @figures'
        @numerators
        @numerators
        @numerators
        @numerators
        @numerators
        fraction by @numerators;
    } Numerator_6;

    lookup Numerator_7 {
        sub @figures'
        @numerators
        @numerators
        @numerators
        @numerators
        @numerators
        @numerators
        fraction by @numerators;
    } Numerator_7;

    lookup Numerator_8 {
        sub @figures'
        @numerators
        @numerators
        @numerators
        @numerators
        @numerators
        @numerators
        @numerators
        fraction by @numerators;
    } Numerator_8;

    lookup Numerator_9 {
        sub @figures'
        @numerators
        @numerators
        @numerators
        @numerators
        @numerators
        @numerators
        @numerators
        @numerators
        fraction by @numerators;
    } Numerator_9;

    lookup Numerator_10 {
        sub @figures'
        @numerators
        @numerators
        @numerators
        @numerators
        @numerators
        @numerators
        @numerators
        @numerators
        @numerators
        fraction by @numerators;
    } Numerator_10;

    lookup Denominator {
        sub [fraction @denominators]
        @figures' by @denominators;
    } Denominator;

    sub @figures space' @numerators by thinspace;
} frac;
</pre>

<p>How many steps does this require the user to perform? Two (2!). Actually, it could be less than two because they could activate fractions in their style sheet definition. In that case it would require them to perform zero (0!!!) steps to apply the fraction feature. In any case, here are the two steps:</p>

<p>Select all of the text.</p>

<p><img src="http://talleming.com/wp-content/uploads/2008/04/fractionsnew-2.png" alt="1" /></p>

<p>Activate the fractions feature.</p>

<p><img src="http://talleming.com/wp-content/uploads/2008/04/fractionsnew-3.png" alt="2" /></p>

<p>Done.</p>

<h3>But</h3>

<p>There are some drawbacks. This is what Kent and I have come up with so far:</p>

<ol>
<li>This only works with fractions that have 10 or fewer numerators. In reality, is this an issue? I&#8217;m not certain, but it doesn&#8217;t seem likely. In any case, this could probably be extended to 20 numerators. I stopped at 10 to avoid the dreaded table overflow issue.</li>
<li>It requires a non-figure to act as an indication of the leading edge of the fraction. In this case I used the space. This won&#8217;t work for fractions formatted as &#8220;21/2&#8221; to represent 2 and one-half. Are fractions ever formatted this way? Maybe, maybe not.</li>
<li>If the user uses a font that implements this type of fraction feature and then switches to a font that implements an older style fraction feature, things will be broken. Any instances of this problem should be very visible to the user and manual intervention will solve it.</li>
<li>The common date format 04/16/08 will be considered a fraction and formatted as such. The user could simply turn off fractions in this text.</li>
<li>It isn&#8217;t what users are used to. This could be a legitimate issue, but if a user uses it in the way that they have been using the old fraction feature it will work properly.</li>
</ol>

<p>That said, there are some clear advantages:</p>

<ol>
<li>It makes much more sense from a user point of view. We are in the age of the &#8220;smart&#8221; OpenType font. We now make fonts that automatically insert  <a href="http://www.houseind.com/index.php?page=showfont&amp;id=150&amp;subpage=ed_features">ligatures</a> and <a href="http://store1.adobe.com/cfusion/store/html/index.cfm?store=OLS-US&amp;event=displayFontPackage&amp;code=1736">swashes</a>, and users have come to expect this behavior. It seems that fractions should work the same way. I don&#8217;t think it would be a good idea for a user to activate fractions at all times, but this should make it much easier for users to apply the fraction feature to lots of text with a broad stroke.</li>
<li>This new algorithm preserves the space separating the integer and the fraction. This makes it far more usable in situations when this text needs to be sent to a feature-less environment, for example searching a PDF. If the user searches for &#8220;1 1/4&#8221; the appropriate result will be found. Using the old algorithm, plus the space removal mentioned above, the user would have to search for &#8220;11/4&#8221;. That looks like &#8220;eleven fourths&#8221; not &#8220;one and one fourth.&#8221;</li>
</ol>

<p>I don&#8217;t think the potential problems outweigh the benefits for the user, but they should be taken into consideration. I tend to think in terms of &#8220;most case scenario&#8221; rather than &#8220;worst case scenario.&#8221; This algorithm isn&#8217;t perfect and it will fail 1% of the time. However, I think that 99% of the time it will work infinitely better than what users are used to.</p>

<h3>Now What?</h3>

<p>I haven&#8217;t actually deployed this in a font yet, but I&#8217;m going to give it some thought next time I write a fraction feature. Feel free to use this if you want to. If you do, please let me know how it works out.</p>
]]></content:encoded>
			<wfw:commentRss>http://talleming.com/2008/04/16/fraction-fever/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ten Flags Inn</title>
		<link>http://talleming.com/2008/04/15/ten-flags-inn/</link>
		<comments>http://talleming.com/2008/04/15/ten-flags-inn/#comments</comments>
		<pubDate>Tue, 15 Apr 2008 15:21:11 +0000</pubDate>
		<dc:creator>tal</dc:creator>
		
		<category><![CDATA[Signs]]></category>

		<category><![CDATA[Photos]]></category>

		<category><![CDATA[Lettering]]></category>

		<guid isPermaLink="false">http://talleming.com/2008/04/15/ten-flags-inn/</guid>
		<description><![CDATA[

As a child, I was fascinated by this sign. It was located along the route my family would take into Baton Rouge and I remember sitting in the backseat of our car with my face pressed against the window eagerly waiting to see it. I think this was the first time I ever paid attention [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://talleming.com/wp-content/uploads/2008/04/tenflagsinn.jpg" alt="Ten Flags Inn" /></p>

<p>As a child, I was fascinated by this sign. It was located along the route my family would take into Baton Rouge and I remember sitting in the backseat of our car with my face pressed against the window eagerly waiting to see it. I think this was the first time I ever paid attention to the way letters looked. This sign isn&#8217;t perfect, but it is still my favorite.</p>

<p><em>(Wow. It sure has been a long time since I posted anything. I have been more than busy&#8230;)</em></p>
]]></content:encoded>
			<wfw:commentRss>http://talleming.com/2008/04/15/ten-flags-inn/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Signs In My Neighborhood</title>
		<link>http://talleming.com/2007/09/29/signs-in-my-neighborhood/</link>
		<comments>http://talleming.com/2007/09/29/signs-in-my-neighborhood/#comments</comments>
		<pubDate>Sat, 29 Sep 2007 17:50:18 +0000</pubDate>
		<dc:creator>tal</dc:creator>
		
		<category><![CDATA[Signs]]></category>

		<category><![CDATA[Photos]]></category>

		<category><![CDATA[Lettering]]></category>

		<guid isPermaLink="false">http://talleming.com/2007/09/29/signs-in-my-neighborhood/</guid>
		<description><![CDATA[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&#8217;m a lettering nerd, so I usually take photos of signs. Luckily, my neighborhood is full of old, beautiful and/or weird specimens.





Most of the sign aficionados I [...]]]></description>
			<content:encoded><![CDATA[<p>My friend <a href="http://tugboatcaptain.blogspot.com">Dave Hotstream</a> 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&#8217;m a lettering nerd, so I usually take photos of signs. Luckily, my neighborhood is full of old, beautiful and/or weird specimens.</p>

<p><img src="http://talleming.com/wp-content/uploads/2007/09/tvandradio1.jpg" alt="Electronic tubes." />
<img src="http://talleming.com/wp-content/uploads/2007/09/lottery.jpg" alt="The swash makes no sense." />
<img src="http://talleming.com/wp-content/uploads/2007/09/colonial.jpg" alt="Why is &quot;Bar&quot; highlighted?" /></p>

<p>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&#8217;m still kind of obsessed with these things.</p>

<p><img src="http://talleming.com/wp-content/uploads/2007/09/miegon.jpg" alt="Check out that ampersand." />
<img src="http://talleming.com/wp-content/uploads/2007/09/taxidermist.jpg" alt="Crabs!?" /></p>

<p>I adore &#8220;boring&#8221; signs like these two. They don&#8217;t need fancy swashes or anything like that to get the job done.</p>

<p><img src="http://talleming.com/wp-content/uploads/2007/09/tochterman.jpg" alt="Go fish." /></p>

<p>I suppose it&#8217;s not surprising that this place is near the taxidermist.</p>

<p><img src="http://talleming.com/wp-content/uploads/2007/09/buildingassociation.jpg" alt="1913-1917" />
<img src="http://talleming.com/wp-content/uploads/2007/09/934.jpg" alt="4 FTW!" /></p>

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

<p><img src="http://talleming.com/wp-content/uploads/2007/09/estetiga.jpg" alt="It's another dimension." /></p>

<p>The ligature and the super thin parentheses on this one are stellar.</p>

<p><img src="http://talleming.com/wp-content/uploads/2007/09/centro.jpg" alt="This is weird." /></p>

<p>This place is covered in lettering like this. It&#8217;s crazy.</p>

<p><img src="http://talleming.com/wp-content/uploads/2007/09/kleinbros.jpg" alt="If you have to ask, you don't need to know." /></p>

<p>&#8220;Klein Bros.&#8221; That&#8217;s all it says. No &#8220;Hardware Store&#8221; or &#8220;Attorney at Law&#8221; or &#8220;Pet Hotel&#8221;. Thus, I have no idea what the Klein brothers do.</p>

<p><img src="http://talleming.com/wp-content/uploads/2007/09/youthassn.jpg" alt="Nice afii10029." /></p>

<p>Nice afii10029.</p>
]]></content:encoded>
			<wfw:commentRss>http://talleming.com/2007/09/29/signs-in-my-neighborhood/feed/</wfw:commentRss>
		</item>
		<item>
		<title>FeatureProof Beta 1</title>
		<link>http://talleming.com/2007/09/21/featureproof-beta-1/</link>
		<comments>http://talleming.com/2007/09/21/featureproof-beta-1/#comments</comments>
		<pubDate>Fri, 21 Sep 2007 12:20:07 +0000</pubDate>
		<dc:creator>tal</dc:creator>
		
		<category><![CDATA[OpenType]]></category>

		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://talleming.com/2007/09/21/featureproof-beta-1/</guid>
		<description><![CDATA[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&#8217;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 [...]]]></description>
			<content:encoded><![CDATA[<p>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.</p>

<p>I&#8217;ve been thinking about this tool since TypoTechnica 2005. During a round table discussion at that conference, <a href="http://letterror.com">Erik van Blokland</a> 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.</p>

<p>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.</p>

<p>You can download the application over at <a href="http://code.typesupply.com/wiki/FeatureProof">code.typesupply.com</a>. There is a good bit of documentation there as well.</p>

<p>This is a beta release, so I would appreciate any bug reports.</p>
]]></content:encoded>
			<wfw:commentRss>http://talleming.com/2007/09/21/featureproof-beta-1/feed/</wfw:commentRss>
		</item>
		<item>
		<title>code.typesupply.com</title>
		<link>http://talleming.com/2007/09/21/codetypesupplycom/</link>
		<comments>http://talleming.com/2007/09/21/codetypesupplycom/#comments</comments>
		<pubDate>Fri, 21 Sep 2007 12:13:09 +0000</pubDate>
		<dc:creator>tal</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Announcements]]></category>

		<guid isPermaLink="false">http://talleming.com/2007/09/21/codetypesupplycom/</guid>
		<description><![CDATA[I&#8217;m happy to announce that I&#8217;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 [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m happy to announce that I&#8217;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.</p>

<p>Why am I doing this? I really care about type design. It is what I love. I don&#8217;t just love doing it myself, I love seeing other people produce excellent typefaces. So, hopefully this will help people do good work.</p>

<p>The code is housed at <a href="http://code.typesupply.com">code.typesupply.com</a>.</p>

<p>Enjoy.</p>
]]></content:encoded>
			<wfw:commentRss>http://talleming.com/2007/09/21/codetypesupplycom/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Type Supply Website (The Making of)</title>
		<link>http://talleming.com/2007/09/10/type-supply-website-the-making-of/</link>
		<comments>http://talleming.com/2007/09/10/type-supply-website-the-making-of/#comments</comments>
		<pubDate>Tue, 11 Sep 2007 03:36:44 +0000</pubDate>
		<dc:creator>tal</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Graphic Design]]></category>

		<guid isPermaLink="false">http://talleming.com/2007/09/10/type-supply-website-the-making-of/</guid>
		<description><![CDATA[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, [...]]]></description>
			<content:encoded><![CDATA[<p>I recently launched a <a href="http://typesupply.com">new site</a> 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: <strong>The Making of the Type Supply Website (2007 Edition).</strong></p>

<h3>Design</h3>

<p>My background is in print, but I&#8217;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&#8217;ve never been able to express why until recently. <a href="http://subtraction.com">Khoi Vinh</a> articulated it perfectly <a href="http://www.subtraction.com/archives/2007/0816_this_way_to_.php">a few weeks ago</a>:</p>

<blockquote>
  <p>on the Web, design is not a method for implementing narrative</p>
</blockquote>

<p>Exactly! I don&#8217;t have any problem dealing with the new interaction behaviors that the web has brought forth. I struggle with the fact that <em>telling stories</em> 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&#8217;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&#8217;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&#8217;t think what I settled on is groundbreaking, but I think it gets across who I am. I hope it does anyway. Please don&#8217;t tell me if it doesn&#8217;t.</p>

<h3>Django</h3>

<p>The earlier versions of my site consisted of static HTML that was either written by hand or generated with <a href="http://corbon.sourceforge.net">Corbon</a>. That sucked. Several years ago I handled the design side of a big PHP/PostgreSQL based website. I know it&#8217;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.</p>

<p>I&#8217;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&#8217;ve been monitoring a few Python based web frameworks over the last couple of years. <a href="http://djangoproject.com">Django</a>, <a href="http://turbogears.org">TurboGears</a>, <a href="http://webpy.org">web.py</a>, 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&#8217;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&#8217;m a little bit of a perfectionist that way.</p>

<p>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&#8217;s like arguing which ice cream flavor is better: vanilla or chocolate? I don&#8217;t care. I&#8217;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&#8217;m using a handful of filters to process all of my text. My text is stored in the database in <a href="http://daringfireball.net/projects/markdown">Markdown</a> syntax. The text is pushed through the Markdown filter and then through the excellent <a href="http://code.google.com/p/typogrify">Typogrify</a>. Thus, my text is stored as plain text, <strong>not</strong> HTML, but I get nicely formatted HTML without doing any hard work.</p>

<p>On and on and on. You get the idea. I &hearts; Django!</p>

<h3>MochiKit</h3>

<p>Up to this point I had never written any JavaScript. Not even a single <code>alert("Hello World!")</code> line. I always thought that I would hate it, but I was pleasantly surprised to learn that I don&#8217;t. It&#8217;s not Python, which I adore, but it isn&#8217;t bad. I wanted some simple effects on my site, fades between images, an <a href="http://typesupply.com/portfolio/typefaces/burbank/lettersetter">interactive LetterSetter interface</a>, etc. I wrote all of these from scratch. Then I wrote them from scratch again. Then I ditched all the code in favor of <a href="http://mochikit.org">MochiKit</a>. Yay MochiKit!</p>

<h3>Coda</h3>

<p>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 <a href="http://panic.com/coda">Coda</a>. Coda made me <strong>want</strong> 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. <a href="http://daringfireball.net">John Gruber</a> wrote a <a href="http://daringfireball.net/2007/04/coda">thorough review</a> of Coda that explains why it is so good. I do have one minor gripe: compiled Python files show up the file browser. <em>Argh! My eyes!</em> I reported this to Panic. Other than that, I&#8217;m really happy with the application.</p>

<h3>HTML &amp; CSS</h3>

<p>All together now: <em>typography on the web sucks!</em> I&#8217;d write more on this, but I think the dead horse has been flogged enough.</p>

<p>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 <a href="http://webkit.org">WebKit</a>. I tried the rounded corner support in Firefox and Camino, but images inside the rounded elements were not properly clipped. Sorry Firefox.</p>

<h3>The End</h3>

<p>I think that&#8217;s it. I don&#8217;t develop websites very often, and it in the past it was torturous, but this was fun. I hope people like the result.</p>
]]></content:encoded>
			<wfw:commentRss>http://talleming.com/2007/09/10/type-supply-website-the-making-of/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Hello World.</title>
		<link>http://talleming.com/2007/09/07/hello-world/</link>
		<comments>http://talleming.com/2007/09/07/hello-world/#comments</comments>
		<pubDate>Fri, 07 Sep 2007 15:04:44 +0000</pubDate>
		<dc:creator>tal</dc:creator>
		
		<category><![CDATA[Announcements]]></category>

		<guid isPermaLink="false">http://talleming.com/2007/09/07/hello-world/</guid>
		<description><![CDATA[With the launch of the new Type Supply website I&#8217;ve decided to turn this site into a blog. Yes, I&#8217;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 [...]]]></description>
			<content:encoded><![CDATA[<p>With the launch of the new <a href="http://typesupply.com">Type Supply website</a> I&#8217;ve decided to turn this site into a blog. Yes, I&#8217;m finally jumping into the year 2001.</p>

<p>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&#8217;ll find it interesting.</p>
]]></content:encoded>
			<wfw:commentRss>http://talleming.com/2007/09/07/hello-world/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
