Saturday, August 28, 2010
Is it really too much to ask?

Is it really too much to ask to get some decent pizza in Chicago? I don’t really want to sound like a pizza snob, since I’m not really from NYC or anything, but Chicago pizza is so substandard even when compared to Albany pizza. I have tried maybe 7 different pizza places since I got here, and none of them could hold a candle to NYC pizza.

I was in Manhattan last weekend and walked into a regular hole-in-the-wall on upper east side. It was emotional. I was very close to bursting into tears. I asked the slice, why did I move so far away from you?

Last night I finally walked into Cafe Luigi. I’ve been meaning to check it out because it looked more legit than other Chicago pizza joints. Not only did a slice cost an ungodly $3, it again failed to meet my standards. The sauce out here is way too sweet – is it an American boondocks thing to always strive toward diabetes? The dough almost always tastes like cardboard, with slightly charred odor I could really do pizza without. You can’t possibly screw up cheese and toppings, but man, the sauce and the dough really ruins Chicago pizza. They say it’s in the water – well, isn’t it time some chemists ran the Hudson River water through an HPLC or NMR and came up with a “pizza dough water electrolytes” mix?? I understand it’s important to use those machines to analyze things like antioxidants and paramagnetism, but really people, first things first.

The best pizza I’ve had out here remains D’Agostinos at Addison and Southport. Even these guys fall short of the most plebian NYC joints, but they put good Chicago-style toppings on like Italian Beef.

And don’t even give me that deep-dish crap. That’s not pizza. It’s quiche.

Is it too much to ask? I don’t think so. Learn to make pizza right, Chicago. Throughout history Chicago has been trying to catch up with NYC, and with this problem unsolved, it will always be so far behind.

Thursday, August 26, 2010
Japanese HTML/CSS Tricks

The way we write web pages have not changed in about a decade. HTML and CSS have been pretty much the only front-end languages used for the web, and it’s only recently that they have started to make progress toward the more semantic and intuitive, with initiatives like HTML5 and CSS3.

I have been writing HTML and CSS codes since high school – about 10 years now – and thought I had learned most, if not all, tags and tricks to make my code do what I want. That is, until I was shown an HTML/CSS introductory page for Japanese people. If you can read Japanese, it’s here, still containing a lot of deprecated tags. It reminds me of HTML Goodies years before the emergence of W3C standards.

Anyway, browsing through this page I found two tricks I had never known before – and rightfully so, because they are completely useless if you don’t code Japanese pages.

Trick 1: Vertical write mode

Japanese books, newspapers and other print media are often printed in vertical lines, with the lines moving from right to left. Though they for the most part have abandoned this for web and other screen media, it is possible to replicate this with a CSS styling writing-mode:

1
2
3
4
5
6
7
8
<div style="writing-mode: tb-rl;">
縦書きタグの良いところは、読み物サイトなど、
小説や文章を扱ったホームページで実際に小説を読んでいるような感じで書く事が出来る点です。
ネットスケープにはまだ対応しておりませんが、
いずれ日本のネットの重要なスタイルシートになる事は想像できます。

私のイチオシのスタイルシートです。
</div>

Here’s how the above would look in Internet Explorer:

tategaki

How cool is that!

Trick 2: Furigana

Furigana is a way to clarify the Japanese pronunciation of Kanji, or Chinese characters. While hiragana and katakana are original, phonetic, Japanese characters, they also use Chinese characters extensively (as do Koreans, but we don’t usually write out the words in Chinese characters) in their writing. So they write hiragana pronunciations in tiny letters above the character to tell you how to read it. You would often find this in manga, since most kids would have trouble reading all the kanji in them. It turns out, since the early days of HTML, it had tags for this.

1
2
3
4
5
6
<div style="font-size: 50px;">
     <ruby>
          <rb>鮑</rb>
          <rt>あわび</rt>
     </ruby>
</div>

I made the font large so you can see the effect:

furigana

No separate lines, no tables, just in-line, semantic tags.

There’s also a trick to make your characters display from right to left, which I assume is useful for languages like Hebrew and Arabic, but I don’t know those. Granted, these tricks are so close to being useless, and possibly deprecated. They also only seem to be supported by *GASP* Internet Explorer. Having dealt with Korean clients, I know Asians are very reluctant about changing to a “better” browser like Firefox or Chrome, and I wonder if it has to do with IE’s support for international features like these.

I learned something today in a field I thought I knew everything about! And for the very first time in my life, I said, “way to go, Internet Explorer.”

Friday, August 6, 2010
HappyKorean.com

HappyKorean is a giant project I have been working on for the past four months or so. It is a start-up social networking site for the Korean community in Chicago (although they are open to expansion in the future), and I must say it was a grueling task to create this site from scratch – I delivered all the graphic components, front-end HTML/CSS/Javascript, back-end PHP and MySQL, not to mention the dual-language support requirement, allowing users to toggle between Korean and English at any time.

Here’s my “profile.” You can add people as your “neighbors,” track your “groups,” send messages, winks, and follow blogs.

Page 3 of 1612345678910...Last »