Category: Uncategorized

08/26/08

Permalink 07:49:25 am by François, Categories: Uncategorized

International non-profit, professional organization for the advancement of technology related to electricity.

Permalink 02:01:30 am by François, Categories: Uncategorized

A small circuit board that holds memory.

Permalink 01:56:05 am by François, Categories: Uncategorized

File format used to exchange data between disparate applications. The file format, originally
introduced by Microsoft Excel, has become a de facto standard throughout the industry, even among non-Microsoft platforms.

08/24/08

Permalink 10:57:28 am by François, Categories: Uncategorized

XML stands for eXtensible Markup Language.

It is a way of organizing text and/or contents with tags. Tags look like this:

<sometag>some content</sometag>

Of course, although possible, this is not designed to be read by humans. It is designed to be processed by machines. Typically one program generates an XML document and another one computes it to some further extent.

And XML document very much looks like an HTML document, except that the tags are different.

There are actually many different dialects of XML, each for a different purpose. Each of these dialects has its own tags. And even more tags can be added. Hence the "eXtensible" in the name.

There is an XML dialect for writing web pages. It is called XHTML. It is basically the same thing as HTML except for minor syntaxic differences. For example in HYML you would write <BR> whereas in XML you would write <br />.

Other XML dialects include RSS and Atom.