Добавил:
Опубликованный материал нарушает ваши авторские права? Сообщите нам.
Вуз: Предмет: Файл:

The New Hacker's Dictionary

.pdf
Скачиваний:
224
Добавлен:
10.08.2013
Размер:
1.62 Mб
Скачать

181

---

Node:bottom-up implementation, Next:[1835]bounce,

Previous:[1836]bottom feeder, Up:[1837]= B =

bottom-up implementation n.

Hackish opposite of the techspeak term `top-down design'. It has been received wisdom in most programming cultures that it is best to design from higher levels of abstraction down to lower, specifying sequences of action in increasing detail until you get to actual code. Hackers often find (especially in exploratory designs that cannot be closely specified in advance) that it works best to build things in the opposite order, by writing and testing a clean set of primitive operations and then knitting them together. Naively applied, this leads to hacked-together bottom-up implementations; a more sophisticated response is `middle-out implementation', in which scratch code within primitives at the mid-level of the system is gradually replaced with a more polished version of the lowest level at the same time the structure above the midlevel is being built.

---

Node:bounce, Next:[1838]bounce message, Previous:[1839]bottom-up implementation, Up:[1840]= B =

bounce v.

1. [common; perhaps by analogy to a bouncing check] An electronic mail message that is undeliverable and returns an error notification to the sender is said to `bounce'. See also [1841]bounce message. 2. [Stanford] To play volleyball. The now-demolished [1842]D. C. Power Lab building used by the Stanford AI Lab in the 1970s had a volleyball court on the front lawn. From 5 P.M. to 7 P.M. was the scheduled maintenance time for the computer, so every afternoon at 5 would come over the intercom the cry: "Now hear this: bounce, bounce!", followed by Brian McCune loudly bouncing a volleyball on the floor outside the offices of known

182

volleyballers. 3. To engage in sexual intercourse; prob. from the expression `bouncing the mattress', but influenced by Roo's psychosexually loaded "Try bouncing me, Tigger!" from the "Winnie-the-Pooh" books. Compare [1843]boink. 4. To casually reboot a system in order to clear up a transient problem. Reported primarily among [1844]VMS and [1845]Unix users. 5. [VM/CMS programmers] Automatic warm-start of a machine after an error. "I logged on this morning and found it had bounced 7 times during the night" 6. [IBM] To [1846]power cycle a peripheral in order to reset it.

---

Node:bounce message, Next:[1847]boustrophedon, Previous:[1848]bounce, Up:[1849]= B =

bounce message n.

[common] Notification message returned to sender by a site unable to relay [1850]email to the intended [1851]Internet address recipient or the next link in a [1852]bang path (see [1853]bounce, sense 1). Reasons might include a nonexistent or misspelled username or a [1854]down relay site. Bounce messages can themselves fail, with occasionally ugly results; see [1855]sorcerer's apprentice mode and [1856]software laser. The terms `bounce mail' and `barfmail' are also common.

---

Node:boustrophedon, Next:[1857]box, Previous:[1858]bounce message, Up:[1859]= B =

boustrophedon n.

[from a Greek word for turning like an ox while plowing] An ancient method of writing using alternate left-to-right and right-to-left lines. This term is actually philologists' techspeak and typesetters' jargon. Erudite hackers use it for an optimization performed by some computer typesetting software and moving-head printers. The adverbial form

183

`boustrophedonically' is also found (hackers purely love constructions like this).

---

Node:box, Next:[1860]boxed comments, Previous:[1861]boustrophedon, Up:[1862]= B =

box n.

1. A computer; esp. in the construction `foo box' where foo is some functional qualifier, like `graphics', or the name of an OS (thus, `Unix box', `MS-DOS box', etc.) "We preprocess the data on Unix boxes before handing it up to the mainframe." 2. [IBM] Without qualification but within an SNA-using site, this refers specifically to an IBM front-end processor or FEP /F-E-P/. An FEP is a small computer necessary to enable an IBM [1863]mainframe to communicate beyond the limits of the [1864]dinosaur pen. Typically used in expressions like the cry that goes up when an SNA network goes down: "Looks like the [1865]box has fallen over." (See [1866]fall over.) See also [1867]IBM, [1868]fear and loathing, [1869]Blue Glue.

---

Node:boxed comments, Next:[1870]boxen, Previous:[1871]box, Up:[1872]= B =

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 *

*************************************************/

184

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 [1873]winged comments.

---

Node:boxen, Next:[1874]boxology, Previous:[1875]boxed comments, Up:[1876]= B =

boxen /bok'sn/ pl.n.

[very common; by analogy with [1877]VAXen] Fanciful plural of [1878]box often encountered in the phrase `Unix boxen', used to describe commodity [1879]Unix hardware. The connotation is that any two Unix boxen are interchangeable.

---

Node:boxology, Next:[1880]bozotic, Previous:[1881]boxen, Up:[1882]= B

=

boxology /bok-sol'*-jee/ n.

Syn. [1883]ASCII art. This term implies a more restricted domain, that of box-and-arrow drawings. "His report has a lot of boxology in it." Compare [1884]macrology.

---

Node:bozotic, Next:[1885]BQS, Previous:[1886]boxology, Up:[1887]= B =

bozotic /boh-zoh'tik/ or /boh-zo'tik/ adj.

[from the name of a TV clown even more losing than Ronald McDonald] Resembling or having the quality of a bozo; that is, clownish, ludicrously

185

wrong, unintentionally humorous. Compare [1888]wonky, [1889]demented. Note that the noun `bozo' occurs in slang, but the mainstream adjectival form would be `bozo-like' or (in New England) `bozoish'.

---

Node:BQS, Next:[1890]brain dump, Previous:[1891]bozotic, Up:[1892]= B

=

BQS /B-Q-S/ adj.

Syn. [1893]Berkeley Quality Software.

---

Node:brain dump, Next:[1894]brain fart, Previous:[1895]BQS, Up:[1896]= B =

brain dump n.

[common] The act of telling someone everything one knows about a particular topic or project. Typically used when someone is going to let a new party maintain a piece of code. Conceptually analogous to an operating system [1897]core dump in that it saves a lot of useful [1898]state before an exit. "You'll have to give me a brain dump on FOOBAR before you start your new job at HackerCorp." See [1899]core dump (sense 4). At Sun, this is also known as `TOI' (transfer of information).

---

Node:brain fart, Next:[1900]brain-damaged, Previous:[1901]brain dump, Up:[1902]= B =

brain fart n.

186

The actual result of a [1903]braino, as opposed to the mental glitch that is the braino itself. E.g., typing dir on a Unix box after a session with DOS.

---

Node:brain-damaged, Next:[1904]brain-dead, Previous:[1905]brain fart, Up:[1906]= B =

brain-damaged adj.

1. [common; generalization of `Honeywell Brain Damage' (HBD), a theoretical disease invented to explain certain utter cretinisms in Honeywell [1907]Multics] adj. Obviously wrong; [1908]cretinous; [1909]demented. There is an implication that the person responsible must have suffered brain damage, because he should have known better. Calling something brain-damaged is really bad; it also implies it is unusable, and that its failure to work is due to poor design rather than some accident. "Only six monocase characters per file name? Now that's brain-damaged!" 2. [esp. in the Mac world] May refer to free demonstration software that has been deliberately crippled in some way so as not to compete with the product it is intended to sell. Syn. [1910]crippleware.

---

Node:brain-dead, Next:[1911]braino, Previous:[1912]brain-damaged,

Up:[1913]= B =

brain-dead adj.

[common] Brain-damaged in the extreme. It tends to imply terminal design failure rather than malfunction or simple stupidity. "This comm program doesn't know how to send a break -- how brain-dead!"

---

187

Node:braino, Next:[1914]branch to Fishkill, Previous:[1915]brain-dead, Up:[1916]= B =

braino /bray'no/ n.

Syn. for [1917]thinko. See also [1918]brain fart.

---

Node:branch to Fishkill, Next:[1919]bread crumbs, Previous:[1920]braino, Up:[1921]= B =

branch to Fishkill n.

[IBM: from the location of one of the corporation's facilities] Any unexpected jump in a program that produces catastrophic or just plain weird results. See [1922]jump off into never-never land, [1923]hyperspace.

---

Node:bread crumbs, Next:[1924]break, Previous:[1925]branch to Fishkill, Up:[1926]= B =

bread crumbs n.

1. Debugging statements inserted into a program that emit output or log indicators of the program's [1927]state to a file so you can see where it dies or pin down the cause of surprising behavior. The term is probably a reference to the Hansel and Gretel story from the Brothers Grimm or the older French folktale of Thumbelina; in several variants of these, a character leaves a trail of bread crumbs so as not to get lost in the woods. 2. In user-interface design, any feature that allows some tracking of where you've been, like coloring visited links purple rather than blue in Netscape (also called `footrinting').

---

188

Node:break, Next:[1928]break-even point, Previous:[1929]bread crumbs, Up:[1930]= B =

break

1. vt. To cause to be [1931]broken (in any sense). "Your latest patch to the editor broke the paragraph commands." 2. v. (of a program) To stop temporarily, so that it may debugged. The place where it stops is a `breakpoint'. 3. [techspeak] vi. To send an RS-232 break (two character widths of line high) over a serial comm line. 4. [Unix] vi. To strike whatever key currently causes the tty driver to send SIGINT to the current process. Normally, break (sense 3), delete or [1932]control-C does this. 5. `break break' may be said to interrupt a conversation (this is an example of verb doubling). This usage comes from radio communications, which in turn probably came from landline telegraph/teleprinter usage, as badly abused in the Citizen's Band craze a few years ago.

---

Node:break-even point, Next:[1933]breath-of-life packet, Previous:[1934]break, Up:[1935]= B =

break-even point n.

In the process of implementing a new computer language, the point at which the language is sufficiently effective that one can implement the language in itself. That is, for a new language called, hypothetically, FOOGOL, one has reached break-even when one can write a demonstration compiler for FOOGOL in FOOGOL, discard the original implementation language, and thereafter use working versions of FOOGOL to develop newer ones. This is an important milestone; see [1936]MFTL.

Since this entry was first written, several correspondents have reported that there actually was a compiler for a tiny Algol-like language called Foogol floating around on various [1937]VAXen in the early and mid-1980s. A FOOGOL implementation is available at the Retrocomputing Museum

189

[1938]http://www.ccil.org/retro.

---

Node:breath-of-life packet, Next:[1939]breedle, Previous:[1940]break-even point, Up:[1941]= B =

breath-of-life packet n.

[XEROX PARC] An Ethernet packet that contains bootstrap (see [1942]boot) code, periodically sent out from a working computer to infuse the `breath of life' into any computer on the network that has happened to crash. Machines depending on such packets have sufficient hardware or firmware code to wait for (or request) such a packet during the reboot process. See also [1943]dickless workstation.

The notional `kiss-of-death packet', with a function complementary to that of a breath-of-life packet, is recommended for dealing with hosts that consume too many network resources. Though `kiss-of-death packet' is usually used in jest, there is at least one documented instance of an Internet subnet with limited address-table slots in a gateway machine in which such packets were routinely used to compete for slots, rather like Christmas shoppers competing for scarce parking spaces.

---

Node:breedle, Next:[1944]Breidbart Index, Previous:[1945]breath-of-life packet, Up:[1946]= B =

breedle n.

See [1947]feep.

---

190

Node:Breidbart Index, Next:[1948]bring X to its knees,

Previous:[1949]breedle, Up:[1950]= B =

Breidbart Index /bri:d'bart ind*ks/

A measurement of the severity of spam invented by long-time hacker Seth Breidbart, used for programming cancelbots. The Breidbart Index takes into account the fact that excessive multi-posting [1951]EMP is worse than excessive cross-posting [1952]ECP. The Breidbart Index is computed as follows: For each article in a spam, take the square-root of the number of newsgroups to which the article is posted. The Breidbart Index is the sum of the square roots of all of the posts in the spam. For example, one article posted to nine newsgroups and again to sixteen would have BI = sqrt(9) + sqrt(16) = 7. It is generally agreed that a spam is cancelable if the Breidbart Index exceeds 20.

The Breidbart Index accumulates over a 45-day window. Ten articles yesterday and ten articles today and ten articles tomorrow add up to a 30-article spam. Spam fighters will often reset the count if you can convince them that the spam was accidental and/or you have seen the error of your ways and won't repeat it. Breidbart Index can accumulate over multiple authors. For example, the "Make Money Fast" pyramid scheme exceeded a BI of 20 a long time ago, and is now considered "cancel on sight".

---

Node:bring X to its knees, Next:[1953]brittle, Previous:[1954]Breidbart Index, Up:[1955]= B =

bring X to its knees v.

[common] To present a machine, operating system, piece of software, or algorithm with a load so extreme or [1956]pathological that it grinds to a halt. "To bring a MicroVAX to its knees, try twenty users running [1957]vi -- or four running [1958]EMACS." Compare [1959]hog.

Соседние файлы в предмете Английский язык