26.4.09
Will Design for Money
Just found out that I will not be enlisting for National Service for another two months.
Anyone out there looking for a graphic designer/front-end web designer? I can work on a temporary basis up to mid-June this year. I’m based in Singapore but am open to working remotely. Am also able to start immediately.
So, do have a gander at my portfolio and feel free to drop me a line!
Labels: note
2.4.09
Meh
Be advised that today is April 1st in the U.S. (and elsewhere). The pranks I’ve seen so far have, unfortunately, been more annoying/lame than funny.
Labels: note
20.3.09
I Am Writing This Down
In six years, I want to be at a small, close-knit design agency doing work I can be proud of for clients and causes I care about. I will work hard to make this happen.
(You know, I’d like to think this isn’t going to be something I’ll look back on and be all “Dude, what happened?”)
Labels: note
10.3.09
Word
7.2.09
Testify
Am only halfway through season one, but I can already say that The Wire kicks every other cop show’s ass, particularly in its writing.
Labels: note
2.2.09
Things
Have been working on this these past couple of days. The goal is to put up 10, or possibly 15. Also, the about page isn’t done yet.
Labels: note
24.1.09
Say Something Legal
I can’t even begin to say how much I loved Rachel Getting Married. It’s definitely one of the most beautiful films I’ve seen, right up there with Before Sunset and Waitress. (BTW, I’d advise against watching the trailer, if you can help it.)
Labels: note
20.1.09
Fact
14.1.09
Suit Up!
When you watch quite a bit of TV and you see something really good, you just want to tell everyone about it. Well, having just binged watched seasons one and two of How I Met Your Mother, I recommend it wholeheartedly.
Labels: note
19.10.08
Learning? I Doubt.
I am not the author of this comment. (Just saw this while Googling myself on a whim.) Doesn’t look like the work of a bot to me.
Labels: note
5.10.08
Shoe Money Tonight!
TV shows you must like in order for us to be friends:
- My So-Called Life
- Firefly
- Sports Night
- Friday Night Lights
- Battlestar Galactica
- Dexter
- Veronica Mars
- The West Wing
Labels: note
20.6.08
Dear Mozilla
Bumping up the text size in Firefox 3 involves holding Ctrl and scrolling up using the mouse. As in all prior versions of Firefox, I would very much prefer to scroll down.
That is all.
Labels: note
1.6.08
I’m Just Sayin’
30.5.08
Warm and Fuzzy
…or, a list of films that I particularly love:
- Before Sunset
- Waitress
- The American President
- Finding Nemo
- Once
- Juno
- Castaway
- The Terminal
- Serendipity
Labels: note
15.3.08
Hanging Punctuation on the Web
This technique was first developed and implemented by the Russian design firm Art. Lebedev Studio. Strangely, it was never documented.
For a left-aligned text block with two inline quotations, we’d have this HTML…
<p>Sed egestas purus, enim et tique
<span class="l">amet,</span>
<span class="r">“Felis</span>
nisi ut tristique enim!”
Vel faucibus et
<span class="l">enim:</span>
<span class="r">“Et</span>
sem!”</p>
and this CSS…
.l {
margin-right: 0.4em;
}
.r {
margin-left: -0.4em;
}
p {
padding-left: 0.4em;
}
See it in action! (Try bumping up the text size.)
Inline quotation marks occuring at the start of a line will be hung; this is due to the negative left margin of span.r
.
Inline quotation marks not occuring at the start of a line will be unaffected; in such a case, span.l
and span.r
are side by side, and their respective margins will cancel each other out.
The left padding on p
is for IE, which can’t quite get the hang of elements being pulled outside their containing block.
Labels: note