0%

18-letter words containing n, i, g, h, t

  • divergent thinking — thinking in an unusual and unstereotyped way, e.g. to generate several possible solutions to a problem
  • division algorithm — the theorem that an integer can be written as the sum of the product of two integers, one a given positive integer, added to a positive integer smaller than the given positive integer. Compare Euclidean algorithm.
  • do not give a hoot — If you say that you don't give a hoot or don't care two hoots about something, you are emphasizing that you do not care at all about it.
  • do one's own thing — a material object without life or consciousness; an inanimate object.
  • drinking chocolate — sweetened cocoa powder
  • duty-free shopping — the making of duty-free purchases
  • eighty-column mind — (abuse)   The sort said to be possessed by persons for whom the transition from punched card to paper tape was traumatic (nobody has dared tell them about disks yet). It is said that these people, including (according to an old joke) the founder of IBM, will be buried "face down, 9-edge first" (the 9-edge being the bottom of the card). This directive is inscribed on IBM's 1402 and 1622 card readers and is referenced in a famous bit of doggerel called "The Last Bug", the climactic lines of which are as follows: He died at the console Of hunger and thirst. Next day he was buried, Face down, 9-edge first. The eighty-column mind is thought by most hackers to dominate IBM's customer base and its thinking. See fear and loathing, card walloper.
  • eighty-twenty rule — (programming)   The program-design version of the law of diminishing returns. The 80/20 rule says that roughly 80% of the problem can be solved with 20% of the effort that it would take to solve the whole problem. For example, parsing e-mail addresses in "From:" lines in e-mail messages is notoriously difficult if you follow the RFC 2822 specification. However, about 60% of actual "From:" lines are in the format "From: Their Name <[email protected]>", with a far more constrained idea of what can be in "user" or "host" than in RFC 2822. Another 25% just add double-quotes around "Their Name". Matching just those two patterns would thus cover 85% of "From:" lines, with a tiny portion of the code required to fully implement RFC2822. (Adding support for "From: [email protected]" and "From: [email protected] (Their Name) " brings coverage to almost 100%, leaving only really baroque things that RFC-2822 permits, like "From: Pete(A wonderful \) chap)
  • ethnomethodologist — A person engaged in ethnomethodology.
  • ethnomusicological — Relating to or pertaining to ethnomusicology.
  • ethnopsychological — Relating to ethnopsychology.
  • exhaustive testing — (programming)   Executing a program with all possible combinations of inputs or values for program variables.
  • exhibition killing — the murder of a hostage by terrorists, filmed for broadcasting on television or the internet
  • fehling's solution — a blue solution of copper sulfate, Rochelle salt, and sodium hydroxide, used to test for the presence of a sugar, aldehyde, etc.
  • first things first — You say 'first things first' when you are talking about something that should be done or dealt with before anything else because it is the most important.
  • fishing expedition — a legal proceeding mainly for the purpose of interrogating an adversary, or of examining his or her property and documents, in order to gain useful information.
  • flash butt welding — a method of welding metal edge-to-edge with a powerful electric flash followed by the application of pressure.
  • fob shipping point — FOB shipping point is a shipping term indicating that ownership of goods passes when they are transferred to the carrier.
  • for the time being — the system of those sequential relations that any event has to any other, as past, present, or future; indefinite and continuous duration regarded as that in which events succeed one another.
  • foundling hospital — an institutional home for foundlings.
  • general anesthesia — induced unconsciousness
  • genetic algorithms — genetic algorithm
  • get it in the neck — the part of the body of an animal or human being that connects the head and the trunk.
  • get one's irish up — of, relating to, or characteristic of Ireland, its inhabitants, or their language.
  • giant peacock moth — the largest European moth, an emperor, Saturnia pyri, reaching 15 cm (6 in.) in wingspan. It is mottled brown with a prominent ocellus on each wing and being night-flying can be mistaken for a bat
  • glomerulonephritis — a kidney disease affecting the capillaries of the glomeruli, characterized by albuminuria, edema, and hypertension.
  • go down in history — If someone or something goes down in history, people in the future remember them because of particular actions that they have done or because of particular events that have happened.
  • gone with the wind — a novel (1936) by Margaret Mitchell.
  • government housing — housing owned and managed by the federal or state government, which is rented out to tenants, esp as a form of affordable housing
  • have a thing about — If you have a thing about someone or something, you have very strong feelings about them.
  • hearing impairment — partial deafness
  • heart-lung machine — a device through which blood is shunted temporarily for oxygenation during surgery, while the heart or a lung is being repaired.
  • heating degree-day — a degree-day below the standard temperature of 65°F or 19°C, used in estimating fuel consumption.
  • hegelian dialectic — an interpretive method, originally used to relate specific entities or events to the absolute idea, in which some assertible proposition (thesis) is necessarily opposed by an equally assertible and apparently contradictory proposition (antithesis) the mutual contradiction being reconciled on a higher level of truth by a third proposition (synthesis)
  • helicopter gunship — military attack helicopter
  • herringbone stitch — a type of cross-stitch in embroidery similar to the catch stitch in sewing, consisting of an overlapped V -shaped stitch that when worked in a continuous pattern produces a twill-weave effect.
  • heuristics testing — failure-directed testing
  • high speed connect — (hardware)   (HSC) A Hewlett-Packard bus like EISA.
  • high-tensile steel — low-alloy steel which can withstand great strain without breaking or becoming deformed, having a yield strength range of 50,000 to 100,000 pounds per square inch
  • highlight halftone — dropout (def 7).
  • horizontal tasting — a tasting of wines from the same year but from different vineyards, producers, etc.
  • houghton-le-spring — a town in N England, in Sunderland unitary authority, Tyne and Wear: coal-mining. Pop: 36 746 (2001)
  • housing conditions — the physical state of houses or dwellings
  • human rights group — a group that campaigns for human rights
  • hungarian notation — (language, convention)   A linguistic convention requiring one or more letters to be added to the start of variable names to denote scope and/or type. Hungarian Notation is mainly confined to Microsoft Windows programming environments, such as Microsoft C, C++ and Visual Basic. It was originally devised by Charles Simonyi, a Hungarian, who was a senior programmer at Microsoft for many years. He disliked the way that names in C programs gave no clue as to the type, leading to frequent programmer errors. According to legend, fellow programmers at Microsoft, on seeing the convoluted, vowel-less variable names produced by his scheme, said, "This might as well be in Greek - or even Hungarian!". They made up the name "Hungarian notation" (possibly with "reverse Polish notation" in mind). Hungarian Notation is not really necessary when using a modern strongly-typed language as the compiler warns the programmer if a variable of one type is used as if it were another type. It is less useful in object-oriented programming languages such as C++, where many variables are going to be instances of classes and so begin with "obj". In addition, variable names are essentially only comments, and thus are just as susceptible to becoming out-of-date and incorrect as any other comment. For example, if a signed short int becomes an unsigned long int, the variable name, and every use of it, should be changed to reflect its new type. A variable's name should describe the values it holds. Type and scope are aspects of this, but Hungarian Notation overemphasises their importance by allocating so much of the start of the name to them. Furthermore, type and scope information can be found from the variable's declaration. Ironically, this is particularly easy in the development environments in which Hungarian Notation is typically used.
  • huntington station — a town on W Long Island, in SE New York.
  • hypothesis testing — the theory, methods, and practice of testing a hypothesis concerning the parameters of a population distribution (the null hypothesis) against another (the alternative hypothesis) which will be accepted only if its probability exceeds a predetermined significance level, generally on the basis of statistics derived from random sampling from the given population
  • i know the feeling — You say 'I know the feeling' to show that you understand or feel sorry about a problem or difficult experience that someone is telling you about.
  • idylls of the king — a series of poems by Tennyson, based on Arthurian legend.
  • immunohistological — the microscopic study of tissues with the aid of antibodies that bind to tissue components and reveal their presence.
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?