EOL /E-O-L/ n.
[End Of Line] Syn. for newline, derived perhaps from the original CDC6600 Pascal. Now rare, but widely recognized and occasionally used for brevity. Used in the example entry under BNF. See also EOF.
EOU /E-O-U/ n.
The mnemonic of a mythical ASCII control character (End Of User) that would make an ASR-33 Teletype explode on receipt. This construction parodies the numerous obscure delimiter and control characters left in ASCII from the days when it was associated more with wire-service teletypes than computers (e.g., FS, GS, RS, US, EM, SUB, ETX, and esp. EOT). It is worth remembering that ASR-33s were big, noisy mechanical beasts with a lot of clattering parts; the notion that one might explode was nowhere near as ridiculous as it might seem to someone sitting in front of a tube or flatscreen today.
epoch n.
[Unix: prob. from astronomical timekeeping] The time and date corresponding to 0 in an operating system's clock and timestamp values. Under most Unix versions the epoch is 00:00:00 GMT, January 1, 1970; under VMS, it's 00:00:00 of November 17, 1858 (base date of the U.S. Naval Observatory's ephemerides); on a Macintosh, it's the midnight beginning January 1 1904. System time is measured in seconds or ticks past the epoch. Weird problems may ensue when the clock wraps around (see wrap around), which is not necessarily a rare event; on systems counting 10 ticks per second, a signed 32-bit count of ticks is good only for 6.8 years. The 1-tick-per-second clock of Unix is good only until January 18, 2038, assuming at least some software continues to consider it signed and that word lengths don't increase by then. See also wall time. Microsoft Windows, on the other hand, has an epoch problem every 49.7 days - but this is seldom noticed as Windows is almost incapable of staying up continuously for that long.
epsilon
[see delta] 1. n. A small quantity of anything. "The cost is epsilon." 2. adj. Very small, negligible; less than marginal. "We can get this feature for epsilon cost." 3. `within epsilon of': close enough to be indistinguishable for all practical purposes, even closer than being `within delta of'. "That's not what I asked for, but it's within epsilon of what I wanted." Alternatively, it may mean not close enough, but very little is required to get it there: "My program is within epsilon of working."
epsilon squared n.
A quantity even smaller than epsilon, as small in comparison to epsilon as epsilon is to something normal; completely negligible. If you buy a supercomputer for a million dollars, the cost of the thousand-dollar terminal to go with it is epsilon, and the cost of the ten-dollar cable to connect them is epsilon squared. Compare lost in the underflow, lost in the noise.
era n.
Syn. epoch. Webster's Unabridged makes these words almost synonymous, but `era' more often connotes a span of time rather than a point in time, whereas the reverse is true for epoch. The epoch usage is recommended.
Eric Conspiracy n.
A shadowy group of mustachioed hackers named Eric first pinpointed as a sinister conspiracy by an infamous talk.bizarre posting ca. 1987; this was doubtless influenced by the numerous `Eric' jokes in the Monty Python oeuvre. There do indeed seem to be considerably more mustachioed Erics in hackerdom than the frequency of these three traits can account for unless they are correlated in some arcane way. Well-known examples include Eric Allman (he of the `Allman style' described under indent style) and Erik Fair (co-author of NNTP); your editor has heard from more than sixty others by email, and the organization line `Eric Conspiracy Secret Laboratories' now emanates regularly from more than one site. See the Eric Conspiracy Web Page at http://www.ccil.org/~esr/ecsl/ for full details.
Eris /e'ris/ n.
The Greek goddess of Chaos, Discord, Confusion, and Things You Know Not Of; her name was latinized to Discordia and she was worshiped by that name in Rome. Not a very friendly deity in the Classical original, she was reinvented as a more benign personification of creative anarchy starting in 1959 by the adherents of Discordianism and has since been a semi-serious subject of veneration in several `fringe' cultures, including hackerdom. See Discordianism, Church of the SubGenius.
erotics /ee-ro'tiks/ n.
[Helsinki University of Technology, Finland] n. English-language university slang for electronics. Often used by hackers in Helsinki, maybe because good electronics excites them and makes them warm.
error 33 [XEROX PARC] n.
1. Predicating one research effort upon the success of another. 2. Allowing your own research effort to be placed on the critical path of some other project (be it a research effort or not).
eurodemo /yoor'o-dem`-o/
a demo, sense 4
evil adj.
As used by hackers, implies that some system, program, person, or institution is sufficiently maldesigned as to be not worth the bother of dealing with. Unlike the adjectives in the cretinous/losing/brain-damaged series, `evil' does not imply incompetence or bad design, but rather a set of goals or design criteria fatally incompatible with the speaker's. This usage is more an esthetic and engineering judgment than a moral one in the mainstream sense. "We thought about adding a Blue Glue interface but decided it was too evil to deal with." "TECO is neat, but it can be pretty evil if you're prone to typos." Often pronounced with the first syllable lengthened, as /eeee'vil/. Compare evil and rude.
evil and rude adj.
Both evil and rude, but with the additional connotation that the rudeness was due to malice rather than incompetence. Thus, for example: Microsoft's Windows NT is evil because it's a competent implementation of a bad design; it's rude because it's gratuitously incompatible with Unix in places where compatibility would have been as easy and effective to do; but it's evil and rude because the incompatibilities are apparently there not to fix design bugs in Unix but rather to lock hapless customers and developers into the Microsoft way. Hackish evil and rude is close to the mainstream sense of `evil'.
Evil Empire n.
[from Ronald Reagan's famous characterization of the communist Soviet Union] Formerly IBM, now Microsoft. Functionally, the company most hackers love to hate at any given time. Hackers like to see themselves as romantic rebels against the Evil Empire, and frequently adopt this role to the point of ascribing rather more power and malice to the Empire than it actually has. See also Borg and search for Evil Empire pages on the Web.
exa- /ek's*/ pref.
[SI] See quantifiers.
examining the entrails n.
The process of grovelling through a core dump or hex image in an attempt to discover the bug that brought a program or system down. The reference is to divination from the entrails of a sacrified animal. Compare runes, incantation, black art, desk check.
EXCH /eks'ch*/ or /eksch/ vt.
To exchange two things, each for the other; to swap places. If you point to two people sitting down and say "Exch!", you are asking them to trade places. EXCH, meaning EXCHange, was originally the name of a PDP-10 instruction that exchanged the contents of a register and a memory location. Many newer hackers are probably thinking instead of the PostScript exchange operator (which is usually written in lowercase).
excl /eks'kl/ n.
Abbreviation for `exclamation point'. See bang, shriek, ASCII.
EXE /eks'ee/ or /eek'see/ or /E-X-E/ n.
An executable binary file. Some operating systems (notably MS-DOS, VMS, and TWENEX) use the extension .EXE to mark such files. This usage is also occasionally found among Unix programmers even though Unix executables don't have any required suffix.
exec /eg-zek'/ or /eks'ek/ vt., n.
1. [Unix: from `execute'] Synonym for chain, derives from the exec(2)
call. 2. [from `executive'] obs. The command interpreter for an
OS (see shell); term esp. used around mainframes, and
prob. derived from UNIVAC's archaic EXEC 2 and EXEC 8 operating
systems. 3. At IBM and VM/CMS shops, the equivalent of a shell
command file (among VM/CMS users).
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.
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.
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.
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.
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,
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.
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.
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.
= 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: