0%

21-letter words containing m, l, i, n, e

  • nightmare file system — Pejorative hackerism for Sun's Network File System (NFS). In any nontrivial network of Suns where there is a lot of NFS cross-mounting, when one Sun goes down, the others often freeze up. Some machine tries to access the down one, and (getting no response) repeats indefinitely. This causes it to appear dead to some messages (what is actually happening is that it is locked up in what should have been a brief excursion to a higher spl level). Then another machine tries to reach either the down machine or the pseudo-down machine, and itself becomes pseudo-down. The first machine to discover the down one is now trying both to access the down one and to respond to the pseudo-down one, so it is even harder to reach. This situation snowballs very quickly, and soon the entire network of machines is frozen - worst of all, the user can't even abort the file access that started the problem! Many of NFS's problems are excused by partisans as being an inevitable result of its statelessness, which is held to be a great feature (critics, of course, call it a great misfeature). ITS partisans are apt to cite this as proof of Unix's alleged bogosity; ITS had a working NFS-like shared file system with none of these problems in the early 1970s. See also broadcast storm.
  • nine-banded armadillo — an armadillo, Dasypus novemcinctus, of the southern U.S. to Argentina, having nine hinged bands of bony plates, the female of which usually gives birth to quadruplets that are always of the same sex.
  • non-maintainer upload — (operating system)   (NMU) A release of a Debian package by someone other than its usual maintainer. E.g. "The bug was fixed in a recent NMU."
  • non-repeating decimal — a decimal representation of any irrational number, having the property that no sequence of digits is repeated ad infinitum.
  • northumberland strait — the part of the Gulf of St. Lawrence that separates Prince Edward Island from New Brunswick and Nova Scotia, in SE Canada. About 200 miles (320 km) long; 9–30 miles (15–48 km) wide.
  • oil-in-water emulsion — An oil-in-water emulsion is a mixture in which an oily medicine is dispersed in water or other liquid.
  • one-dimensional array — (types)   An array with only one dimension; the simplest kind of array, consisting of a sequence of items ("elements"), all of the same type. An element is selected by an integer index that normally starts at zero for the first element and increases by one. The index of the last element is thus the length of the array minus one. A one-dimensional array is also known as a vector. It should not be confused with a list. In some languages, e.g. Perl, all arrays are one-dimensional and higher dimensions are represented as arrays of pointers to arrays (which can have different sizes and can themselves contain pointers to arrays and so on). A one-dimensional array maps simply to memory: the address of an element with index i is A(i) = A0 + i * s where A0 is the base address of the array and s is the size of storage used for each element, the "stride". Elements may be padded to certain address boundaries, e.g. machine words, to increase access speed, in which case the stride will be larger than the amount of data in an element.
  • operational amplifier — a high-gain, high-input impedance amplifier, usually an integrated circuit, that can perform mathematical operations when suitably wired.
  • operational semantics — (theory)   A set of rules specifying how the state of an actual or hypothetical computer changes while executing a program. The overall state is typically divided into a number of components, e.g. stack, heap, registers etc. Each rule specifies certain preconditions on the contents of some components and their new contents after the application of the rule. It is similar in spirit to the notion of a Turing machine, in which actions are precisely described in a mathematical way. Compuare axiomatic semantics, denotational semantics.
  • ophthalmia neonatorum — inflammation of the eyes of a newborn child due to an infectious disease, as gonorrhea, contracted during birth from the infected mother.
  • parliamentary inquiry — a question asked of the presiding officer of a parliament in relation to parliamentary law
  • partial reinforcement — the process of randomly rewarding an organism for making a response on only some of the occasions it makes it
  • peephole optimisation — (compiler)   A kind of low-level code optimisation that considers only a few adjacent machine code instructions at a time and looks for certain combinations which can be replaced with more efficient sequences. E.g. ADD R0, #1 ADD R0, #1 (add one to register R0) could be replaced by ADD R0, #2 as long as there were no jumps to the second instruction.
  • peephole optimization — peephole optimisation
  • pentamethylenediamine — cadaverine.
  • performance appraisal — the assessment, at regular intervals, of an employee's performance at work
  • personalized medicine — an approach to the practice of medicine that uses information about a patient’s unique genetic makeup and environment to customize the patient's medical care to fit his or her individual requirements.
  • ploughman's spikenard — a European plant, Inula conyza, with tubular yellowish flower heads surrounded by purple bracts: family Asteraceae (composites)
  • polarizing microscope — a microscope that utilizes polarized light to reveal detail in an object, used especially to study crystalline and fibrous structures.
  • prader-willi syndrome — a congenital condition characterized by obsessive eating, obesity, learning difficulties, and small genitalia
  • premature ejaculation — a male psychosexual disorder in which ejaculation occurs soon after the commencement of sexual intercourse.
  • primitive dicotyledon — any living relative of early angiosperms that branched off before the evolution of monocotyledons and eudicotyledons. The group comprises about 5 per cent of the world's plants
  • prince rupert's metal — a brass composed of from about 60 to 85 percent copper and about 15 to 40 percent zinc, used to imitate gold.
  • privacy enhanced mail
  • propantheline bromide — a substance, C 2 3 H 3 0 BrNO 3 , used in the treatment of peptic ulcers.
  • psychoneuroimmunology — the study of the effects of psychological factors on the immune system
  • pulse code modulation — a form of modulation that transforms a wave-form, as an audio signal, into a binary signal in which information is conveyed by a coded order of pulses for transmission, storage on a disk, or processing by a computer. Abbreviation: PCM.
  • pulse-code modulation — a form of modulation that transforms a wave-form, as an audio signal, into a binary signal in which information is conveyed by a coded order of pulses for transmission, storage on a disk, or processing by a computer. Abbreviation: PCM.
  • pulse-time modulation — radio transmission in which the carrier is modulated to produce a series of pulses timed to transmit the amplitude and pitch of a signal. Abbr.: PTM.
  • quantum teleportation — a hypothetical technique to instantly transfer properties from one quantum system to another without contact, or to transfer a quantum state to an arbitrarily distant location.
  • real operating system — (operating system, abuse)   The sort the speaker is used to. People from the BSDophilic academic community are likely to issue comments like "System V? Why don't you use a *real* operating system?", people from the commercial/industrial Unix sector are known to complain "BSD? Why don't you use a *real* operating system?", and people from IBM object "Unix? Why don't you use a *real* operating system?" See holy wars, religious issues, proprietary, Get a real computer!.
  • relational data model — (database)   (Or "relational model") A data model introduced by E.F. Codd in 1970, particularly well suited for business data management. In this model, data are organised in tables. The set of names of the columns is called the "schema" of the table. Here is an example table with the schema (account number, amount) and 3 lines. account number amount -------------- --------- 12343243546456 +30000.00 23149875245824 +2345.33 18479827492874 -123.25 The data can be manipulated using a relational algebra. SQL is a standard language for talking to a database built on the relational model (a "relational database").
  • replacement algorithm — The method used to determine which entry in an associative cache to flush to main memory when it is desired to cache a new block of data. The "least recently used" algorithm flushed the block which has not been accessed for the longest time. A random replacement algorithm picks any block with equal probability.
  • requirements analysis — (project)   The process of reviewing a business's processes to determine the business needs and functional requirements that a system must meet.
  • residual unemployment — the unemployment that remains in periods of full employment, as a result of those mentally, physically, or emotionally unfit to work
  • return the compliment — repay sb's kindness with a kind act
  • saint elias mountains — a mountain range between SE Alaska and the SW Yukon, Canada. Highest peak: Mount Logan, 5959 m (19 550 ft)
  • salam-weinberg theory — the electroweak theory.
  • sales finance company — a finance company that purchases, at a discount, installment contracts from dealers or that finances retail sales.
  • san gabriel mountains — a mountain range in S California, N of Los Angeles. Highest peak, San Antonio Peak, 10,080 feet (3072 meters).
  • schoolgirl complexion — a smooth, clear complexion, such as schoolgirls are considered to have
  • semantic differential — a technique for measuring the connotative meaning of concepts by having an individual rate each concept on a series of graduated scales, each scale defined by a pair of polar adjectives, as good–bad or strong–weak.
  • seven-segment display — (electronics)   (SSD) A kind of display element consisting of seven independently controllable lines arranged as a rectangular figure eight. A seven-segment display is the simplest device that can display any of the digits zero to nine (and some other characters) by lighting different combinations of lines. They are often seen in electronic calculators or measuring equipment.
  • sierra madre oriental — the system of mountains in the east of Mexico
  • simple actor language — (language)   (SAL) A minimal actor language, used for teaching in:
  • sir william alexander — Sir William (Alexander) 1867–1957, Scottish lexicographer and philologist.
  • slatwall merchandiser — A slatwall merchandiser is a three-dimensional display unit with grooves cut into its surface into which metal hanging rails can be fixed at various heights.
  • spin angular momentum — to make (yarn) by drawing out, twisting, and winding fibers: Pioneer women spun yarn on spinning wheels.
  • splice the main brace — to join together or unite (two ropes or parts of a rope) by the interweaving of strands.
  • statistical mechanics — the science that deals with average properties of the molecules, atoms, or elementary particles in random motion in a system of many such particles and relates these properties to the thermodynamic and other macroscopic properties of the system.
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?