0%

21-letter words containing e, n, t, i, y, r

  • generic type variable — (programming)   (Also known as a "schematic type variable"). Different occurrences of a generic type variable in a type expression may be instantiated to different types. Thus, in the expression let id x = x in (id True, id 1) id's type is (for all a: a -> a). The universal quantifier "for all a:" means that a is a generic type variable. For the two uses of id, a is instantiated to Bool and Int. Compare this with let id x = x in let f g = (g True, g 1) in f id This looks similar but f has no legal Hindley-Milner type. If we say f :: (a -> b) -> (b, b) this would permit g's type to be any instance of (a -> b) rather than requiring it to be at least as general as (a -> b). Furthermore, it constrains both instances of g to have the same result type whereas they do not. The type variables a and b in the above are implicitly quantified at the top level: f :: for all a: for all b: (a -> b) -> (b, b) so instantiating them (removing the quantifiers) can only be done once, at the top level. To correctly describe the type of f requires that they be locally quantified: f :: ((for all a: a) -> (for all b: b)) -> (c, d) which means that each time g is applied, a and b may be instantiated differently. f's actual argument must have a type at least as general as ((for all a: a) -> (for all b: b)), and may not be some less general instance of this type. Type variables c and d are still implicitly quantified at the top level and, now that g's result type is a generic type variable, any types chosen for c and d are guaranteed to be instances of it. This type for f does not express the fact that b only needs to be at least as general as the types c and d. For example, if c and d were both Bool then any function of type (for all a: a -> Bool) would be a suitable argument to f but it would not match the above type for f.
  • great smoky mountains — the W part of the Appalachians, in W North Carolina and E Tennessee. Highest peak: Clingman's Dome, 2024 m (6642 ft)
  • greenwich observatory — the national astronomical observatory of Great Britain, housed in a castle in E Sussex; formerly located at Greenwich.
  • hyperkinetic disorder — another name for attention deficit hyperactivity disorder (ADHD)
  • hyperlipoproteinaemia — the condition of having an abnormally high level of lipoproteins in the blood
  • hysterosalpingography — (medicine) X-ray examination of the uterus and oviducts following injection of a radiopaque substance.
  • in more ways than one — You say in more ways than one to indicate that what you have said is intended to have more than one meaning.
  • induced radioactivity — artificial radioactivity.
  • infant mortality rate — number of babies dying
  • infertility treatment — treatment aimed at helping a couple conceive
  • inflationary universe — a version of the big bang theory in which the universe underwent very rapid growth during the first fraction of a second before it settled down to its current rate of expansion.
  • insulin shock therapy — a former treatment for mental illness, especially schizophrenia, employing insulin-induced hypoglycemia as a method for producing convulsive seizures.
  • intellectual property — Law. property that results from original creative thought, as patents, copyright material, and trademarks.
  • internal iliac artery — iliac artery (def 3).
  • interpersonal therapy — a type of psychotherapy that focuses on conflicts in one's personal relationships.
  • intersubstitutability — a person or thing acting or serving in place of another.
  • intracoastal waterway — a mostly inland water route, partly natural and partly artificial, extending 1550 miles (2500 km) along the Atlantic coast from Boston to Florida Bay (Atlantic Intracoastal Waterway) and 1116 miles (1800 km) along the Gulf coast from Carrabelle, Fla., to Brownsville, Tex. (Gulf Intracoastal Waterway) constructed to protect small craft from the hazards of the open sea.
  • isopropylideneacetone — mesityl oxide.
  • laboratory technician — sb who assists in a laboratory
  • law of thermodynamics — any of three principles variously stated in equivalent forms, being the principle that the change of energy of a thermodynamic system is equal to the heat transferred minus the work done (first law of thermodynamics) the principle that no cyclic process is possible in which heat is absorbed from a reservoir at a single temperature and converted completely into mechanical work (second law of thermodynamics) and the principle that it is impossible to reduce the temperature of a system to absolute zero in a finite number of operations (third law of thermodynamics)
  • liability engineering — the practice by a company of taking steps to avoid liability for any fraudulent dealings with it, such as making a credit-card owner responsible for any abuses of the card by a third party
  • magnetic permeability — permeability (def 2).
  • majority shareholding — a holding of more than half a company's shares
  • mean time to recovery — (specification)   (MTTR) The average time that a device will take to recover from a non-terminal failure. Examples of such devices range from self-resetting fuses (where the MTTR would be very short, probably seconds), up to whole systems which have to be replaced. The MTTR would usually be part of a maintenance contract, where the user would pay more for a system whose MTTR was 24 hours, than for one of, say, 7 days. This means the supplier is guaranteeing to have the system up and running again within 24 hours (or 7 days) of being notified of the failure. Some devices have a MTTR of zero, which means that they have redundant components which can take over the instant the primary one fails, see RAID for example. See also Mean Time Between Failures.
  • mechanical metallurgy — the branch of metallurgy dealing with the response of metals to applied forces.
  • mechanical solidarity — social cohesiveness that is based on shared activities, beliefs, and experiences and is characteristic of simple traditional societies.
  • medium dry white wine — Medium dry white wine is white wine that is not very sweet.
  • methyltrinitrobenzene — TNT.
  • metopon hydrochloride — a narcotic drug, C18H21O3N·HCl, derived from morphine, but slightly more potent: used in medicine to relieve pain
  • miniature photography — photography with a camera using film that is 35 millimeters wide or less.
  • multichannel analyser — an electronic instrument, such as a pulse height analyser, that splits an input waveform into a large number of channels in accordance with a particular parameter of the input
  • multilayer perceptron — A network composed of more than one layer of neurons, with some or all of the outputs of each layer connected to one or more of the inputs of another layer. The first layer is called the input layer, the last one is the output layer, and in between there may be one or more hidden layers.
  • network filing system — (spelling)   Misnomer for Network File System.
  • new year's resolution — If you make a New Year's resolution, you make a decision at the beginning of a year to start doing something or to stop doing something.
  • 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.
  • north atlantic treaty — the treaty (1949) signed by 12 countries, providing for the establishment of NATO.
  • overuse strain injury — (medical)   (Or "repetitive strain injury", RSI, "repetitive strain disorder") Any tendon or muscle injury resulting from overuse, usually in the hand, wrist, or arm. Injury may be caused by any combination of repetitive, unacustomed, or prolonged movements, forcefulness, or an awkward position (often due to bad ergonomics). The symptoms are pain, tingling, weakness, numbness, swelling, cracking, stiffness, or reduced coordination. Common conditions are: Carpal tunnel syndrome, where swelling of the membrane linings in your wrist surrounding the tendons that bend your fingers compresses the median nerve. This may result in numbness and pain in the hand, arm, shoulder, and neck. Tennis elbow, where rotating your wrist and using force causes a form of epicondylitis. Tendinitis, where unacustomed exercise or repeated awkward movements inflame wrist, elbow, or shoulder tendons, often leading to severe stiffness. Trigger finger, a popping or catching sensation when you bend your finger, wrist, or shoulder. This form of tenosynovitis is caused by repetitive hand movements. To prevent the condition worsening, treat the pain with heat, cold, or aspirin, ibuprofen, or naproxen sodium; rest; or immobilise the injured area with a splint or bandage. See a doctor.
  • parliamentary inquiry — a question asked of the presiding officer of a parliament in relation to parliamentary law
  • persistence of memory — a painting (1931) by Salvador Dali.
  • personality inventory — a questionnaire designed to measure personality types or characteristics.
  • play russian roulette — take a foolish risk
  • politically incorrect — not politically correct; potentially offensive to a particular group of people: politically incorrect jokes.
  • polygenic inheritance — the heredity of complex characters that are determined by a large number of genes, each one usually having a relatively small effect.
  • 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
  • public-key encryption — (cryptography)   (PKE, Or "public-key cryptography") An encryption scheme, introduced by Diffie and Hellman in 1976, where each person gets a pair of keys, called the public key and the private key. Each person's public key is published while the private key is kept secret. Messages are encrypted using the intended recipient's public key and can only be decrypted using his private key. This is often used in conjunction with a digital signature. The need for sender and receiver to share secret information (keys) via some secure channel is eliminated: all communications involve only public keys, and no private key is ever transmitted or shared. Public-key encryption can be used for authentication, confidentiality, integrity and non-repudiation. See also knapsack problem.
  • pulse height analyser — a multichannel analyser that sorts pulses into selected amplitude ranges
  • pulse height analyzer — an instrument that records or counts an electrical pulse if its amplitude falls within specified limits: used in nuclear physics research for the determination of energy spectra of nuclear radiations
  • put in the hard yards — to make a great effort to achieve an end
  • pyrenean mountain dog — a large heavily built dog of an ancient breed originally used to protect sheep from wild animals: it has a long thick white coat with a dense ruff
  • quality point average — grade point average.
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?