slovo | definícia |
comments (encz) | comments,poznámky n: pl. "Any comments?" = "Nějaké poznámky?" Milan
Svoboda |
| podobné slovo | definícia |
request for comments (czen) | Request For Comments,RFC[zkr.] |
boxed comments (foldoc) | boxed comments
Comments that occupy several lines by
themselves; so called because in assembler and C code they
are often surrounded by a box in a style similar to this:
/*************************************************
*
* This is a boxed comment in C style
*
*************************************************/
Common variants of this style omit the asterisks in column 2
or add a matching row of asterisks closing the right side of
the box. The sparest variant omits all but the comment
delimiters themselves; the "box" is implied.
Opposite of winged comments.
[Jargon File]
(1997-07-21)
|
request for comments (foldoc) | Request For Comments
RFC
(RFC) One of a series of numbered Internet informational
documents and standards,
widely followed by commercial software and freeware in the
Internet and Unix communities.
Few RFCs are standards but all Internet standards are recorded in
RFCs. Perhaps the single most
influential RFC has been RFC 822, the Internet electronic mail
format standard.
The RFCs are unusual in that they are floated by technical experts
acting on their own initiative
and reviewed by the Internet at large, rather than formally
promulgated through an institution
such as ANSI. For this reason, they remain known as RFCs even once
adopted as standards.
The RFC tradition, begun in 1969, of pragmatic, experience-driven,
after-the-fact standard
writing by individuals or small working groups has important
advantages over the more formal,
committee-driven process typical of ANSI or ISO.
Emblematic of some of these advantages is the existence of a
flourishing tradition of "joke" RFCs;
usually at least one a year is published, usually on April 1st.
Well-known joke RFCs have
included RFC 527, RFC 748 and RFC 1149.
The RFCs are most remarkable for how well they work - they manage to
have neither the ambiguities
that are usually rife in informal specifications, nor the
committee-perpetrated misfeatures that
often haunt formal standards, and they define a network that has
grown to truly worldwide
proportions.
rfc.net (http://rfc.net/). {W3
(http://w3.org/hypertext/DataSources/Archives/RFC_sites.html)}.
See also For Your Information, STD.
(1997-11-10)
|
winged comments (foldoc) | winged comments
Comments set on the same line as code, as
opposed to boxed comments.
In C, for example:
d = sqrt(x*x + y*y); /* distance from origin */
Generally these refer only to the action(s) taken on that
line.
[Jargon File]
(1997-07-21)
|
boxed comments (jargon) | boxed comments
n.
Comments (explanatory notes attached to program instructions) that occupy
several lines by themselves; so called because in assembler and C code they
are often surrounded by a box in a style something like this:
/*************************************************
*
* This is a boxed comment in C style
*
*************************************************/
Common variants of this style omit the asterisks in column 2 or add a
matching row of asterisks closing the right side of the box. The sparest
variant omits all but the comment delimiters themselves; the ‘box’ is
implied. Oppose winged comments.
|
winged comments (jargon) | winged comments
n.
Comments set on the same line as code, as opposed to boxed comments. In
C, for example:
d = sqrt(x*x + y*y); /* distance from origin */
Generally these refer only to the action(s) taken on that line.
[74-12-29]
|
|