Random Articles
Have a deep view into what people are curious about.
π Neo Geo System
The Neo Geo (Japanese: γγͺγΈγͺ, Hepburn: Neojio), stylised as NEOγ»GEO, also written as NEOGEO, is a cartridge-based arcade system board and fourth-generation home video game console released on April 26, 1990, by Japanese game company SNK Corporation. It was the first system in SNK's Neo Geo family. The Neo Geo was marketed as 24-bit; its CPU is technically a 16/32-bit 68000-based system with an 8/16-bit Z80 coprocessor, while its GPU chipset has a 24-bit graphics data bus.
The Neo Geo originally launched as the MVS (Multi Video System) coin-operated arcade machine. The MVS offers owners the ability to put up to six different cartridges into a single cabinet, a unique feature that was also a key economic consideration for operators with limited floorspace, as well as saving money long-term. With its games stored on self-contained cartridges, a game cabinet can be exchanged for a different game title by swapping the game's ROM cartridge and cabinet artwork. A home console version was also made, called AES (Advanced Entertainment System). It was originally launched as a rental console for video game stores in Japan (called Neo Geo Rental System), with its high price causing SNK not to release it for home use β this was later reversed due to high demand and it came into the market as a luxury console. The AES had the same raw specs as the MVS and had full compatibility, thus managed to bring a true arcade experience to home users. The Neo Geo was revived along with the brand overall in December 2012 through the introduction of the Neo Geo X handheld and home system.
The Neo Geo was a very powerful system when released, more powerful than any video game console at the time, and many arcade systems such as rival Capcom's CPS, which did not surpass it until the CP System II in 1993. The Neo Geo MVS was a success during the 1990s due to the cabinet's low cost, six ROM slots, and compact size. Several successful video game series were released for the platform, such as Fatal Fury, Art of Fighting, Samurai Shodown, The King of Fighters and Metal Slug. The AES had a very niche market in Japan, though sales were very low in the U.S. due to its high price for both the hardware and software; but it has since gained a cult following and is now considered a collectable. Neo Geo hardware production lasted seven years, discontinued in 1997, whereas game software production lasted until 2004, making Neo Geo the longest supported arcade system of all time. The AES console was succeeded by the Neo Geo CD and the MVS arcade by the Hyper Neo Geo 64. As of March 1997, the Neo Geo and the Neo Geo CD combined had sold 980,000 units worldwide. In 2009, the Neo Geo was ranked 19th out of the 25 best video game consoles of all time by video game website IGN.
Discussed on
- "Neo Geo System" | 2015-03-09 | 37 Upvotes 36 Comments
π Choking game, also known as the fainting game
The choking game (also known as the fainting game and a wide variety of slang terms) refers to intentionally cutting off oxygen to the brain with the goal of inducing temporary loss of consciousness and euphoria.
Discussed on
- "Choking game, also known as the fainting game" | 2019-06-30 | 25 Upvotes 25 Comments
π Young's Lattice
In mathematics, Young's lattice is a partially ordered set and a lattice that is formed by all integer partitions. It is named after Alfred Young, who, in a series of papers On quantitative substitutional analysis, developed representation theory of the symmetric group. In Young's theory, the objects now called Young diagrams and the partial order on them played a key, even decisive, role. Young's lattice prominently figures in algebraic combinatorics, forming the simplest example of a differential poset in the sense of Stanley (1988). It is also closely connected with the crystal bases for affine Lie algebras.
Discussed on
- "Young's Lattice" | 2021-12-07 | 42 Upvotes 15 Comments
π Max Headroom broadcast signal intrusion
A broadcast signal hijacking of two television stations in Chicago, Illinois was carried out on November 22, 1987, in an act of video piracy. The stations' broadcasts were interrupted by a video of an unknown person wearing a Max Headroom mask and costume, accompanied by distorted audio.
The first incident took place for 25 seconds during the sports segment of WGN-TV's 9:00 p.m. news broadcast; the second occurred around two hours later, for about 90 seconds during PBS affiliate WTTW's broadcast of Doctor Who.
The hacker made references to Max Headroom's endorsement of Coca-Cola, the TV series Clutch Cargo, WGN anchor Chuck Swirsky; and "all the greatest world newspaper nerds", a reference to WGN's call letters, which stand for "World's Greatest Newspaper". A corrugated panel swiveled back and forth mimicking Max Headroom's geometric background effect. The video ended with a pair of exposed buttocks being spanked with a flyswatter before normal programming resumed. The culprits were never caught or identified.
Discussed on
- "Max Headroom Signal Hijacking" | 2023-11-23 | 133 Upvotes 36 Comments
- "Max Headroom Signal Hijacking" | 2023-07-28 | 14 Upvotes 2 Comments
- "Max Headroom Signal Hijacking" | 2021-08-11 | 39 Upvotes 2 Comments
- "Max Headroom broadcast signal intrusion" | 2019-11-23 | 211 Upvotes 54 Comments
- "The 1987 Max Headroom Pirating Incident" | 2010-03-21 | 15 Upvotes 5 Comments
π Fast inverse square root
Fast inverse square root, sometimes referred to as Fast InvSqrt() or by the hexadecimal constant 0x5F3759DF, is an algorithm that estimates β1ββx, the reciprocal (or multiplicative inverse) of the square root of a 32-bit floating-point number x in IEEE 754 floating-point format. This operation is used in digital signal processing to normalize a vector, i.e., scale it to length 1. For example, computer graphics programs use inverse square roots to compute angles of incidence and reflection for lighting and shading. The algorithm is best known for its implementation in 1999 in the source code of Quake III Arena, a first-person shooter video game that made heavy use of 3D graphics. The algorithm only started appearing on public forums such as Usenet in 2002 or 2003. At the time, it was generally computationally expensive to compute the reciprocal of a floating-point number, especially on a large scale; the fast inverse square root bypassed this step.
The algorithm accepts a 32-bit floating-point number as the input and stores a halved value for later use. Then, treating the bits representing the floating-point number as a 32-bit integer, a logical shift right by one bit is performed and the result subtracted from the number 0x5F3759DF, which is a floating point representation of an approximation of β2127. This results in the first approximation of the inverse square root of the input. Treating the bits again as a floating-point number, it runs one iteration of Newton's method, yielding a more precise approximation.
The algorithm was originally attributed to John Carmack, but an investigation showed that the code had deeper roots in both the hardware and software side of computer graphics. Adjustments and alterations passed through both Silicon Graphics and 3dfx Interactive, with Gary Tarolli's implementation for the SGI Indigo as the earliest known use. It is not known how the constant was originally derived, though investigation has shed some light on possible methods.
With subsequent hardware advancements, especially the x86 SSE instruction rsqrtss, this method is not generally applicable to modern computing, though it remains an interesting example both historically and for more limited machines.
Discussed on
- "Fast inverse square root" | 2017-01-24 | 17 Upvotes 4 Comments
- "Fast inverse square root" | 2009-10-22 | 37 Upvotes 20 Comments
π Hygiene Hypothesis
In medicine, the hygiene hypothesis states that early childhood exposure to particular microorganisms (such as the gut flora and helminth parasites) protects against allergies by properly tuning the immune system. In particular, a lack of such exposure is thought to lead to poor immune tolerance. The time period for exposure begins before birth and ends at school age.
While early versions of the hypothesis referred to microorganism exposure in general, later versions apply to a specific set of microbes that have co-evolved with humans. The updates have been given various names, including the microbiome depletion hypothesis, the microflora hypothesis, and the "old friends" hypothesis. There is a significant amount of evidence supporting the idea that lack of exposure to these microbes is linked to allergies or other conditions, although it is still rejected by many scientists.
The term "hygiene hypothesis" has been described as a misnomer because people incorrectly interpret it as referring to their own cleanliness. Having worse personal hygiene, such as not washing hands before eating, only increases the risk of infection without affecting the risk of allergies or immune disorders. Hygiene is essential for protecting vulnerable populations such as the elderly from infections, preventing the spread of antibiotic resistance, and combating emerging infectious diseases such as Ebola. The hygiene hypothesis does not suggest that having more infections during childhood would be an overall benefit.
π Regular Heptadecagon Inscribed in a Circle
Discussed on
- "Regular Heptadecagon Inscribed in a Circle" | 2010-04-15 | 44 Upvotes 13 Comments
π Salt Water Dimmers
Salt water dimmers, which are an example of liquid rheostats, were used in theatres after the introduction of electric lighting to control the brightness of the lights on stage.
Discussed on
- "Salt Water Dimmers" | 2024-09-29 | 85 Upvotes 67 Comments
π Daughter from California Syndrome
"Daughter from California" syndrome is a phrase used in the medical profession to describe a situation in which a long-lost relative arrives at the hospital at which a dying elderly relative is being treated, and insists that the medical team pursue aggressive measures to prolong the patient's life, or otherwise challenges the care the patient is being given. In his 2015 book The Conversation: A Revolutionary Plan for End-of-Life Care, American doctor Angelo Volandes ascribes this to "guilt and denial," "not necessarily what is best for the patient."
The "daughter from California" is often described as angry, articulate and informed.
Medical professionals say that because the "daughter from California" has been absent from the life and care of the elderly patient, they are frequently surprised by the scale of the patient's deterioration, and may have unrealistic expectations about what is medically feasible. They may feel guilty about having been absent, and may therefore feel motivated to reassert their role as an involved caregiver.
The phrase was first documented by a collective of gerontologists in a 1991 case report published in the Journal of the American Geriatrics Society, titled "Decision Making in the Incompetent Elderly: 'The Daughter from California Syndrome'". In the paper, Molloy and colleagues presented strategies intended to help medical staff deal with the difficult family members of mentally incompetent patients.
In California, the "daughter from California" is known as the "daughter from New York".
Discussed on
- "Daughter from California Syndrome" | 2024-06-21 | 25 Upvotes 18 Comments
- "Daughter from California Syndrome" | 2021-04-17 | 36 Upvotes 26 Comments
π Netpbm format
Netpbm is an open-source package of graphics programs and a programming library. It is used mainly in the Unix world, where one can find it included in all major open-source operating system distributions, but also works on Microsoft Windows, macOS, and other operating systems.
Discussed on
- "Netpbm format" | 2015-11-07 | 29 Upvotes 23 Comments