The Jargon File, Version 4.2.2, 20 Aug 2000
Chapter 23
The mainstream `exec' as an abbreviation for (human) executive is not used. To a hacker, an `exec' is a always a program, never a person.
Node:exercise left as an, Next:Exon, Previous:exec, Up:= E =
exercise, left as an adj.
[from technical books] Used to complete a proof when one doesn't mind a handwave, or to avoid one entirely. The complete phrase is: "The proof [or `the rest'] is left as an exercise for the reader." This comment has occasionally been attached to unsolved research problems by authors possessed of either an evil sense of humor or a vast faith in the capabilities of their audiences.
Node:Exon, Next:Exploder, Previous:exercise left as an, Up:= E =
Exon /eks'on/ excl.
A generic obscenity that quickly entered wide use on the Internet and Usenet after Black Thursday. From the last name of Senator James Exon (Democrat-Nebraska), primary author of the CDA.
Node:Exploder, Next:exploit, Previous:Exon, Up:= E =
Exploder n.
Used within Microsoft to refer to the Windows Explorer, the interface component of Windows 95 and WinNT 4. Our spies report that most of the heavy guns at MS came from a Unix background and use command line utilities; even they are scornful of the over-gingerbreaded WIMP environments that they have been called upon to create.
Node:exploit, Next:external memory, Previous:Exploder, Up:= E =
exploit n.
[originally cracker slang] 1. A vulnerability in software that can be used for breaking security or otherwise attacking an Internet host over the network. The Ping O' Death is a famous exploit. 2. More grammatically, a program that exploits an exploit in sense 1,
Node:external memory, Next:eye candy, Previous:exploit, Up:= E =
external memory n.
A memo pad, palmtop computer, or written notes. "Hold on while I write that to external memory". The analogy is with store or DRAM versus nonvolatile disk storage on computers.
Node:eye candy, Next:eyeball search, Previous:external memory, Up:= E =
eye candy /i:' kand`ee/ n.
[from mainstream slang "ear candy"] A display of some sort that's presented to lusers to keep them distracted while the program performs necessary background tasks. "Give 'em some eye candy while the back-end slurps that BLOB into core." Reported as mainstream usage among players of graphics-heavy computer games. We're also told this term is mainstream slang for soft pornography, but that sense does not appear to be live among hackers.
Node:eyeball search, Next:face time, Previous:eye candy, Up:= E =
eyeball search n.,v.
To look for something in a mass of code or data with one's own native optical sensors, as opposed to using some sort of pattern matching software like grep or any other automated search tool. Also called a vgrep; compare vdiff, desk check.
Node:= F =, Next:= G =, Previous:= E =, Up:The Jargon Lexicon
= F =
face time:
factor:
fairings:
fall over:
fall through:
fan:
fandango on core:
FAQ:
FAQ list:
FAQL:
faradize:
farkled:
farming:
fascist:
fat electrons:
fat-finger:
faulty:
fd leak:
fear and loathing:
feature:
feature creature:
feature creep:
feature key:
feature shock:
featurectomy:
feep:
feeper:
feeping creature:
feeping creaturism:
feetch feetch:
fence:
fencepost error:
fiber-seeking backhoe:
FidoNet:
field circus:
field servoid:
Fight-o-net:
File Attach:
File Request:
file signature:
filk:
film at 11:
filter:
Finagle's Law:
fine:
finger:
finger trouble:
finger-pointing syndrome:
finn:
firebottle:
firefighting:
firehose syndrome:
firewall code:
firewall machine:
fireworks mode:
firmware:
firmy:
fish:
FISH queue:
FITNR:
fix:
FIXME:
flag:
flag day:
flaky:
flamage:
flame:
flame bait:
flame on:
flame war:
flamer:
flap:
flarp:
flash crowd:
flat:
flat-ASCII:
flat-file:
flatten:
flavor:
flavorful:
flippy:
flood:
flowchart:
flower key:
flush:
flypage:
Flyspeck 3:
flytrap:
FM:
fnord:
FOAF:
FOD:
fold case:
followup:
fontology:
foo:
foobar:
fool:
fool file:
Foonly:
footprint:
for free:
for the rest of us:
for values of:
fora:
foreground:
fork:
fork bomb:
forked:
Fortrash:
fortune cookie:
forum:
fossil:
four-color glossies:
frag:
fragile:
fred:
Fred Foobar:
frednet:
free software:
freeware:
freeze:
fried:
frink:
friode:
fritterware:
frob:
frobnicate:
frobnitz:
frog:
frogging:
front end:
frotz:
frotzed:
frowney:
FRS:
fry:
fscking:
FSF:
FTP:
-fu:
FUBAR:
fuck me harder:
FUD:
FUD wars:
fudge:
fudge factor:
fuel up:
Full Monty:
fum:
functino:
funky:
funny money:
furrfu:
fuzzball:
Node:face time, Next:factor, Previous:eyeball search, Up:= F =
face time n.
[common] Time spent interacting with somebody face-to-face (as opposed to via electronic links). "Oh, yeah, I spent some face time with him at the last Usenix."
Node:factor, Next:fairings, Previous:face time, Up:= F =
factor n.
See coefficient of X.
Node:fairings, Next:fall over, Previous:factor, Up:= F =
fairings n. /fer'ingz/
[FreeBSD; orig. a typo for `fairness'] A term thrown out in discussion whenever a completely and transparently nonsensical argument in one's favor(?) seems called for, e,g. at the end of a really long thread for which the outcome is no longer even cared about since everyone is now so sick of it; or in rebuttal to another nonsensical argument ("Change the loader to look for /kernel.pl? What about fairings?")
Node:fall over, Next:fall through, Previous:fairings, Up:= F =
fall over vi.
[IBM] Yet another synonym for crash or lose. `Fall over hard' equates to crash and burn.
Node:fall through, Next:fan, Previous:fall over, Up:= F =
fall through v.
(n. `fallthrough', var. `fall-through') 1. To exit a loop by exhaustion, i.e., by having fulfilled its exit condition rather than via a break or exception condition that exits from the middle of it. This usage appears to be really old, dating from the 1940s and 1950s. 2. To fail a test that would have passed control to a subroutine or some other distant portion of code. 3. In C, `fall-through' occurs when the flow of execution in a switch statement reaches a case label other than by jumping there from the switch header, passing a point where one would normally expect to find a break. A trivial example:
switch (color) { case GREEN: do_green(); break; case PINK: do_pink(); /* FALL THROUGH */ case RED: do_red(); break; default: do_blue(); break; }
The variant spelling /* FALL THRU */ is also common.
The effect of the above code is to do_green() when color is GREEN, do_red() when color is RED, do_blue() on any other color other than PINK, and (and this is the important part) do_pink() and then do_red() when color is PINK. Fall-through is considered harmful by some, though there are contexts (such as the coding of state machines) in which it is natural; it is generally considered good practice to include a comment highlighting the fall-through where one would normally expect a break. See also Duff's device.
Node:fan, Next:fandango on core, Previous:fall through, Up:= F =
fan n.
Without qualification, indicates a fan of science fiction, especially one who goes to cons and tends to hang out with other fans. Many hackers are fans, so this term has been imported from fannish slang; however, unlike much fannish slang it is recognized by most non-fannish hackers. Among SF fans the plural is correctly `fen', but this usage is not automatic to hackers. "Laura reads the stuff occasionally but isn't really a fan."
Node:fandango on core, Next:FAQ, Previous:fan, Up:= F =
fandango on core n.
[Unix/C hackers, from the Iberian dance] In C, a wild pointer that runs out of bounds, causing a core dump, or corrupts the malloc(3) arena in such a way as to cause mysterious failures later on, is sometimes said to have `done a fandango on core'. On low-end personal machines without an MMU (or Windows boxes, which have an MMU but use it incompetently), this can corrupt the OS itself, causing massive lossage. Other frenetic dances such as the cha-cha or the watusi, may be substituted. See aliasing bug, precedence lossage, smash the stack, memory leak, memory smash, overrun screw, core.
Node:FAQ, Next:FAQ list, Previous:fandango on core, Up:= F =
FAQ /F-A-Q/ or /fak/ n.
[Usenet] 1. A Frequently Asked Question. 2. A compendium of accumulated lore, posted periodically to high-volume newsgroups in an attempt to forestall such questions. Some people prefer the term `FAQ list' or `FAQL' /fa'kl/, reserving `FAQ' for sense 1.
This lexicon itself serves as a good example of a collection of one kind of lore, although it is far too big for a regular FAQ posting. Examples: "What is the proper type of NULL?" and "What's that funny name for the # character?" are both Frequently Asked Questions. Several FAQs refer readers to this file.
Node:FAQ list, Next:FAQL, Previous:FAQ, Up:= F =
FAQ list /F-A-Q list/ or /fak list/ n.
[common; Usenet] Syn FAQ, sense 2.
Node:FAQL, Next:faradize, Previous:FAQ list, Up:= F =
FAQL /fa'kl/ n.
Syn. FAQ list.
Node:faradize, Next:farkled, Previous:FAQL, Up:= F =
faradize /far'*-di:z/ v.
[US Geological Survey] To start any hyper-addictive process or trend, or to continue adding current to such a trend. Telling one user about a new octo-tetris game you compiled would be a faradizing act -- in two weeks you might find your entire department playing the faradic game.
Node:farkled, Next:farming, Previous:faradize, Up:= F =
farkled /far'kld/ adj.
[DeVry Institute of Technology, Atlanta] Syn. hosed. Poss. owes something to Yiddish `farblondjet' and/or the `Farkle Family' skits on "Rowan and Martin's Laugh-In", a popular comedy show of the late 1960s.
Node:farming, Next:fascist, Previous:farkled, Up:= F =
farming n.
[Adelaide University, Australia] What the heads of a disk drive are said to do when they plow little furrows in the magnetic media. Associated with a crash. Typically used as follows: "Oh no, the machine has just crashed; I hope the hard drive hasn't gone farming again." No longer common; modern drives automatically park their heads in a safe zone on power-down, so it takes a real mechanical problem to induce this.
Node:fascist, Next:fat electrons, Previous:farming, Up:= F =
fascist adj.
1. [common] Said of a computer system with excessive or annoying security barriers, usage limits, or access policies. The implication is that said policies are preventing hackers from getting interesting work done. The variant `fascistic' seems to have been preferred at MIT, poss. by analogy with `touristic' (see tourist or under the influence of German/Yiddish `faschistisch'). 2. In the design of languages and other software tools, `the fascist alternative' is the most restrictive and structured way of capturing a particular function; the implication is that this may be desirable in order to simplify the implementation or provide tighter error checking. Compare bondage-and-discipline language, although that term is global rather than local.
Node:fat electrons, Next:fat-finger, Previous:fascist, Up:= F =
fat electrons n.
Old-time hacker David Cargill's theory on the causation of computer glitches. Your typical electric utility draws its line current out of the big generators with a pair of coil taps located near the top of the dynamo. When the normal tap brushes get dirty, they take them off line to clean them up, and use special auxiliary taps on the bottom of the coil. Now, this is a problem, because when they do that they get not ordinary or `thin' electrons, but the fat'n'sloppy electrons that are heavier and so settle to the bottom of the generator. These flow down ordinary wires just fine, but when they have to turn a sharp corner (as in an integrated-circuit via), they're apt to get stuck. This is what causes computer glitches. [Fascinating. Obviously, fat electrons must gain mass by bogon absorption --ESR] Compare bogon, magic smoke.
Node:fat-finger, Next:faulty, Previous:fat electrons, Up:= F =
fat-finger vt.
1. To introduce a typo while editing in such a way that the resulting manglification of a configuration file does something useless, damaging, or wildly unexpected. "NSI fat-fingered their DNS zone file and took half the net down again." 2. More generally, any typo that produces dramatically bad results.
Node:faulty, Next:fd leak, Previous:fat-finger, Up:= F =
faulty adj.
Non-functional; buggy. Same denotation as bletcherous, losing, q.v., but the connotation is much milder.
Node:fd leak, Next:fear and loathing, Previous:faulty, Up:= F =
fd leak /F-D leek/ n.
A kind of programming bug analogous to a core leak, in which a program fails to close file descriptors (`fd's) after file operations are completed, and thus eventually runs out of them. See leak.
Node:fear and loathing, Next:feature, Previous:fd leak, Up:= F =
fear and loathing n.
[from Hunter S. Thompson] A state inspired by the prospect of dealing with certain real-world systems and standards that are totally brain-damaged but ubiquitous -- Intel 8086s, or COBOL, or EBCDIC, or any IBM machine bigger than a workstation. "Ack! They want PCs to be able to talk to the AI machine. Fear and loathing time!"
Node:feature, Next:feature creature, Previous:fear and loathing, Up:= F =
feature n.
1. [common] A good property or behavior (as of a program). Whether it was intended or not is immaterial. 2. [common] An intended property or behavior (as of a program). Whether it is good or not is immaterial (but if bad, it is also a misfeature). 3. A surprising property or behavior; in particular, one that is purposely inconsistent because it works better that way -- such an inconsistency is therefore a feature and not a bug. This kind of feature is sometimes called a miswart; see that entry for a classic example. 4. A property or behavior that is gratuitous or unnecessary, though perhaps also impressive or cute. For example, one feature of Common LISP's format function is the ability to print numbers in two different Roman-numeral formats (see bells whistles and gongs). 5. A property or behavior that was put in to help someone else but that happens to be in your way. 6. [common] A bug that has been documented. To call something a feature sometimes means the author of the program did not consider the particular case, and that the program responded in a way that was unexpected but not strictly incorrect. A standard joke is that a bug can be turned into a feature simply by documenting it (then theoretically no one can complain about it because it's in the manual), or even by simply declaring it to be good. "That's not a bug, that's a feature!" is a common catchphrase. See also feetch feetch, creeping featurism, wart, green lightning.
The relationship among bugs, features, misfeatures, warts, and miswarts might be clarified by the following hypothetical exchange between two hackers on an airliner:
A: "This seat doesn't recline."
B: "That's not a bug, that's a feature. There is an emergency exit door built around the window behind you, and the route has to be kept clear."
A: "Oh. Then it's a misfeature; they should have increased the spacing between rows here."
B: "Yes. But if they'd increased spacing in only one section it would have been a wart -- they would've had to make nonstandard-length ceiling panels to fit over the displaced seats."
A: "A miswart, actually. If they increased spacing throughout they'd lose several rows and a chunk out of the profit margin. So unequal spacing would actually be the Right Thing."
B: "Indeed."
`Undocumented feature' is a common, allegedly humorous euphemism for a bug. There's a related joke that is sometimes referred to as the "one-question geek test". You say to someone "I saw a Volkswagen Beetle today with a vanity license plate that read FEATURE". If he/she laughs, he/she is a geek (see computer geek, sense 2).
Node:feature creature, Next:feature creep, Previous:feature, Up:= F =
feature creature n.
[poss. fr. slang `creature feature' for a horror movie] 1. One who loves to add features to designs or programs, perhaps at the expense of coherence, concision, or taste. 2. Alternately, a mythical being that induces otherwise rational programmers to perpetrate such crocks. See also feeping creaturism, creeping featurism.
Node:feature creep, Next:feature key, Previous:feature creature, Up:= F =
feature creep n.
[common] The result of creeping featurism, as in "Emacs has a bad case of feature creep".
Node:feature key, Next:feature shock, Previous:feature creep, Up:= F =
feature key n.
[common] The Macintosh key with the cloverleaf graphic on its keytop; sometimes referred to as `flower', `pretzel', `clover', `propeller', `beanie' (an apparent reference to the major feature of a propeller beanie), splat, `open-apple' or (officially, in Mac documentation) the `command key'. In French, the term `papillon' (butterfly) has been reported. The proliferation of terms for this creature may illustrate one subtle peril of iconic interfaces.
Many people have been mystified by the cloverleaf-like symbol that appears on the feature key. Its oldest name is `cross of St. Hannes', but it occurs in pre-Christian Viking art as a decorative motif. Throughout Scandinavia today the road agencies use it to mark sites of historical interest. Apple picked up the symbol from an early Mac developer who happened to be Swedish. Apple documentation gives the translation "interesting feature"!
There is some dispute as to the proper (Swedish) name of this symbol. It technically stands for the word `sevärdhet' (thing worth seeing); many of these are old churches. Some Swedes report as an idiom for the sign the word `kyrka', cognate to English `church' and pronounced (roughly) /chur'ka/ in modern Swedish. Others say this is nonsense. Other idioms reported for the sign are `runa' (rune) or `runsten' /roon'stn/ (runestone), derived from the fact that many of the interesting features are Viking rune-stones. The term `fornminne' /foorn'min'*/ (relic of antiquity, ancient monument) is also reported, especially among those who think that the Mac itself is a relic of antiquity.
Node:feature shock, Next:featurectomy, Previous:feature key, Up:= F =
feature shock n.
[from Alvin Toffler's book title "Future Shock"] A user's (or programmer's!) confusion when confronted with a package that has too many features and poor introductory material.
Node:featurectomy, Next:feep, Previous:feature shock, Up:= F =
featurectomy /fee`ch*r-ek't*-mee/ n.
The act of removing a feature from a program. Featurectomies come in two flavors, the `righteous' and the `reluctant'. Righteous featurectomies are performed because the remover believes the program would be more elegant without the feature, or there is already an equivalent and better way to achieve the same end. (Doing so is not quite the same thing as removing a misfeature.) Reluctant featurectomies are performed to satisfy some external constraint such as code size or execution speed.
Node:feep, Next:feeper, Previous:featurectomy, Up:= F =
feep /feep/
1. n. The soft electronic `bell' sound of a display terminal (except for a VT-52); a beep (in fact, the microcomputer world seems to prefer beep). 2. vi. To cause the display to make a feep sound. ASR-33s (the original TTYs) do not feep; they have mechanical bells that ring. Alternate forms: beep, `bleep', or just about anything suitably onomatopoeic. (Jeff MacNelly, in his comic strip "Shoe", uses the word `eep' for sounds made by computer terminals and video games; this is perhaps the closest written approximation yet.) The term `breedle' was sometimes heard at SAIL, where the terminal bleepers are not particularly soft (they sound more like the musical equivalent of a raspberry or Bronx cheer; for a close approximation, imagine the sound of a Star Trek communicator's beep lasting for five seconds). The `feeper' on a VT-52 has been compared to the sound of a '52 Chevy stripping its gears. See also ding.
Node:feeper, Next:feeping creature, Previous:feep, Up:= F =
feeper /fee'pr/ n.
The device in a terminal or workstation (usually a loudspeaker of some kind) that makes the feep sound.
Node:feeping creature, Next:feeping creaturism, Previous:feeper, Up:= F =
feeping creature n.
[from feeping creaturism] An unnecessary feature; a bit of chrome that, in the speaker's judgment, is the camel's nose for a whole horde of new features.
Node:feeping creaturism, Next:feetch feetch, Previous:feeping creature, Up:= F =
feeping creaturism /fee'ping kree`ch*r-izm/ n.
A deliberate spoonerism for creeping featurism, meant to imply that the system or program in question has become a misshapen creature of hacks. This term isn't really well defined, but it sounds so neat that most hackers have said or heard it. It is probably reinforced by an image of terminals prowling about in the dark making their customary noises.
Node:feetch feetch, Next:fence, Previous:feeping creaturism, Up:= F =
feetch feetch /feech feech/ interj.
If someone tells you about some new improvement to a program, you might respond: "Feetch, feetch!" The meaning of this depends critically on vocal inflection. With enthusiasm, it means something like "Boy, that's great! What a great hack!" Grudgingly or with obvious doubt, it means "I don't know; it sounds like just one more unnecessary and complicated thing". With a tone of resignation, it means, "Well, I'd rather keep it simple, but I suppose it has to be done".
Node:fence, Next:fencepost error, Previous:feetch feetch, Up:= F =
fence n. 1.
A sequence of one or more distinguished (out-of-band) characters (or other data items), used to delimit a piece of data intended to be treated as a unit (the computer-science literature calls this a `sentinel'). The NUL (ASCII 0000000) character that terminates strings in C is a fence. Hex FF is also (though slightly less frequently) used this way. See zigamorph. 2. An extra data value inserted in an array or other data structure in order to allow some normal test on the array's contents also to function as a termination test. For example, a highly optimized routine for finding a value in an array might artificially place a copy of the value to be searched for after the last slot of the array, thus allowing the main search loop to search for the value without having to check at each pass whether the end of the array had been reached. 3. [among users of optimizing compilers] Any technique, usually exploiting knowledge about the compiler, that blocks certain optimizations. Used when explicit mechanisms are not available or are overkill. Typically a hack: "I call a dummy procedure there to force a flush of the optimizer's register-coloring info" can be expressed by the shorter "That's a fence procedure".
Node:fencepost error, Next:fiber-seeking backhoe, Previous:fence, Up:= F =
fencepost error n.