You always take the weather with you…

CBC Weather has a different definition of “high” than I do.

Screen Shot 2013-04-16 at 8.59.54 AM

Cho draws Le Guin

I’ve mentioned that I’m a fan of Michael Cho’s work — I like the simple, retro-comic-y style he uses. He recently took a stab at drawing Ursula K. Le Guin, which was interesting to see. I’m not sure that it’s the best likeness that I’ve seen him do, but I do like how he shows off his process.

Uniform lines

I’m playing with my Red Exodus cover today — I’d like to finish a good first version of it. Two things are tricksy. First, getting a certain amount of smoothness of line has taken practice. Oh well; we learn by doing.

The second thing is that I needed to do a bit of research about Soviet military uniforms, which has been harder than I wanted. Even though my story takes place in an alternate-history in which the Soviet Union is still around in 2013, I wanted some amount of accuracy about Anatoly’s uniform. What does an Army captain’s uniform look like, precisely? What insignia indicates “officer” and “captain”? I’m not one of those people who normally pays attention to military uniforms (unless we’re talking about the gold braids on the Star Trek uniforms!) and I’m sure that there’s lingo that would make this search easier; I just don’t know any of that lingo.

Read more

Digital Painting Class

At the beginning of the year, I signed up for a Digital Painting class. As I mentioned, I picked up a Wacom tablet over the holidays and wanted to learn how to use it. The class itself is fairly short — a mere 7 weeks — and the focus has been pretty narrow. Our primary exercise in class has been to create a portrait from photo reference. For my part, there’s been a bunch of stuff that’s new to me. I mean, heck, I’ve never really used Photoshop before January, although I’ve done very basic image manipulation with Gimp.

So. New tablet. New Photoshop. Recall that the very first thing I drew with my tablet looked like this:

Read more

More on comic book lettering

I’m continuing to practice different things related to constructing comics. As a simple lettering exercise, I decided to re-letter my final assignment from my cartooning programme.

In this case, I’m retaining the original hand-drawn caption boxes, but I’ve whited-out the original uneven hand-lettering and plopped in some new lettering. I’m using a 12pt font — specifically a font called Digital Strip by Blambot. 12pt is closest in height to the original hand lettering. (To be clear: that’s 12pt on the original art size of 11″ x 17″) I’m also using a bit of Engravers MT on page 4. In almost all cases, the computer lettering is more compact than my hand lettering, so the caption boxes are sometimes a bit empty-seeming.

There are things about Illustrator that I find irritating and more complex than necessary. Like, why do I use different tools to add path points and remove path points? Inkscape feels ever so much better at this to me. But whatever. A tool’s a tool.

Read more

Oh Ty…

Your naiveté is so quaint.

Do you remember that part in “Letter from Birmingham Jail” where Dr. King talks about the difference between “negative peace” (the absence of tension) and “positive peace” (the presence of justice)?

That Wednesday Thing

www_wednesdays42What am I reading now?

I’m currently reading a book about the CIA called The Master of Disguise by Antonio J. Mendez. It’s a non-fiction biography. It’s okay, but not riveting.

Read more

No News is Good News

I’m loving my current class — a drawing course on heads, hands and faces. Over the last four weeks, we’ve been slowly but surely improving our understanding of these body parts.

Thought for the Day

Here’s Scrabble’s dirty little secret: the game is really about maximizing points and space to yield the highest return. Someone who has memorized all the acceptable two-letter words in the formalized dictionary will do much better than someone who knows how to use ‘paletot’ in a sentence. You can forget about neologisms like “eponysterical” or archaic remnants found only in the OED. Scrabble rewards efficiency, memorization and fortune, while remaining ambivalent to creativity, imagination and verve. Maximize property value, minimize artistic expression.

It’s about capitalism, basically.

— Michael Stewart, “Scrabble’s dirty secret”, rabble.ca

Sorting collections in Meteor.js

I was surprised to find that it was trickier than I expected to find a good example of sorting my collection queries in meteor.js. It’s not hard, but the syntax was different than most of the MongoDB examples I was looking at. Here’s a sample format:

Template.myTemplate.gizmos = function () {
  return Gizmos.find({}, {sort: [[ name: "asc" ]]});
};

You can also accomplish the same thing like so:

Template.myTemplate.gizmos = function () {
  return Gizmos.find({}, {sort: { name: 1 }});
};