I have seen the future, and it is Channel 3.

Sunday, August 14, 2011

Moiré Pattern



Wikipedia:

In physics, a moiré pattern ( /mwɑrˈeɪ/; French: [mwaʁe]) is an interference pattern created, for example, when two grids are overlaid at an angle, or when they have slightly different mesh sizes.

Monday, August 1, 2011

Definition: API

Application Programming Interface

An application programming interface (API) is a particular set of rules ('code') and specifications that software programs can follow to communicate with each other. It serves as an interface between different software programs and facilitates their interaction, similar to the way the user interface facilitates interaction between humans and computers.

An API can be created for applications, libraries, operating systems, etc., as a way of defining their "vocabularies" and resources request conventions (e.g. function-calling conventions). It may include specifications for routines, data structures, object classes, and protocols used to communicate between the consumer program and the implementer program of the API.

Read more at Wikipedia.