Random Articles (Page 256)
Have a deep view into what people are curious about.
๐ First They Came
"First they came ..." is the poetic form of a post-war confessional prose by the German Lutheran pastor Martin Niemรถller (1892โ1984). It is about the cowardice of German intellectuals and certain clergyโincluding, by his own admission, Niemรถller himselfโfollowing the Nazis' rise to power and subsequent incremental purging of their chosen targets, group after group. Many variations and adaptations in the spirit of the original have been published in the English language. It deals with themes of persecution, guilt, repentance, and personal responsibility.
๐ Homo floresiensis
Homo floresiensis ("Flores Man"; nicknamed "hobbit") is a pygmy archaic human which inhabited the island of Flores, Indonesia, until the arrival of modern humans about 50,000 years ago.
The remains of an individual who would have stood about 1.1ย m (3ย ft 7ย in) in height were discovered in 2003 at Liang Bua on the island of Flores in Indonesia. Partial skeletons of nine individuals have been recovered, including one complete skull, referred to as "LB1". These remains have been the subject of intense research to determine whether they represent a species distinct from modern humans; the dominant consensus is that these remains do represent a distinct species due to genetic and anatomical differences.
This hominin had originally been considered remarkable for its survival until relatively recent times, only 12,000 years ago. However, more extensive stratigraphic and chronological work has pushed the dating of the most recent evidence of its existence back to 50,000 years ago. The Homo floresiensis skeletal material is now dated from 60,000 to 100,000 years ago; stone tools recovered alongside the skeletal remains were from archaeological horizons ranging from 50,000 to 190,000 years ago.
Discussed on
- "Homo floresiensis" | 2013-10-14 | 12 Upvotes 3 Comments
๐ GreenโTao theorem
In number theory, the GreenโTao theorem, proved by Ben Green and Terence Tao in 2004, states that the sequence of prime numbers contains arbitrarily long arithmetic progressions. In other words, for every natural number k, there exist arithmetic progressions of primes with k terms. The proof is an extension of Szemerรฉdi's theorem. The problem can be traced back to investigations of Lagrange and Waring from around 1770.
Discussed on
- "GreenโTao theorem" | 2020-03-02 | 41 Upvotes 2 Comments
๐ Alief
In philosophy and psychology, an alief is an automatic or habitual belief-like attitude, particularly one that is in tension with a person's explicit beliefs.
For example, a person standing on a transparent balcony may believe that they are safe, but alieve that they are in danger. A person watching a sad movie may believe that the characters are completely fictional, but their aliefs may lead them to cry nonetheless. A person who is hesitant to eat fudge that has been formed into the shape of feces, or who exhibits reluctance in drinking from a sterilized bedpan may believe that the substances are safe to eat and drink, but may alieve that they are not.
The term alief was introduced by Tamar Gendler, a professor of philosophy and cognitive science at Yale University, in a pair of influential articles published in 2008. Since the publication of these original articles, the notion of alief has been utilized by Gendler and others โ including Paul Bloom and Daniel Dennett โ to explain a range of psychological phenomena in addition to those listed above, including the pleasure of stories, the persistence of positive illusions, certain religious beliefs, and certain psychiatric disturbances, such as phobias and obsessiveโcompulsive disorder.
Discussed on
- "Alief" | 2013-07-07 | 307 Upvotes 52 Comments
๐ The Clipper Chip
The Clipper chip was a chipset that was developed and promoted by the United States National Security Agency (NSA) as an encryption device that secured โvoice and data messages" with a built-in backdoor. It was intended to be adopted by telecommunications companies for voice transmission. It can encipher and decipher messages. It was part of a Clinton Administration program to โallow Federal, State, and local law enforcement officials the ability to decode intercepted voice and data transmissions." โEach clipper chip ha[d] a unique serial number and a secret โunit key,โ programmed into the chip when manufactured." This way, each device was meant to be different from the next.
It was announced in 1993 and by 1996 was entirely defunct.
Discussed on
- "The Clipper Chip" | 2016-03-16 | 244 Upvotes 39 Comments
๐ The Brussels Effect
The Brussels effect is the process of unilateral regulatory globalisation caused by the European Union de facto (but not necessarily de jure) externalising its laws outside its borders through market mechanisms.
Discussed on
- "Brussels Effect" | 2023-08-10 | 17 Upvotes 1 Comments
- "The Brussels Effect" | 2020-07-17 | 37 Upvotes 14 Comments
๐ Confused Deputy Problem
In information security, a confused deputy is a computer program that is tricked by another program (with fewer privileges or less rights) into misusing its authority on the system. It is a specific type of privilege escalation. The confused deputy problem is often cited as an example of why capability-based security is important.
Capability systems protect against the confused deputy problem, whereas access-control listโbased systems do not.
Discussed on
- "Confused Deputy Problem" | 2023-10-18 | 11 Upvotes 2 Comments
๐ "Do Not Track" HTTP header supported by IE, Opera, FF, Safari but not Chrome
Do Not Track (DNT) was a proposed HTTP header field, designed to allow internet users to opt-out of tracking by websitesโwhich includes the collection of data regarding a user's activity across multiple distinct contexts, and the retention, use, or sharing of data derived from that activity outside the context in which it occurred.
The Do Not Track header was originally proposed in 2009 by researchers Christopher Soghoian, Sid Stamm, and Dan Kaminsky. Efforts to standardize Do Not Track by the W3C in the Tracking Preference Expression (DNT) Working Group did not make it past the Candidate Recommendation stage and ended in September 2018 due to insufficient deployment and support.Mozilla Firefox became the first browser to implement the feature, while Internet Explorer, Apple's Safari, Opera and Google Chrome all later added support.
DNT is not widely adopted by the industry, with companies citing the lack of legal mandates for its use, as well as unclear standards and guidelines for how websites are to interpret the header. Thus, it is not guaranteed that enabling DNT will actually have any effect at all. The W3C disbanded its DNT working group in January 2019, citing insufficient support and adoption. Apple discontinued support for DNT the following month.
Discussed on
- ""Do Not Track" HTTP header supported by IE, Opera, FF, Safari but not Chrome" | 2012-05-20 | 146 Upvotes 100 Comments
๐ Ousterhout's Dichotomy
Ousterhout's dichotomy is computer scientist John Ousterhout's categorization that high-level programming languages tend to fall into two groups, each with distinct properties and uses: system programming languages and scripting languages โ compare programming in the large and programming in the small. This distinction underlies the design of his language Tcl.
System programming languages (or applications languages) usually have the following properties:
- They are typed statically
- They support creating complex data structures
- Programs in them are compiled into machine code
- Programs in them are meant to operate largely independently of other programs
System programming languages tend to be used for components and applications with large amounts of internal functionality such as operating systems, database servers, and Web browsers. These applications typically employ complex algorithms and data structures and require high performance. Prototypical examples of system programming languages include C and Modula-2.
By contrast, scripting languages (or glue languages) tend to have the following properties:
- They are typed dynamically
- They have little or no provision for complex data structures
- Programs in them (scripts) are interpreted
Scripting languages tend to be used for applications where most of the functionality comes from other programs (often implemented in system programming languages); the scripts are used to glue together other programs or add additional layers of functionality on top of existing programs. Ousterhout claims that scripts tend to be short and are often written by less sophisticated programmers, so execution efficiency is less important than simplicity and ease of interaction with other programs. Common applications for scripting include Web page generation, report generation, graphical user interfaces, and system administration. Prototypical examples of scripting languages include AppleScript, C shell, DOS batch files, and Tcl.
Discussed on
- "Ousterhout's Dichotomy" | 2024-11-10 | 12 Upvotes 2 Comments
- "Ousterhout's Dichotomy" | 2015-07-29 | 26 Upvotes 10 Comments
๐ Sayfo โ Assyrian Genocide
The Sayfo or the Seyfo (lit.โ'sword'; see below), also known as the Assyrian genocide, was the mass slaughter and deportation of Assyrian/Syriac Christians in southeastern Anatolia and Persia's Azerbaijan province by Ottoman forces and some Kurdish tribes during World War I.
The Assyrians were divided into mutually antagonistic churches, including the Syriac Orthodox Church, the Church of the East, and the Chaldean Catholic Church. Before World War I, they lived in mountainous and remote areas of the Ottoman Empire (some of which were effectively stateless). The empire's nineteenth-century centralization efforts led to increased violence and danger for the Assyrians.
Mass killing of Assyrian civilians began during the Ottoman occupation of Azerbaijan from January to May 1915, during which massacres were committed by Ottoman forces and pro-Ottoman Kurds. In Bitlis province, Ottoman troops returning from Persia joined local Kurdish tribes to massacre the local Christian population (including Assyrians). Ottoman forces and Kurds attacked the Assyrian tribes of Hakkari in mid-1915, driving them out by September despite the tribes mounting a coordinated military defense. Governor Mehmed Reshid initiated a genocide of all of the Christian communities in Diyarbekir province, including Syriac Christians, facing only sporadic armed resistance in some parts of Tur Abdin. Ottoman Assyrians living farther south, in present-day Iraq and Syria, were not targeted in the genocide.
The Sayfo occurred concurrently with and was closely related to the Armenian genocide, although the Sayfo is considered to have been less systematic. Local actors played a larger role than the Ottoman government, but the latter also ordered attacks on certain Assyrians. Motives for killing included a perceived lack of loyalty among some Assyrian communities to the Ottoman Empire and the desire to appropriate their land. At the 1919 Paris Peace Conference, the Assyro-Chaldean delegation said that its losses were 250,000 (about half the prewar population); the accuracy of this figure is unknown. They later revised their estimate to 275,000 dead at the Lausanne Conference in 1923. The Sayfo is less studied than the Armenian genocide. Efforts to have it recognized as a genocide began during the 1990s, spearheaded by the Assyrian diaspora. Although several countries acknowledge that Assyrians in the Ottoman Empire were victims of a genocide, this assertion is rejected by the Turkish government.