0%

24-letter words containing f, a, t, e, n, s

  • give hostages to fortune — to place oneself in a position in which misfortune may strike through the loss of what one values most
  • gottfried von strassburg — early 13th-century German poet; author of the incomplete epic Tristan and Isolde, the version of the legend that served as the basis of Wagner's opera
  • grandfather, father, son — (operating system)   (GFS) A backup rotation scheme in which a "grandfather" backup is performed on the first Monday of each month, a "father" backup is performed on every other Monday and a "son" backup is performed on every other day of the week. Grandfather tapes are kept for a year, father tapes for a month and son tapes for a week. The exact schedule (and thus the number of tapes required) may vary, as may the choice of full backup or incremental backup, but the idea is that it should be possible to restore versions of any file of different ages: e.g. yesterday's, last week's or last year's version.
  • graphical user interface — a software interface designed to standardize and simplify the use of computer programs, as by using a mouse to manipulate text and images on a display screen featuring icons, windows, and menus.
  • have at one's fingertips — to have available for instant use
  • house of representatives — the lower legislative branch in many national and state bicameral governing bodies, as in the United States, Mexico, and Japan.
  • in one's heart of hearts — Anatomy. a hollow, pumplike organ of blood circulation, composed mainly of rhythmically contractile smooth muscle, located in the chest between the lungs and slightly to the left and consisting of four chambers: a right atrium that receives blood returning from the body via the superior and inferior vena cavae, a right ventricle that pumps the blood through the pulmonary artery to the lungs for oxygenation, a left atrium that receives the oxygenated blood via the pulmonary veins and passes it through the mitral valve, and a left ventricle that pumps the oxygenated blood, via the aorta, throughout the body.
  • information superhighway — internet
  • iterated function system — (graphics)   (IFS) A class of fractals that yield natural-looking forms like ferns or snowflakes. Iterated Function Systems use a very easy transformation that is done recursively.
  • knowledge sharing effort — (project)   An ARPA project developing techniques and methods for building large-scale knowledge bases which are sharable and reusable.
  • lab for computer science — MIT. http://lcs.mit.edu/.
  • land of the midnight sun — any of those countries containing land within the Arctic Circle where there is a midnight sun in midsummer, especially Norway, Sweden, or Finland.
  • leave someone to himself — not to control or direct someone
  • line of least resistance — the easiest, but not necessarily the best or most honourable, course of action
  • liquid components of gas — Liquid components of gas are associated hydrocarbons in natural gas, which include ethane, propane, and butane.
  • look someone in the face — to look directly at a person without fear or shame
  • macintosh user interface — (operating system)   The graphical user interface used by Apple Computer's Macintosh family of personal computers, based on graphical representations of familiar office objects (sheets of paper, files, wastepaper bin, etc.) positioned on a two-dimensional "desktop" workspace. Programs and data files are represented on screen by small pictures (icons). An object is selected by moving a mouse over the real desktop which correspondingly moves the pointer on screen. When the pointer is over an icon on screen, the icon is selected by pressing the button on the mouse. A hierarchical file system is provided that lets a user "drag" a document (a file) icon into and out of a folder (directory) icon. Folders can also contain other folders and so on. To delete a document, its icon is dragged into a trash can icon. For people that are not computer enthusiasts, managing files on the Macintosh is easier than using the MS-DOS or Unix command-line interpreter. The Macintosh always displays a row of menu titles at the top of the screen. When a mouse button is pressed over a title, a pull-down menu appears below it. With the mouse button held down, the option within the menu is selected by pointing to it and then releasing the button. Unlike the IBM PC, which, prior to Microsoft Windows had no standard graphical user interface, Macintosh developers almost always conform to the Macintosh interface. As a result, users are comfortable with the interface of a new program from the start even if it takes a while to learn all the rest of it. They know there will be a row of menu options at the top of the screen, and basic tasks are always performed in the same way. Apple also keeps technical jargon down to a minimum. Although the Macintosh user interface provides consistency; it does not make up for an application program that is not designed well. Not only must the application's menus be clear and understandable, but the locations on screen that a user points to must be considered. Since the mouse is the major selecting method on a Macintosh, mouse movement should be kept to a minimum. In addition, for experienced typists, the mouse is a cumbersome substitute for well-designed keyboard commands, especially for intensive text editing.
  • make one's presence felt — If you make your presence felt, you do something which makes people notice you or pay attention to you.
  • mean time between faults — Mean Time Between Failures
  • not to have the foggiest — to have no idea whatsoever
  • officers' training corps — part of the British Army which provides military leadership training to students at UK universities
  • open shortest-path first — Open Shortest-Path First Interior Gateway Protocol
  • open software foundation — (body)   (OSF) A foundation created by nine computer vendors, (Apollo, DEC, Hewlett-Packard, IBM, Bull, Nixdorf, Philips, Siemens and Hitachi) to promote "Open Computing". It is planned that common operating systems and interfaces, based on developments of Unix and the X Window System will be forthcoming for a wide range of different hardware architectures. OSF announced the release of the industry's first open operating system - OSF/1 on 23 October 1990.
  • passive balance of trade — a negative balance of trade
  • photomechanical transfer — a method of producing photographic prints or offset printing plates from paper negatives by a chemical transfer process rather than by exposure to light
  • pretty amazing new stuff — (humour, communications)   (PANS) What PSTN is evolving into.
  • professional association — a body of persons engaged in the same profession, formed usually to control entry into the profession, maintain standards, and represent the profession in discussions with other bodies
  • professional corporation — a corporation formed by one or more licensed practitioners, especially medical or legal, to operate their practices on a corporate plan. Abbreviation: PC, P.C.
  • public relations officer — a person who is responsible for communications with the public
  • quick-assembly furniture — furniture such as shelves and cupboards which you buy as a number of separate pieces and assemble yourself
  • referential transparency — (programming)   An expression E is referentially transparent if any subexpression and its value (the result of evaluating it) can be interchanged without changing the value of E. This is not the case if the value of an expression depends on global state which can change value. The most common example of changing global state is assignment to a global variable. For example, if y is a global variable in: f(x) { return x+y; } g(z) { a = f(1); y = y + z; return a + f(1); } function g has the "side-effect" that it alters the value of y. Since f's result depends on y, the two calls to f(1) will return different results even though the argument is the same. Thus f is not referentially transparent. Changing the order of evaluation of the statements in g will change its result. We could make f above referentially transparent by passing in y as an argument: f(x, y) = x+y Similarly, g would need to take y as an argument and return its new value as part of the result: g(z, y) { a = f(1, y); y' = y+z; return (a + f(1, y'), y'); } Referentially transparent programs are more amenable to formal methods and easier to reason about because the meaning of an expression depends only on the meaning of its subexpressions and not on the order of evaluation or side-effects of other expressions. We can stretch the concept of referential transparency to include input and output if we consider the whole program to be a function from its input to its output. The program as a whole is referentially transparent because it will always produce the same output when given the same input. This is stretching the concept because the program's input may include what the user types, the content of certain files or even the time of day. If we do not consider global state like the contents of files as input, then writing to a file and reading what was written behaves just like assignment to a global variable. However, if we must consider the state of the universe as an input rather than global state then any deterministic system would be referentially transparent! See also extensional equality, observational equivalence.
  • rocky mountain whitefish — mountain whitefish.
  • see someone hanged first — to refuse absolutely to do what one has been asked
  • self-extensible language — ["SEL - A Self-Extensible Programming Language", G. Molnar, Computer J 14(3):238-242 (Aug 1971)].
  • senegambia confederation — an economic and political union (1982–89) between Senegal and The Gambia
  • serial interface adaptor — (SIA) The Ethernet driver chip used on a Filtabyte Ethernet card.
  • shadow foreign secretary — the member of the main opposition party in Parliament who would hold the office of Foreign Secretary if their party were in power
  • single transferable vote — of or relating to a system of voting in which voters list the candidates in order of preference. Any candidate achieving a predetermined proportion of the votes in a constituency is elected. Votes exceeding this amount and those cast for the bottom candidate are redistributed according to the stated preferences. Redistribution continues until all the seats are filled
  • split image range finder — a range finder in which opposing halves of a split field move relative to each other and coincide when the object centered in the field is in focus.
  • standard housing benefit — a rebate of a proportion of a person's eligible housing costs paid by a local authority and calculated on the basis of level of income and family size
  • stratified charge engine — an internal-combustion engine in which a small charge of a rich fuel mixture is ignited first and used to improve combustion of a larger charge of a lean fuel mixture.
  • stratified random sample — a random sample of a population in which the population is first divided into distinct subpopulations, or strata, and random samples are then taken separately from each stratum.
  • take someone for granted — If you say that someone takes you for granted, you are complaining that they benefit from your help, efforts, or presence without showing that they are grateful.
  • tear someone off a strip — to rebuke (someone) angrily
  • telephony user interface — (communications)   (TUI) Either a software interface to telephony (e.g. a phone-capable PC) or a DTMF-based interface to software (e.g. voicemail).
  • telescope user interface — (hardware, interface)   (TUI) A remote control interface for a telescope.
  • the last of the mohicans — a historical novel (1826) by James Fenimore Cooper.
  • the ravages of something — the destructive effects of something
  • the suffragette movement — a movement advocating of the extension of the franchise to women, as in Britain at the beginning of the 20th century
  • to fight a losing battle — If you are fighting a losing battle, you are trying to achieve something but are not going to be successful.
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?