Random Articles (Page 114)
Have a deep view into what people are curious about.
π Modelica
Modelica is an object-oriented, declarative, multi-domain modeling language for component-oriented modeling of complex systems, e.g., systems containing mechanical, electrical, electronic, hydraulic, thermal, control, electric power or process-oriented subcomponents. The free Modelica language is developed by the non-profit Modelica Association. The Modelica Association also develops the free Modelica Standard Library that contains about 1360 generic model components and 1280 functions in various domains, as of version 3.2.1.
Discussed on
- "Modelica" | 2017-12-27 | 57 Upvotes 12 Comments
π Simpson's Paradox
Simpson's paradox, which goes by several names, is a phenomenon in probability and statistics, in which a trend appears in several different groups of data but disappears or reverses when these groups are combined. This result is often encountered in social-science and medical-science statistics and is particularly problematic when frequency data is unduly given causal interpretations. The paradox can be resolved when causal relations are appropriately addressed in the statistical modeling.
Simpson's paradox has been used as an exemplar to illustrate to the non-specialist or public audience the kind of misleading results mis-applied statistics can generate. Martin Gardner wrote a popular account of Simpson's paradox in his March 1976 Mathematical Games column in Scientific American.
Edward H. Simpson first described this phenomenon in a technical paper in 1951, but the statisticians Karl Pearson et al., in 1899, and Udny Yule, in 1903, had mentioned similar effects earlier. The name Simpson's paradox was introduced by Colin R. Blyth in 1972.
It is also referred to as or Simpson's reversal, YuleβSimpson effect, amalgamation paradox, or reversal paradox.
Discussed on
- "Simpson's Paradox" | 2024-03-11 | 365 Upvotes 106 Comments
- "Simpsonβs Paradox" | 2022-02-06 | 11 Upvotes 3 Comments
- "Simpson's paradox" | 2011-07-29 | 174 Upvotes 34 Comments
- "Simpson's paradox: why mistrust seemingly simple statistics" | 2009-08-28 | 152 Upvotes 17 Comments
π Skid Row
Skid Row is a neighborhood in Downtown Los Angeles. The area is also known as Central City East.
As of a 2019 count, the population of the district was 4,757. Skid Row contains one of the largest stable populations (about 2,783) of homeless people in the United States and has been known for its condensed homeless population since the 1930s. Its long history of police raids, targeted city initiatives, and homelessness advocacy make it one of the most notable districts in Los Angeles.
Covering fifty city blocks (2.71 sq mi) immediately east of downtown Los Angeles, Skid Row is bordered by Third Street to the north, Seventh Street to the south, Alameda Street to the east, and Main Street to the west.
Discussed on
- "Skid Row" | 2020-05-25 | 54 Upvotes 31 Comments
π The Johari Window
The Johari window is a technique designed to help people better understand their relationship with themselves and others. It was created by psychologists Joseph Luft (1916β2014) and Harrington Ingham (1916β1995) in 1955, and is used primarily in self-help groups and corporate settings as a heuristic exercise. Luft and Ingham named their model "Johari" using a combination of their first names.
Discussed on
- "The Johari Window" | 2023-05-29 | 126 Upvotes 13 Comments
π Microsoft Works
Microsoft Works is a discontinued productivity software suite developed by Microsoft and sold from 1987 to 2009. Its core functionality included a word processor, a spreadsheet and a database management system. Later versions had a calendar application and a dictionary while older releases included a terminal emulator. Works was available as a standalone program, and as part of a namesake home productivity suite. Because of its low cost ($40 retail, or as low as $2 OEM), companies frequently pre-installed Works on their low-cost machines. Works was smaller, less expensive, and had fewer features than Microsoft Office and other major office suites available at the time.
Mainstream support for the final standalone and suite release ended on October 9, 2012 and January 8, 2013, respectively.
Discussed on
- "Microsoft Works" | 2023-09-03 | 31 Upvotes 18 Comments
π Sweden warrantlessly wiretaps all Internet traffic crossing its borders
The National Defence Radio Establishment (Swedish: FΓΆrsvarets radioanstalt, FRA) is a Swedish government agency organised under the Ministry of Defence. The two main tasks of FRA are signals intelligence (SIGINT), and support to government authorities and state-owned companies regarding computer security.
The FRA is not allowed to initialize any surveillance on their own, and operates purely on assignment from the Government, the Government Offices, the Armed Forces, the Swedish National Police Board and Swedish Security Service (SΓPO). Decisions and oversight regarding information interception is provided by the Defence Intelligence Court and the Defence Intelligence Commission; additional oversight regarding protection of privacy is provided by the Swedish Data Protection Authority.
Discussed on
- "Sweden warrantlessly wiretaps all Internet traffic crossing its borders" | 2013-06-10 | 279 Upvotes 59 Comments
π Policy laundering
Policy laundering is the disguising of the origins of political decisions, laws, or international treaties. The term is based on the similar money laundering.
Discussed on
- "Policy laundering" | 2018-03-15 | 119 Upvotes 65 Comments
π Word2vec
Word2vec is a technique for natural language processing (NLP) published in 2013. The word2vec algorithm uses a neural network model to learn word associations from a large corpus of text. Once trained, such a model can detect synonymous words or suggest additional words for a partial sentence. As the name implies, word2vec represents each distinct word with a particular list of numbers called a vector. The vectors are chosen carefully such that they capture the semantic and syntactic qualities of words; as such, a simple mathematical function (cosine similarity) can indicate the level of semantic similarity between the words represented by those vectors.
Discussed on
- "Word2vec" | 2023-10-09 | 14 Upvotes 1 Comments
π How a Buffer Overflow Works
In information security and programming, a buffer overflow, or buffer overrun, is an anomaly where a program, while writing data to a buffer, overruns the buffer's boundary and overwrites adjacent memory locations.
Buffers are areas of memory set aside to hold data, often while moving it from one section of a program to another, or between programs. Buffer overflows can often be triggered by malformed inputs; if one assumes all inputs will be smaller than a certain size and the buffer is created to be that size, then an anomalous transaction that produces more data could cause it to write past the end of the buffer. If this overwrites adjacent data or executable code, this may result in erratic program behavior, including memory access errors, incorrect results, and crashes.
Exploiting the behavior of a buffer overflow is a well-known security exploit. On many systems, the memory layout of a program, or the system as a whole, is well defined. By sending in data designed to cause a buffer overflow, it is possible to write into areas known to hold executable code and replace it with malicious code, or to selectively overwrite data pertaining to the program's state, therefore causing behavior that was not intended by the original programmer. Buffers are widespread in operating system (OS) code, so it is possible to make attacks that perform privilege escalation and gain unlimited access to the computer's resources. The famed Morris worm in 1988 used this as one of its attack techniques.
Programming languages commonly associated with buffer overflows include C and C++, which provide no built-in protection against accessing or overwriting data in any part of memory and do not automatically check that data written to an array (the built-in buffer type) is within the boundaries of that array. Bounds checking can prevent buffer overflows, but requires additional code and processing time. Modern operating systems use a variety of techniques to combat malicious buffer overflows, notably by randomizing the layout of memory, or deliberately leaving space between buffers and looking for actions that write into those areas ("canaries").
Discussed on
- "How a Buffer Overflow Works" | 2009-04-01 | 17 Upvotes 6 Comments
π Holodomor
The Holodomor (Ukrainian: ΠΠΎΠ»ΠΎΠ΄ΠΎΠΌΠΎΜΡ; ΠΠΎΠ»ΠΎΠ΄ΠΎΠΌΠΎΜΡ Π² Π£ΠΊΡΠ°ΡΜΠ½Ρ; derived from ΠΌΠΎΡΠΈΡΠΈ Π³ΠΎΠ»ΠΎΠ΄ΠΎΠΌ, "to kill by starvation") was a man-made famine in Soviet Ukraine in 1932 and 1933 that killed millions of Ukrainians. It is also known as the Terror-Famine and Famine-Genocide in Ukraine, and sometimes referred to as the Great Famine or the Ukrainian Genocide of 1932β33. It was part of the wider Soviet famine of 1932β33, which affected the major grain-producing areas of the country. During the Holodomor, millions of inhabitants of Ukraine, the majority of whom were ethnic Ukrainians, died of starvation in a peacetime catastrophe unprecedented in the history of Ukraine. Since 2006, the Holodomor has been recognized by Ukraine and 15 other countries as a genocide of the Ukrainian people carried out by the Soviet government.
Early estimates of the death toll by scholars and government officials varied greatly. According to higher estimates, up to 12 million ethnic Ukrainians were said to have perished as a result of the famine. A U.N. joint statement signed by 25 countries in 2003 declared that 7β10 million perished. Research has since narrowed the estimates to between 3.3 and 7.5 million. According to the findings of the Court of Appeal of Kiev in 2010, the demographic losses due to the famine amounted to 10 million, with 3.9 million direct famine deaths, and a further 6.1 million birth deficits.
The term Holodomor emphasises the famine's man-made and intentional aspects, such as rejection of outside aid, confiscation of all household foodstuffs, and restriction of population movement. Whether the Holodomor was genocide is still the subject of academic debate, as are the causes of the famine and intentionality of the deaths. Some scholars believe that the famine was planned by Joseph Stalin to eliminate a Ukrainian independence movement. The loss of life has been compared to that of the Holocaust. However, some historians dispute its characterization as a genocide.
Discussed on
- "Holodomor" | 2022-11-26 | 50 Upvotes 13 Comments