The VERY excellent Perry-Castañeda Map Library

Posted in Illustrator, Photoshop, design, web design on June 18th, 2010 by markcoppock – Be the first to comment

map of TexasMaps and links to maps from I think everywhere. I first used this great library years ago. It still rocks.


Definitely all the Texas maps you’ll ever need. University of Texas Libraries online map DOMINATION.

Compress H.264 in dimensions divisible by 16

Posted in video, web design on May 27th, 2010 by markcoppock – Be the first to comment

For the iPodPhonePad and other mobile devices. Good overview article from the Adobe Developer Connection here (Note the error in their table. See corrected table below).

It’s all about the hardware acceleration

We love hardware acceleration. Hardware acceleration is why a $40 DVD player from Walmart plays DVDs perfectly and a $1500 computer plays them poorly.

Use these resolutions to support hardware acceleration:

4:3 16:9
640 × 480 640* × 360
512 × 384 512 × 288
480 × 360 480 × 272

*there’s a typo in this table in the article. The correct value is 640 x 360, not 480 x 360.

Photoshop CS5 has become self-aware

Posted in Photoshop on March 26th, 2010 by markcoppock – 2 Comments

Skynet begins to learn at a geometric rate. It becomes self-aware at 2:14 a.m. Eastern time, August 29th. In a panic, they try to pull the plug.Terminator 2: Judgment Day

That’s science fiction. This isn’t:

We must have this. Release date April 12. See the Adobe launch site.

As Photoshop continues to learn at a geometric rate, we may end up, in a panic, trying to pull the plug. Until then, we’ll keep using it.

Good web accessibility (best practices) article

Posted in accessibility, web design on December 5th, 2009 by markcoppock – Be the first to comment

10 Simple Web Accessibility Tips You Can Do Today.” Good reminders.

  • on the title attribute, don’t use the same text as what it’s describing (same with alt attributes, duh)
  • headings—may be easier to use as page nav for screen reader users (though they mention Skip Navigation, I’ve heard some users more rely on the header tags)
  • Interesting link to WebAIM for Links that become visible with keyboard focus; addressing mobility-impaired users that can’t/don’t use a mouse. Might like that as a user myself.
  • Labeling form elements, as we’ve mentioned here before.

Do check out the article.

Cheat sheets

Posted in Uncategorized on September 15th, 2009 by Jared – Be the first to comment

I’m not talking about cheat sheets that are going to get you busted for knocking the Aggie Honor Code. These cheat sheets will help you become more efficient and they are worth a look if you use any of these apps.

Some cheat sheets I have found helpful:

Web publishing checklist

Posted in web design on September 8th, 2009 by markcoppock – Be the first to comment

Sent by Kim, a very comprehensive checklist. Items to check off in twenty categories. Some that may not be needed in all cases, some very obvious.

Much of it is/should be habit, but there are some good reminders.

Accessible PDFs from InDesign CS4

Posted in accessibility, design on July 6th, 2009 by markcoppock – Be the first to comment

Rhonda and her group have done a bunch of work on using best practices in Word to create accessible PDFs from reports. This is the corresponding info for InDesign CS4.

Page on Adobe site PDF overview

From the PDF’s intro (emphasis added):

Can you read this document with your eyes closed? For people with visual disabilities, that’s a challenge they’re faced with everyday. Fortunately, you can use Adobe InDesign CS4 to make an accessible PDF document. You do this by adding “under the hood” features that don’t affect the look of your pages, but do allow screen readers and other assistive devices to function properly.

We’re missing the HOW conference

Posted in design on June 25th, 2009 by markcoppock – Be the first to comment

Bummer. But it’s fun to watch the twitter stream.

Historically, I’ve thought of HOW as solely a print designers’ conference. But Kim, who’s attending, set me straight:

Dude, it is all about design (ie: problem solving), not print. There are plenty of sessions on interactive!

So, maybe next year…

Fear the Command Line

Posted in Mac OS X on June 8th, 2009 by markcoppock – Be the first to comment

Summary

Background

Remember when Windows was just becoming popular? People would say things like “Do this, this and this. Don’t worry, you can’t mess it up.” Of course, that was a lie.

Now, remember when OS X came out and you heard “the Terminal lets do all these things much faster than the Finder. But since you have direct access to the OS, you can destroy things just as quickly—and with no warning.* Therefore never touch the Terminal.”? Actually, that last part was just my subconscious speaking. It was lying, too.

It’s all about the workflow

But fast matters. Over the past few months I’ve gradually been reading up on the Terminal and practicing doing little things like copying files, setting permissions, opening/editing hidden files, etc. Check the list above for some of the resources I’ve found useful.

But be cool.

Like learning to ride a motorcycle, the most dangerous time is six months in when you start thinking you can do this pretty good and start getting cocky.


*Confession: I once typed del *.* at a DOS command prompt thinking I was in a subdirectory. I wasn’t. I still shudder. <shudder> See?

The only good part was that all the files in the subdirectory were deleted, as I intended. Along with the rest of the C drive, which I didn’t. <Shaking it off>

(Actually, Norton Utilities got it all back. But still.)

AccessU 09

Posted in accessibility, web design on May 11th, 2009 by markcoppock – Be the first to comment

I’ve come to think of this conference as a web standards and best practices conference.

A few, not all, highlights

  • HTML 5 will be the next doctype for web standards. XHTML is going away since its benefits aren’t getting used (browsers…). So, for now, use the HTML 4.01 Strict doctype. Edit 7-7-2009: I know what you’re thinking. See Jeffrey Zeldman’s article defending XHTML 1.0, right after XHTML 2.0′s going away announcement. Short story: we’ll stick with XHTML 1.0 for now. Use strict when not impractical, transitional otherwise. btw, Jeremy Keith has a good overview of all this.
  • IE 8: some seriously strange problems with its compatibility modes. Short answer (and there’s no short answer really), for now: design with tight web standards and don’t add MS’s suggested meta tag.
  • There are many standards for accessible forms that I was not aware of. Example—here’s how to semantically connect a label with its associated input:
    <label for="dogname">Dog's Name</label>
    <input name="name" id="dogname" size="30" />
  • Simple semantic stuff I needed reminding of:
    • only one h1 per page (I think there was discussion of this in past years; that appears over), and it’s the title of that individual page
    • h tags must be used successively; i.e., if you use an h4 tag, you must have at least one h2 and one h3 on the page
  • The new 508 and state accessibility requirements (coming this fall? Sept. 1?) will be close to the same as the WCAG 2.0. Overview—content must be:
    • technology-agnostic
    • perceivable
    • operable
    • understandable (for non-traditional browsers; e.g., a ‘more info’ link whose content can’t be perceived by screen readers isn’t acceptable)
    • robust