Random Articles (Page 6)
Have a deep view into what people are curious about.
π Wikirace - Wikipedia
Wikiracing is a game using the online encyclopedia Wikipedia which focuses on traversing links from one page to another. It has many different variations and names, including The Wikipedia Game, Wikipedia Maze, Wikispeedia, Wikiwars, Wikipedia Ball, and Litner Ball. External websites have been created to facilitate the game.
The Seattle Times has recommended it as a good educational pastime for children and the Larchmont Gazette has said, "While I don't know any teenagers who would curl up with an encyclopedia for a good read, I hear that a lot are reading it in the process of playing the Wikipedia Game".
The Amazing Wiki Race has been an event at the TechOlympics and the Yale Freshman Olympics.
The average number of links separating any Wikipedia page from the United Kingdom page is 3.67. Other common houserules such as not using the United States page increase the difficulty of the game.
As of July 2019, a website and game known as The Wiki Game has been created, allowing players to Wikirace against each other in a server, for more points and recognition on the server. The game reached more recognition as Internet stars such as Game Grumps played it on their channels. There is a version on the App Store as well, in which players can do a variety of Wikirace styles from their phone.
Discussed on
- "Wikirace - Wikipedia" | 2010-02-01 | 38 Upvotes 7 Comments
π Dial Box (Computer Peripheral)
A dial box is a computer peripheral for direct 3D manipulation e.g. to interactively input the rotation and torsion angles of a model displayed on a computer screen. Dial boxes were common input tools in the first years of interactive 3D graphics and they were available for Silicon Graphics (SGI) or Sun Microsystems and sold with their workstations. Currently they have been replaced by standard computer mouse interaction techniques.
Standard dial box has 8 dials mounted on a plate. The plate is set upright with the help of a stand and usually located next to the computer screen for convenient access. The connection to a computer is made via the serial port (RS-232).
One of the fields of application for dial boxes was molecular graphics.
Discussed on
- "Dial Box (Computer Peripheral)" | 2023-05-28 | 10 Upvotes 1 Comments
π US Supreme Court upholds state power to enforce compulsory vaccination (1905)
Jacobson v. Massachusetts, 197 U.S. 11 (1905), was a United States Supreme Court case in which the Court upheld the authority of states to enforce compulsory vaccination laws. The Court's decision articulated the view that the freedom of the individual must sometimes be subordinated to the common welfare and is subject to the police power of the state.
Discussed on
- "US Supreme Court upholds state power to enforce compulsory vaccination (1905)" | 2020-05-18 | 34 Upvotes 5 Comments
π Arachne: a self-contained graphical web browser for DOS and Linux
Arachne is a discontinued Internet suite containing a graphical web browser, email client, and dialer. Originally, Arachne was developed by Michal PolΓ‘k under his xChaos label, a name he later changed into Arachne Labs. It was written in C and compiled using Borland C++ 3.1. Arachne has since been released under the GPL as Arachne GPL.
Arachne primarily runs on DOS-based operating systems, but includes builds for Linux as well. The Linux version relies on SVGALib and therefore does not require a display server.
Discussed on
- "Arachne: a self-contained graphical web browser for DOS and Linux" | 2015-10-20 | 41 Upvotes 13 Comments
π Madman Theory
The madman theory is a political theory commonly associated with the foreign policy of U.S. president Richard Nixon and his administration, who tried to make the leaders of hostile communist bloc countries think Nixon was irrational and volatile so that they would avoid provoking the U.S. in fear of an unpredictable response.
The premise of madman theory is that it makes seemingly incredible threats seem credible. For instance, in an era of mutually assured destruction, threats by a rational leader to escalate a dispute may seem suicidal and thus easily dismissible by adversaries. However, a leader's suicidal threats may seem credible if the leader is believed to be irrational.
International relations scholars have been skeptical of madman theory as a strategy for success in coercive bargaining. Prominent "madmen", such as Nixon, Nikita Khrushchev, Saddam Hussein, and Muammar Gaddafi failed to win coercive disputes. One difficulty is making others believe you are genuinely a madman. Another difficulty is the inability of a madman to assure others that they will not be punished even if they yield to a particular demand. One study found that madman theory is frequently counterproductive, but that it can be effective under certain conditions. Another study found that there are both bargaining advantages and disadvantages to perceived madness.
π Non-compete clause
In contract law, a non-compete clause (often NCC), or covenant not to compete (CNC), is a clause under which one party (usually an employee) agrees not to enter into or start a similar profession or trade in competition against another party (usually the employer). Some courts refer to these as "restrictive covenants". As a contract provision, a CNC is bound by traditional contract requirements including the consideration doctrine.
The use of such clauses is premised on the possibility that upon their termination or resignation, an employee might begin working for a competitor or start a business, and gain competitive advantage by exploiting confidential information about their former employer's operations or trade secrets, or sensitive information such as customer/client lists, business practices, upcoming products, and marketing plans.
However, an over-broad CNC may prevent an employee from working elsewhere at all. English common law originally held any such constraint to be unenforceable under the public policy doctrine. Contemporary case law permits exceptions, but generally will only enforce CNCs to the extent necessary to protect the employer. Most jurisdictions in which such contracts have been examined by the courts have deemed CNCs to be legally binding so long as the clause contains reasonable limitations as to the geographical area and time period in which an employee of a company may not compete.
The extent to which non-compete clauses are legally allowed varies per jurisdiction. For example, the state of California in the United States invalidates non-compete-clauses for all but equity stakeholders in the sale of business interests.
Discussed on
- "Non-compete clause" | 2019-06-27 | 32 Upvotes 6 Comments
π Schwartzian Transform
In computer programming, the Schwartzian transform is a technique used to improve the efficiency of sorting a list of items. This idiom is appropriate for comparison-based sorting when the ordering is actually based on the ordering of a certain property (the key) of the elements, where computing that property is an intensive operation that should be performed a minimal number of times. The Schwartzian transform is notable in that it does not use named temporary arrays.
The Schwartzian transform is a version of a Lisp idiom known as decorate-sort-undecorate, which avoids recomputing the sort keys by temporarily associating them with the input items. This approach is similar to memoization, which avoids repeating the calculation of the key corresponding to a specific input value. By comparison, this idiom assures that each input item's key is calculated exactly once, which may still result in repeating some calculations if the input data contains duplicate items.
The idiom is named after Randal L. Schwartz, who first demonstrated it in Perl shortly after the release of Perl 5 in 1994. The term "Schwartzian transform" applied solely to Perl programming for a number of years, but it has later been adopted by some users of other languages, such as Python, to refer to similar idioms in those languages. However, the algorithm was already in use in other languages (under no specific name) before it was popularized among the Perl community in the form of that particular idiom by Schwartz. The term "Schwartzian transform" indicates a specific idiom, and not the algorithm in general.
For example, to sort the word list ("aaaa","a","aa") according to word length: first build the list (["aaaa",4],["a",1],["aa",2]), then sort it according to the numeric values getting (["a",1],["aa",2],["aaaa",4]), then strip off the numbers and you get ("a","aa","aaaa"). That was the algorithm in general, so it does not count as a transform. To make it a true Schwartzian transform, it would be done in Perl like this:
Discussed on
- "Schwartzian Transform" | 2015-12-17 | 21 Upvotes 6 Comments
π Somerton Man
The Somerton Man was an unidentified man whose body was found on 1 December 1948 on the beach at Somerton Park, a suburb of Adelaide, South Australia. The case is also known after the Persian phrase tamΓ‘m shud (Persian: ΨͺΩ Ψ§Ω Ψ΄Ψ―), meaning "is over" or "is finished", which was printed on a scrap of paper found months later in the fob pocket of the man's trousers. The scrap had been torn from the final page of a copy of Rubaiyat of Omar KhayyΓ‘m, authored by 12th-century poet Omar KhayyΓ‘m.
Following a public appeal by police, the book from which the page had been torn was located. On the inside back cover, detectives read through indentations left from previous handwriting: a local telephone number, another unidentified number, and text that resembled a coded message. The text has not been deciphered or interpreted in a way that satisfies authorities on the case.
Since the early stages of the police investigation, the case has been considered "one of Australia's most profound mysteries". There has been intense speculation ever since regarding the identity of the victim, the cause of his death, and the events leading up to it. Public interest in the case remains significant for several reasons: the death occurred at a time of heightened international tensions following the beginning of the Cold War; the apparent involvement of a secret code; the possible use of an undetectable poison; and the inability of authorities to identify the dead man.
On 26 July 2022, Adelaide University professor Derek Abbott, in association with genealogist Colleen M. Fitzpatrick, claimed to have identified the man as Carl "Charles" Webb, an electrical engineer and instrument maker born in 1905, based on genetic genealogy from DNA of the man's hair. South Australia Police and Forensic Science South Australia have not verified the result, but South Australia Police said they were "cautiously optimistic" about it.
π Story of a Stolen Boeing
On 25 May 2003, a Boeing 727, registered N844AA, was stolen at Quatro de Fevereiro Airport, Luanda, Angola. Its disappearance prompted a worldwide search by the United States' Federal Bureau of Investigation (FBI) and Central Intelligence Agency (CIA). No trace of the aircraft has since been found.
Discussed on
- "Story of a Stolen Boeing" | 2019-03-01 | 65 Upvotes 25 Comments
- "2003 Boeing 727-223 disappearance" | 2014-03-10 | 109 Upvotes 46 Comments
π Variolation
Variolation or inoculation was the method first used to immunize an individual against smallpox (Variola) with material taken from a patient or a recently variolated individual, in the hope that a mild, but protective, infection would result. The procedure was most commonly carried out by inserting/rubbing powdered smallpox scabs or fluid from pustules into superficial scratches made in the skin. The patient would develop pustules identical to those caused by naturally occurring smallpox, usually producing a less severe disease than naturally acquired smallpox. Eventually, after about two to four weeks, these symptoms would subside, indicating successful recovery and immunity. The method was first used in China and the Middle East before it was introduced into England and North America in the 1720s in the face of some opposition. The method is no longer used today. It was replaced by smallpox vaccine, a safer alternative. This in turn led to the development of the many vaccines now available against other diseases.
Discussed on
- "Variolation" | 2020-05-27 | 104 Upvotes 117 Comments