Random Articles

Have a deep view into what people are curious about.

πŸ”— Gemini Space

πŸ”— Computing πŸ”— Telecommunications

Gemini space denotes the whole of the public information that is published on the Internet by the Gemini community via the Gemini protocol. Thus, Gemini spans an alternative communication web, with hypertext documents that include hyperlinks to other resources that the user can easily access, similar to the secure version of the Hypertext Transfer Protocol (HTTPS), but with a focus on simplified information sharing, both in respect to creation and reading of Gemini content.

Discussed on

πŸ”— Vectrex

πŸ”— Video games

The Vectrex is a vector display-based home video game console developed by Smith Engineering. It was first released for North America in November 1982 and for both Europe and Japan in 1983. Originally manufactured by General Computer Electronics, it was licensed to Milton Bradley after they acquired the company. Bandai released the system in Japan.

In contrast to other video game systems available at the time, the Vectrex uses a monochrome CRT monitor, capable of displaying vector graphics, without need to be hooked up to a television set. The control pad is mounted to the base of the console, and is detachable. Games came with color overlays to compensate for the monochrome screen. A number of peripherals were also produced, such as a pair of 3D goggles known as the "3D Imager", alongside a "light-pen" that allowed the player to draw on the screen. The system also comes with a built-in game, Mine Storm, playable if a cartridge is absent.

The console was originally conceived by John Ross, an employee at Smith Engineering, as far back as late 1980. Originally an idea to clear out excess inventory of 1-inch monitors, the console became Smith's first foray into the home game market. It was at first conceived as a handheld system, known as the "Mini Arcade". Once the prototype was completed, it was presented to General Computer, who agreed to publish the console. Initial sales of the system were strong, causing General Computer to be acquired by Milton Bradley. The Vectrex was a victim of the North American video game crash of 1983, and was discontinued shortly after Milton Bradley's acquisition by Hasbro.

Despite being a commercial failure, the Vectrex was highly praised for its software library, graphical capabilities and use of a built-in monitor; several publications labeled it one of the best home consoles available at the time. The Vectrex is considered the first video game console to have a 3D-based peripheral. In later years, the system gained a cult following, with many releasing homebrew software for it. A colorized handheld version of the Vectrex was conceived in the late 1980s. However, the success of the Nintendo Game Boy and manufacturing cost caused it to be shelved.

Discussed on

πŸ”— Microsoft Kin

πŸ”— Technology πŸ”— Computing πŸ”— Telecommunications πŸ”— Brands πŸ”— Microsoft

Kin was a short-lived mobile phone line from Microsoft designed for users of social networking. The phones, aimed at people between ages 15 and 30, were manufactured by Sharp Corporation and sold through Verizon Wireless.

Microsoft invested two years and about US$1 billion developing the Kin platform, beginning with its acquisition of Danger Incorporated. The Kin was based on Windows CE.

The Kin ONE and TWO went on the market on May 14, 2010. Within two months, Verizon stopped selling the phones because of poor sales. Microsoft scrapped its planned European release, stopped promoting the devices, ceased production, and reassigned the Kin development team to other projects.

Microsoft updated its unsold Kin inventory with firmware that removed social and web-based features, and in December 2010 offered these re-purposed units through Verizon stores as limited feature phones, the Kin ONEm and the TWOm. In January 2011, Microsoft shut down the kin.com website, which controlled most of the earlier phones' features.

The Kin TWOm was discontinued in August 2011; unsold inventory could still be found for sale on deals sites as late as June 2013.

Discussed on

πŸ”— European Green Belt

πŸ”— Europe

The European Green Belt initiative is a grassroots movement for nature conservation and sustainable development along the corridor of the former Iron Curtain. The term refers to both an environmental initiative as well as the area it concerns. The initiative is carried out under the patronage of the International Union for Conservation of Nature and Mikhail Gorbachev. It is the aim of the initiative to create the backbone of an ecological network that runs from the Barents to the Black and Adriatic Seas.

The European Green Belt as an area follows the route of the former Iron Curtain and connects National Parks, Nature Parks, Biosphere Reserves and transboundary protected areas as well as non-protected valuable habitats along or across the (former) borders.

πŸ”— Curta: a mechanical calculator

πŸ”— Computing

The Curta is a small mechanical calculator developed by Curt Herzstark. The Curta's design is a descendant of Gottfried Leibniz's Stepped Reckoner and Charles Thomas's Arithmometer, accumulating values on cogs, which are added or complemented by a stepped drum mechanism. It has an extremely compact design: a small cylinder that fits in the palm of the hand.

Curtas were considered the best portable calculators available until they were displaced by electronic calculators in the 1970s.

Discussed on

πŸ”— Quiescence search

πŸ”— Chess

Quiescence search is an algorithm typically used to extend search at unstable nodes in minimax game trees in game-playing computer programs. It is an extension of the evaluation function to defer evaluation until the position is stable enough to be evaluated statically, that is, without considering the history of the position or future moves from the position. It mitigates the effect of the horizon problem faced by AI engines for various games like chess and Go.

Human players usually have enough intuition to decide whether to abandon a bad-looking move, or search a promising move to a great depth. A quiescence search attempts to emulate this behavior by instructing a computer to search "volatile" positions to a greater depth than "quiet" ones to make sure there are no hidden traps and to get a better estimate of its value.

Any sensible criterion may be used to distinguish "quiet" positions from "volatile" positions. One common criterion is that moves exist in the position that can dramatically change the valuation of the position, such as captures in chess or Go. As the main motive of quiescence search is to get a stable value out of a static evaluation function, it may also make sense to detect wide fluctuations in values returned by a simple heuristic evaluator over several ply, i.e. a history criterion. The quiescence search continues as along as the position remains volatile according to the criterion. In order to get the quiescence search to terminate, plies are usually restricted to moves that deal directly with the threat, such as moves that capture and recapture (often called a 'capture search') in chess. In highly "unstable" games like Go and reversi, a rather large proportion of computer time may be spent on quiescence searching.

Discussed on

πŸ”— IBM Common User Access

πŸ”— Computing πŸ”— Computing/Software

Common User Access (CUA) is a standard for user interfaces to operating systems and computer programs. It was developed by IBM and first published in 1987 as part of their Systems Application Architecture. Used originally in the MVS/ESA, VM/CMS, OS/400, OS/2 and Microsoft Windows operating systems, parts of the CUA standard are now implemented in programs for other operating systems, including variants of Unix. It is also used by Java AWT and Swing.

Discussed on

πŸ”— Cargo cult programming

πŸ”— Computing πŸ”— Computer science πŸ”— Computing/Software πŸ”— Computing/Computer science

Cargo cult programming is a style of computer programming characterized by the ritual inclusion of code or program structures that serve no real purpose. Cargo cult programming is symptomatic of a programmer not understanding either a bug they were attempting to solve or the apparent solution (compare shotgun debugging, deep magic). The term cargo cult programmer may apply when an unskilled or novice computer programmer (or one inexperienced with the problem at hand) copies some program code from one place to another with little understanding of how it works or whether it is required.

Cargo cult programming can also refer to the practice of applying a design pattern or coding style blindly without understanding the reasons behind that design principle. Examples being adding unnecessary comments to self-explanatory code, overzealous adherence to the conventions of a programming paradigm, or adding deletion code for objects that garbage collection automatically collect.

Obsessive and redundant checks for null values or testing whether a collection is empty before iterating its values may be a sign of cargo cult programming. Such obsessive checks make the code less readable, and often prevent the output of proper error messages, obscuring the real cause of a misbehaving program.

Discussed on

πŸ”— Casting out nines

πŸ”— Mathematics

The expression "casting out nines" may refer to any one of three arithmetical procedures:

  • Adding the decimal digits of a positive whole number, while optionally ignoring any 9s or digits which sum to a multiple of 9. The result of this procedure is a number which is smaller than the original whenever the original has more than one digit, leaves the same remainder as the original after division by nine, and may be obtained from the original by subtracting a multiple of 9 from it. The name of the procedure derives from this latter property.
  • Repeated application of this procedure to the results obtained from previous applications until a single-digit number is obtained. This single-digit number is called the "digital root" of the original. If a number is divisible by 9, its digital root is 9. Otherwise, its digital root is the remainder it leaves after being divided by 9.
  • A sanity test in which the above-mentioned procedures are used to check for errors in arithmetical calculations. The test is carried out by applying the same sequence of arithmetical operations to the digital roots of the operands as are applied to the operands themselves. If no mistakes are made in the calculations, the digital roots of the two resultants should be the same. If they are different, therefore, one or more mistakes must have been made in the calculations.

Discussed on

πŸ”— Xenu, Leader of the Galactic Federation

πŸ”— Paranormal πŸ”— Scientology

Xenu (), also called Xemu, was, according to Scientology founder L. Ron Hubbard, the dictator of the "Galactic Confederacy" who brought billions of his people to Earth (then known as "Teegeeack") in DC-8-like spacecraft 75 million years ago, stacked them around volcanoes, and killed them with hydrogen bombs. Official Scientology scriptures hold that the thetans (immortal spirits) of these aliens adhere to humans, causing spiritual harm.

These events are known within Scientology as "Incident II", and the traumatic memories associated with them as "The Wall of Fire" or "R6 implant". The narrative of Xenu is part of Scientologist teachings about extraterrestrial civilizations and alien interventions in earthly events, collectively described as "space opera" by Hubbard. Hubbard detailed the story in Operating Thetan level III (OT III) in 1967, warning that the "R6 implant" (past trauma) was "calculated to kill (by pneumonia, etc.) anyone who attempts to solve it".

Within the Church of Scientology, the Xenu story is part of the church's secret "Advanced Technology", considered a sacred and esoteric teaching, which is normally only revealed to members who have completed a lengthy sequence of courses costing large amounts of money. The church avoids mention of Xenu in public statements and has gone to considerable effort to maintain the story's confidentiality, including legal action on the grounds of copyright and trade secrecy. Officials of the Church of Scientology widely deny or try to hide the Xenu story. Despite this, much material on Xenu has leaked to the public via court documents and copies of Hubbard's notes that have been distributed through the Internet. In commentary on the impact of the Xenu text, academic scholars have discussed and analyzed the writings by Hubbard and their place within Scientology within the contexts of science fiction, UFO religions, Gnosticism and creation myths.

Discussed on