Archive for the ‘Glossary’ Category

File Under: Glossary

CLUT file

In computer graphics, a color look-up table, or CLUT, is the set of available colors for a given application.

For example, a 24-bit system can display 16 million unique colors, but a given program would use only 256 of them at a time if the display is in 256-color mode. The CLUT in this case would consist of the 16 million colors, but the program’s palette would contain only the 256-color subset. To avoid dithering (i.e., varying the pattern of dots in an image) on 8-bit machines, you should only use colors from a predesignated CLUT.

File Under: Glossary

Hash

A hash, also known as an associative array, is a collection of data in which each piece of data has two components: a key and a value. Much like the hash at your local diner, JavaScript hashes go unordered: They’re not indexed by numbers. For example, if you wish to use JavaScript to put up a different GIF animation on your site every day of the week, you might throw all these animations into a hash associated to each weekday as a key. Then you would refer to the key day to invoke that day’s animation.

For example, in a normal array, you’d have:

  dinner[0] = "monkey brain";

  dinner[1] = "meatloaf";

But in a hash, you could use a string as the index:

  dinner["monday"] = "monkey brain";

  dinner["tuesday"] = "meatloaf";

File Under: Glossary

Webographics


If you’re at all interested in e-biz, you’d better get serious about tracking webographics. A user’s webographic profile includes platform (Mac, Unix, or Windows), browser make (IE, Netscape) and model (3.0, 4.0), and connection speed (T1, 28.8, 14.4). Each of these factors can have a dramatic effect on a user’s experience, and every developer must decide whether to build a site that’s accessible to everyone (meaning fancy cutting-edge doodads are out) or create something really cool that won’t work unless users upgrade. We, of course, recommend the former.

File Under: Glossary

QuickTime


QuickTime is a video and animation system developed by Apple Computer that also supports encoding formats like JPEG and MPEG. The International Standards Organization decided in February 1998 to use QuickTime as the basis for its new MPEG-4 standard.

File Under: Glossary

Typeface


Typeface refers to the overall design of a font‘s characters. Courier is a typeface; Courier 24-point bold is a font. There are two general categories of typefaces:serif and sans serif. Serif typefaces use small decorative marks to embellish characters and make them easier to read. Typefaces without these little marks are called sans serif (“sans” is French for “without”). Helvetica is a sans serif typeface and Times is a serif typeface.