Popular Articles (Page 6)

Hint: You are looking at the most popular articles. If you are interested in popular topics instead, click here.

๐Ÿ”— Lenin was a mushroom

๐Ÿ”— Soviet Union ๐Ÿ”— Russia ๐Ÿ”— Russia/mass media in Russia ๐Ÿ”— Television ๐Ÿ”— Russia/history of Russia

Lenin was a mushroom (Russian: ะ›ะตะฝะธะฝ โ€” ะณั€ะธะฑ) was a highly influential televised hoax by Soviet musician Sergey Kuryokhin and reporter Sergey Sholokhov. It was first broadcast on 17 May 1991 on Leningrad Television.

The hoax took the form of an interview on the television program Pyatoe Koleso (The Fifth Wheel). In the interview, Kuryokhin, impersonating a historian, narrated his findings that Vladimir Lenin consumed large quantities of psychedelic mushrooms and eventually became a mushroom himself. Kuryokhin arrived at his conclusion through a long series of logical fallacies and appeals to the authority of various "sources" (such as Carlos Castaneda, the Massachusetts Institute of Technology, and Konstantin Tsiolkovsky), creating the illusion of a reasoned and plausible logical chain.

The timing of the hoax played a large role in its success, coming as it did during the Glasnost period when the ebbing of censorship in the Soviet Union led to many revelations about the country's history, often presented in sensational form. Furthermore, Soviet television had, up to that point, been regarded by its audience as conservative in style and content. As a result, a large number of Soviet citizens (one estimate puts the number at 11,250,000 audience members) took the deadpan "interview" at face value, in spite of the absurd claims presented.

Sholokhov has said that perhaps the most notable result of the show was an appeal by a group of party members to the Leningrad Regional Committee of the CPSU to clarify the veracity of Kuryokhin's claim. According to Sholokhov, in response to the request one of the top regional functionaries stated that "Lenin could not have been a mushroom" because "a mammal cannot be a plant." Modern taxonomy classifies mushrooms as fungi, a separate kingdom from plants.

The incident has served as a watershed moment in Soviet (and Russian) culture and has often been used as proof of the gullibility of the masses.

Discussed on

๐Ÿ”— Illegal number

๐Ÿ”— Numbers ๐Ÿ”— Law

An illegal number is a number that represents information which is illegal to possess, utter, propagate, or otherwise transmit in some legal jurisdiction. Any piece of digital information is representable as a number; consequently, if communicating a specific set of information is illegal in some way, then the number may be illegal as well.

Discussed on

๐Ÿ”— Telling the Bees

๐Ÿ”— Agriculture ๐Ÿ”— England ๐Ÿ”— Folklore

Telling the bees is a traditional custom of many European countries in which bees would be told of important events in their keeper's lives, such as births, marriages, or departures and returns in the household. If the custom was omitted or forgotten and the bees were not "put into mourning" then it was believed a penalty would be paid, such as the bees leaving their hive, stopping the production of honey, or dying. The custom is best known in England, but has also been recorded in Ireland, Wales, Germany, Netherlands, France, Switzerland, Bohemia, and the United States.

Discussed on

๐Ÿ”— Beverly Clock

๐Ÿ”— Physics ๐Ÿ”— New Zealand ๐Ÿ”— Physics/History

The Beverly Clock is a clock situated in the 3rd floor lift foyer of the Department of Physics at the University of Otago, Dunedin, New Zealand. The clock is still running despite never having been manually wound since its construction in 1864 by Arthur Beverly.

Discussed on

๐Ÿ”— โ€œBush hid the factsโ€ bug

๐Ÿ”— Computing ๐Ÿ”— Microsoft Windows ๐Ÿ”— Microsoft Windows/Computing ๐Ÿ”— Software ๐Ÿ”— Software/Computing

Bush hid the facts is a common name for a bug present in some versions of Microsoft Windows, which causes text encoded in ASCII to be interpreted as if it were UTF-16LE, resulting in garbled text. When the string "Bush hid the facts", without newline or quotes, was put in a new Notepad document and saved, closed, and reopened, the nonsensical sequence of Chinese characters "็•‚ๆกณๆ  ๆ‘ฉ็ ๆ•จๆ˜ ๆก็ด" would appear instead.

While "Bush hid the facts" is the sentence most commonly presented on the Internet to induce the error, the bug can be triggered by many strings with letters and spaces in the same positions, for example "hhhh hhh hhh hhhhh". Other sequences trigger the bug as well, including even the text "a ".

The bug occurs when the string is passed to the Win32 charset detection function IsTextUnicode. IsTextUnicode sees that the bytes match the UTF-16LE encoding of valid (if nonsensical) Chinese Unicode characters, concludes that the text is valid UTF-16LE Chinese and returns true, and the application then incorrectly interprets the text as UTF-16LE.

The bug had existed since IsTextUnicode was introduced with Windows NT 3.5 in 1994, but was not discovered until early 2004. Many text editors and tools exhibit this behavior on Windows because they use IsTextUnicode to determine the encoding of text files. As of Windows Vista, Notepad has been modified to use a different detection algorithm that does not exhibit the bug, but IsTextUnicode remains unchanged in the operating system, so any other tools that use the function are still affected.

Discussed on

๐Ÿ”— Solarpunk

๐Ÿ”— Climate change ๐Ÿ”— Environment ๐Ÿ”— Science Fiction ๐Ÿ”— Literature ๐Ÿ”— Politics ๐Ÿ”— Visual arts ๐Ÿ”— Ecology ๐Ÿ”— Punk music

Solarpunk is a movement that encourages optimistic envisionings of the future in light of present environmental concerns, such as climate change and pollution, as well as social inequality. Solarpunk encompasses a multitude of media such as literature, art, architecture, fashion, music, and games. Solarpunk focuses on renewable energies, as well as technology as a whole, to envision a positive future for humanity; although, it also embraces less advanced ways to reduce carbon emissions, like gardening. Solarpunk is also a genre of speculative fiction; some of the most well-known examples are Solarpunk: Ecological and Fantastical Stories in a Sustainable World and Sunvault: Stories of Solarpunk and Eco-Speculation.

Discussed on

๐Ÿ”— Hy

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

Hy (alternately, Hylang) is a programming language, a dialect of the language Lisp designed to interact with the language Python by translating expressions into Python's abstract syntax tree (AST). Hy was introduced at Python Conference (PyCon) 2013 by Paul Tagliamonte.

Similar to Kawa's and Clojure's mapping of s-expressions onto the Java virtual machine (JVM), Hy is meant to operate as a transparent Lisp front end to Python's abstract syntax. Lisp allows operating on code as data (metaprogramming). Thus, Hy can be used to write domain-specific languages. Hy also allows Python libraries, including the standard library, to be imported and accessed alongside Hy code with a compiling step converting the data structure of both into Python's AST.

Discussed on

  • "Hy" | 2019-08-04 | 850 Upvotes 141 Comments
  • "Hy" | 2016-11-07 | 70 Upvotes 5 Comments

๐Ÿ”— Gรถbekli Tepe

๐Ÿ”— Ancient Near East ๐Ÿ”— Turkey ๐Ÿ”— Archaeology

Gรถbekli Tepe (Turkish:ย [ษŸล“becหˆli teหˆpe], "Potbelly Hill") is an archaeological site in the Southeastern Anatolia Region of Turkey approximately 12ย km (7ย mi) northeast of the city of ลžanlฤฑurfa. The tell (artificial mound) has a height of 15ย m (49ย ft) and is about 300ย m (980ย ft) in diameter. It is approximately 760ย m (2,490ย ft) above sea level.

The tell includes two phases of use, believed to be of a social or ritual nature by site discoverer and excavator Klaus Schmidt, dating back to the 10thโ€“8th millennium BCE. During the first phase, belonging to the Pre-Pottery Neolithic A (PPNA), circles of massive "T-shaped" stone pillars were erected โ€“ the world's oldest known megaliths.

More than 200 pillars in about 20 circles are currently known through geophysical surveys. Each pillar has a height of up to 6ย m (20ย ft) and weighs up to 10 tons. They are fitted into sockets that were hewn out of the bedrock. In the second phase, belonging to the Pre-Pottery Neolithic B (PPNB), the erected pillars are smaller and stood in rectangular rooms with floors of polished lime. The site was abandoned after the Pre-Pottery Neolithic B (PPNB). Younger structures date to classical times.

The details of the structure's function remain a mystery. The excavations have been ongoing since 1996 by the German Archaeological Institute, but large parts still remain unexcavated. In 2018, the site was designated a UNESCO World Heritage Site.

Discussed on

๐Ÿ”— Kkrieger โ€“ A 96KB first person shooter

๐Ÿ”— Video games

.kkrieger (from Krieger, German for warrior) is a first-person shooter video game created by German demogroup .theprodukkt (a former subdivision of Farbrausch), which won first place in the 96k game competition at Breakpoint in April 2004. The game remains a beta version as of 2019.

Discussed on