"Q-Less" is the sixth episode of the first season of the American science fiction television series Star Trek: Deep Space Nine (DS9). Set in the 24th century, the series follows the adventures on Deep Space Nine, a space station located near a stable wormhole between the Alpha and Gamma quadrants of the Milky Way Galaxy. In this episode, Vash (Jennifer Hetrick), a former love interest of Captain Jean-Luc Picard, arrives aboard the Deep Space Nine station trying to elude her companion, Q (John de Lancie), and make a profit selling archaeological artefacts from the Gamma Quadrant, including a mysterious alien crystal. "Q-Less" saw the return of Vash and Q, two recurring characters from Star Trek: The Next Generation (TNG). It was Jennifer Hetrick's final performance as Vash and John de Lancie's only appearance as Q on Deep Space Nine.
Two former writers from TNG, Hannah Louise Shearer and Robert Hewitt Wolfe, wrote the episode. While it would be Shearer's last Star Trek credit, Wolfe's work on the script led to him joining the writing team on DS9. The producers wanted to introduce Q to the show in a seamless manner; when Shearer proposed a Vash-centric story, Q was added to the script. "Q-Less" highlights the differences between DS9 and TNG by comparing the reactions of Commander Benjamin Sisko (Avery Brooks) and Captain Picard to Q. On its first broadcast, "Q-Less" received Nielsen ratings of 12.8 percent, placing it as the fifth most watched episode of the season. Reception was mixed, with reviewers criticizing the imbalance of time spent with Vash and Q in contrast to the rest of the cast, as well as the unnecessary technobabble in the story and the MacGuffin-like plot device represented by the alien crystal.
Less or LESS may refer to:
Acronyms:
Abbreviations:
A privative, named from Latin privare, "to deprive", is a particle that negates or inverts the value of the stem of the word. In Indo-European languages many privatives are prefixes; but they can also be suffixes, or more independent elements.
In English there are three primary privative prefixes, all cognate from PIE:
These all stem from a PIE syllabic nasal privative *n̥-, the zero ablaut grade of the negation *ne, i.e. "n" used as a vowel, as in some English pronunciations of "button". This is the source of the 'n' in 'an-' privative prefixed nouns deriving from the Greek, which had both. For this reason, it appears as an- before vowel, e.g. anorexia, anesthesia.
The same prefix appears in Sanskrit, also as a-, an-. In in Slavic languages the privative is nie- and u-, e.g. nieboga, ubogi. In North Germanic languages, the -n- has disappeared and Old Norse has ú- (e.g. ú-dáins-akr), Danish and Norwegian have u-, whereas Swedish uses o, and Icelandic uses the etymologically related ó.
Less (sometimes stylized as LESS) is a dynamic style sheet language that can be compiled into Cascading Style Sheets (CSS) and run on the client side or server side. Designed by Alexis Sellier, Less is influenced by Sass and has influenced the newer "SCSS" syntax of Sass, which adapted its CSS-like block formatting syntax. Less is open source. Its first version was written in Ruby; however, in the later versions, use of Ruby has been deprecated and replaced by JavaScript. The indented syntax of Less is a nested metalanguage, as valid CSS is valid Less code with the same semantics. Less provides the following mechanisms: variables, nesting, mixins, operators and functions; the main difference between Less and other CSS precompilers being that Less allows real-time compilation via less.js by the browser.
Less allows variables to be defined. Variables in Less are defined with an at sign (@). Variable assignment is done with a colon (:).
During translation, the values of the variables are inserted into the output CSS document.