Random Articles (Page 216)
Have a deep view into what people are curious about.
🔗 Functional Fixedness - The Candle Problem
Functional fixedness is a cognitive bias that limits a person to use an object only in the way it is traditionally used. The concept of functional fixedness originated in Gestalt psychology, a movement in psychology that emphasizes holistic processing. Karl Duncker defined functional fixedness as being a "mental block against using an object in a new way that is required to solve a problem". This "block" limits the ability of an individual to use components given to them to complete a task, as they cannot move past the original purpose of those components. For example, if someone needs a paperweight, but they only have a hammer, they may not see how the hammer can be used as a paperweight. Functional fixedness is this inability to see a hammer's use as anything other than for pounding nails; the person couldn't think to use the hammer in a way other than in its conventional function.
When tested, 5-year-old children show no signs of functional fixedness. It has been argued that this is because at age 5, any goal to be achieved with an object is equivalent to any other goal. However, by age 7, children have acquired the tendency to treat the originally intended purpose of an object as special.
Discussed on
- "Functional Fixedness - The Candle Problem" | 2010-03-22 | 10 Upvotes 5 Comments
🔗 Penrose Tiling
A Penrose tiling is an example of an aperiodic tiling. Here, a tiling is a covering of the plane by non-overlapping polygons or other shapes, and aperiodic means that shifting any tiling with these shapes by any finite distance, without rotation, cannot produce the same tiling. However, despite their lack of translational symmetry, Penrose tilings may have both reflection symmetry and fivefold rotational symmetry. Penrose tilings are named after mathematician and physicist Roger Penrose, who investigated them in the 1970s.
There are several different variations of Penrose tilings with different tile shapes. The original form of Penrose tiling used tiles of four different shapes, but this was later reduced to only two shapes: either two different rhombi, or two different quadrilaterals called kites and darts. The Penrose tilings are obtained by constraining the ways in which these shapes are allowed to fit together. This may be done in several different ways, including matching rules, substitution tiling or finite subdivision rules, cut and project schemes, and coverings. Even constrained in this manner, each variation yields infinitely many different Penrose tilings.
Penrose tilings are self-similar: they may be converted to equivalent Penrose tilings with different sizes of tiles, using processes called inflation and deflation. The pattern represented by every finite patch of tiles in a Penrose tiling occurs infinitely many times throughout the tiling. They are quasicrystals: implemented as a physical structure a Penrose tiling will produce diffraction patterns with Bragg peaks and five-fold symmetry, revealing the repeated patterns and fixed orientations of its tiles. The study of these tilings has been important in the understanding of physical materials that also form quasicrystals. Penrose tilings have also been applied in architecture and decoration, as in the floor tiling shown.
Discussed on
- "Penrose Tiling" | 2019-09-28 | 10 Upvotes 1 Comments
🔗 Saccadic masking
Saccadic masking, also known as (visual) saccadic suppression, is the phenomenon in visual perception where the brain selectively blocks visual processing during eye movements in such a way that neither the motion of the eye (and subsequent motion blur of the image) nor the gap in visual perception is noticeable to the viewer.
The phenomenon was first described by Erdmann and Dodge in 1898, when it was noticed during unrelated experiments that an observer could never see the motion of their own eyes. This can easily be duplicated by looking into a mirror, and looking from one eye to another. The eyes can never be observed in motion, yet an external observer clearly sees the motion of the eyes.
The phenomenon is often used to help explain a temporal illusion by the name of chronostasis, which momentarily occurs following a rapid eye-movement.
Discussed on
- "Saccadic masking" | 2014-08-03 | 10 Upvotes 1 Comments
🔗 Mars Trilogy
The Mars trilogy is a series of science fiction novels by Kim Stanley Robinson that chronicles the settlement and terraforming of the planet Mars through the personal and detailed viewpoints of a wide variety of characters spanning almost two centuries. Ultimately more utopian than dystopian, the story focuses on egalitarian, sociological, and scientific advances made on Mars, while Earth suffers from overpopulation and ecological disaster.
The three novels are Red Mars (1992), Green Mars (1993), and Blue Mars (1996). The Martians (1999) is a collection of short stories set in the same fictional universe. Red Mars won the BSFA Award in 1992 and Nebula Award for Best Novel in 1993. Green Mars won the Hugo Award for Best Novel and Locus Award for Best Science Fiction Novel in 1994. Blue Mars also won the Hugo and Locus Awards in 1997.
Icehenge (1984), Robinson's first novel about Mars, is not set in this universe but deals with similar themes and plot elements. The trilogy shares some similarities with Robinson's more recent novel 2312 (2012); for instance, the terraforming of Mars and the extreme longevity of the characters in both novels.
🔗 Radiotrophic fungus
Radiotrophic fungi are fungi which appear to perform radiosynthesis, that is, to use the pigment melanin to convert gamma radiation into chemical energy for growth. This proposed mechanism may be similar to anabolic pathways for the synthesis of reduced organic carbon (e.g., carbohydrates) in phototrophic organisms, which convert photons from visible light with pigments such as chlorophyll whose energy is then used in photolysis of water to generate usable chemical energy (as ATP) in photophosphorylation or photosynthesis. However, whether melanin-containing fungi employ a similar multi-step pathway as photosynthesis, or some chemosynthesis pathways, is unknown.
Discussed on
- "Radiotrophic fungus" | 2019-07-03 | 262 Upvotes 63 Comments
🔗 Eggcorn
In linguistics, an eggcorn is an idiosyncratic substitution of a word or phrase for a word or words that sound similar or identical in the speaker's dialect (sometimes called oronyms). The new phrase introduces a meaning that is different from the original but plausible in the same context, such as "old-timers' disease" for "Alzheimer's disease". An eggcorn can be described as an intra-lingual phono-semantic matching, a matching in which the intended word and substitute are from the same language.
Discussed on
- "Eggcorn" | 2010-07-09 | 14 Upvotes 14 Comments
🔗 Everything Is a File
"Everything is a file" is an idea that Unix, and its derivatives, handle input/output to and from resources such as documents, hard-drives, modems, keyboards, printers and even some inter-process and network communications as simple streams of bytes exposed through the filesystem name space. Exceptions include semaphores, processes and threads.
The advantage of this approach is that the same set of tools, utilities and APIs can be used on a wide range of resources and a number of file types. When a file is opened, a file descriptor is created, using the file path as an addressing system. The file descriptor is then a byte stream I/O interface on which file operations are performed. File descriptors are also created for objects such as anonymous pipes and network sockets - and therefore a more accurate description of this feature is Everything is a file descriptor.
Additionally, a range of pseudo and virtual filesystems exists which exposes internal kernel data, such as information about processes, to user space in a hierarchical file-like structure. These are mounted into the single file hierarchy.
An example of this purely virtual filesystem is under /proc that exposes many system properties as files. All of these files, in the broader sense of the word, have standard Unix file attributes such as an owner and access permissions, and can be queried by the same classic Unix tools and filters. However, this is not universally considered a fast or portable approach. Some operating systems do not mount /proc by default due to security or speed concerns, relying on system calls instead. It is, though, used heavily by Linux shell utilities, such as procps ps implementation and the widely installed on embedded systems BusyBox. Android Toolbox program depend on it as well.
Discussed on
- "Everything Is a File" | 2024-01-24 | 44 Upvotes 23 Comments
🔗 Raising of Chicago
During the 1850s and 1860s, engineers carried out a piecemeal raising of the level of central Chicago. Streets, sidewalks, and buildings were physically raised on jackscrews. The work was funded by private property owners and public funds.
Discussed on
- "Raising of Chicago" | 2025-01-06 | 82 Upvotes 41 Comments
- "Raising of Chicago" | 2018-10-25 | 216 Upvotes 134 Comments
- "The Raising of Chicago" | 2013-08-29 | 222 Upvotes 73 Comments
🔗 SkySails
SkySails GmbH & Co. KG is a Hamburg-based company that sells kite rigs to propel cargo ships, large yachts and fishing vessels by wind energy. Ships are pulled by an automatically-controlled foil kite of some hundreds of square meters. For multiple reasons, they give many times the thrust per unit area of conventional mast-mounted sails.
The systems save fuel, and reduce carbon emissions and shipping costs, but have not been widely adopted.
Discussed on
- "SkySails" | 2019-07-04 | 126 Upvotes 42 Comments
🔗 1989 Belgium MiG-23 crash
On 4 July 1989, a pilotless MiG-23 jet fighter of the Soviet Air Forces crashed into a house in Kortrijk, Belgium, killing one person. The pilot had ejected over an hour earlier near Kołobrzeg, Poland, after experiencing technical problems, but the aircraft continued flying for around 900 km (600 mi) before running out of fuel and descending into the ground.