Random Articles (Page 231)

Have a deep view into what people are curious about.

πŸ”— Hawking's Time Traveller Party

πŸ”— Physics

On June 28, 2009, British astrophysicist Stephen Hawking hosted a party for time travelers in the University of Cambridge. The physicist arranged for balloons, champagne, and nibbles for his guests, but did not send out the invites until the following day, after the party was over.

The party was held at the Gonville and Caius College on Trinity Street (52Β° 12' 21" N, 0Β° 7' 4.7" E) at 12:00 UT on June 28, 2009. In preparing for the event, Hawking said he hoped that copies of the invite might survive for thousands of years, and that "one day someone living in the future will find the information and use a wormhole time machine to come back to my party, proving that time travel will one day be possible".

Hawking waited in the room for a few hours before leaving, and no visitors arrived. He regarded the event as "experimental evidence that time travel is not possible".

Discussed on

πŸ”— Ward Christensen has died (of BBS and XMODEM fame)

πŸ”— Biography

Ward Christensen (born 1945 in West Bend, Wisconsin, United States) was the co-founder of the CBBS bulletin board, the first bulletin board system (BBS) ever brought online. Christensen, along with partner Randy Suess, members of the Chicago Area Computer Hobbyists' Exchange (CACHE), started development during a blizzard in Chicago, Illinois, and officially established CBBS four weeks later, on February 16, 1978. CACHE members frequently shared programs and had long been discussing some form of file transfer, and the two used the downtime during the blizzard to implement it.

Christensen was noted for building software tools for his needs. He wrote a cassette-based operating system before floppies and hard disks were common. When he lost track of the source code for some programs, he wrote ReSource, an iterative disassembler for the Intel 8080, to help him regenerate the source code. When he needed to send files to Randy Suess, he wrote XMODEM.

Jerry Pournelle wrote in 1983 of a collection of CP/M public-domain software that "probably 50 percent of the really good programs were written by Ward Christensen, a public benefactor." Christensen received two 1992 Dvorak Awards for Excellence in Telecommunications, one with Randy Suess for developing the first BBS, and a lifetime achievement award "for outstanding contributions to PC telecommunications." In 1993, he received the Pioneer Award from the Electronic Frontier Foundation.

Christensen worked at IBM from 1968 until his retirement in 2012. His last position with IBM was field technical sales specialist.

In May 2005, Christensen and Suess were both featured in BBS: The Documentary.

Discussed on

πŸ”— Body Doubling

πŸ”— Disability

Body doubling or parallel working is a strategy used to initiate and complete tasks, such as household chores or writing and other computer tasks. It involves the physical presence, virtual presence through a phone call, videotelephony or social media presence, of someone with whom one shares their goals, which makes it more likely to achieve them. For some people, it works best to both do similar tasks, while for others, just being in the same (virtual) room is enough.

It was partially popularized by those with attention deficit hyperactivity disorder (ADHD) to help manage symptoms. Its usefulness has also been noted by those with autism, but efficacy is not clearly known as long term studies have not been conducted on the topic. In 2023, J. Russel Ramsay, professor of clinical psychiatry at the Perelman School of Medicine and co-director of the ADHD treatment and research program of the University of Pennsylvania, noted that, while extensive research on the strategy's effect on productivity doesn't exist, "the idea of externalizing motivation is a longstanding evidence-based mechanism for managing ADHD."

ADHD body doubling comes into play allowing individuals with ADHD to perform and complete tasks more easily and with less distractions, where otherwise they might struggle more. "ADHD body doubling is a productivity strategy used by individuals with ADHD to finish possibly annoying jobs while having another person beside them."

Body doubling is said to aid individuals with focus and productivity while working. Another person, known as a 'body double' sits alongside the individual with ADHD to help them focus while completing a certain task. The role of this individual is to not partake in the task but, more importantly, serve as a support system and create a welcoming environment that allows the individual to focus by reducing any distractions. The idea of body doubling allows for specific reminders to the individual to stay on task which helps alleviate the symptoms of ADHD.

Discussed on

πŸ”— Founder's Syndrome

πŸ”— Business

Founder's syndrome (also founderitis) is the difficulty faced by organizations where one or more founders maintain disproportionate power and influence following the effective initial establishment of the project, leading to a wide range of problems for the organization. The passion and charisma of the founder(s), sources of the initial creativity and productivity of the organization, become limiting or destructive factors. The syndrome occurs in both non-profit and for-profit organizations. It may simply limit further growth and success of the project, or it may lead to bitter factionalism and divisions as the scale of demands made on the organization increases, or it may result in outright failure. There are ways in which a founder or organization can respond and grow beyond this situation.

Discussed on

πŸ”— Super-App

πŸ”— Computing πŸ”— Economics πŸ”— Apps

A super-app (also written as super app or superapp) is a mobile or web application that can provide multiple services including payment and financial transaction processing, effectively becoming an all-encompassing self-contained commerce and communication online platform that embraces many aspects of personal and commercial life. Notable examples of super-apps include Tencent's WeChat in China, and Grab in Southeast Asia.

πŸ”— Vim, 25 years since initial release

πŸ”— Apple Inc. πŸ”— Computing πŸ”— Computing/Software πŸ”— Computing/Free and open-source software πŸ”— Linux πŸ”— Perl

Vim (; a contraction of Vi IMproved) is a clone, with additions, of Bill Joy's vi text editor program for Unix. Vim's author, Bram Moolenaar, based it upon the source code for a port of the Stevie editor to the Amiga and released a version to the public in 1991. Vim is designed for use both from a command-line interface and as a standalone application in a graphical user interface. Vim is free and open-source software and is released under a license that includes some charityware clauses, encouraging users who enjoy the software to consider donating to children in Uganda. The license is compatible with the GNU General Public License through a special clause allowing distribution of modified copies "under the GNU GPL version 2 or any later version".

Since its release for the Amiga, cross-platform development has made it available on many other systems. In 2006, it was voted the most popular editor amongst Linux Journal readers; in 2015 the Stack Overflow developer survey found it to be the third most popular text editor, and the fifth most popular development environment in 2019.

πŸ”— Micromelo Undatus

πŸ”— Gastropods

Micromelo undatus, common name the miniature melo, is an uncommon species of small sea snail or bubble snail, a marine opisthobranch gastropod mollusk in the family Aplustridae.

Discussed on

πŸ”— Everything Is a File

πŸ”— Computing πŸ”— Software πŸ”— Software/Computing

"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

πŸ”— Cable 1971

πŸ”— Military history πŸ”— Bangladesh πŸ”— Military history/Intelligence πŸ”— Pakistan

Cable 1971, otherwise known as Priority Signal or File 1971 was a high profile and secret military signal communicated in December 1952 between the two main inter-services branches of Pakistan–the Pakistan Army and the Pakistan Navy. It is notable for the fact that it essentially predicted the separation of Pakistan and Bangladesh and by coincidence its title contained the year in which the separation actually happened, almost 20 years later.

The military cable was directed through the Naval Intelligence and Military Intelligence to ISI sent to its headquarter and came in the wake of reactionary of Basic Principles Committee's first report towards the writing of the first set of the Constitution of Pakistan. The cable was sent by then-Commodore S.M. Ahsan to DG ISI Major-General R. Cawthome on a file coincidentally numbered 1971. The cable discussed the implication of One Unit, religious fanaticism, and the economic parity between the West and East Pakistan that will ultimately result in the division of Pakistan into two different groups.

The Cable's message read as:

  • The creation of Committee of Ulema to veto the decisions taken in the House of People on religious matters, gives excess of powers to Ulema over the rights of elected representatives of the people. This gives an impression of Pakistan as being a Theocratic State.
  • To recommend that the head of the state should be a Muslim will unnecessarily create suspicions in minds of the minorities in Pakistan. The choice to select the head of the state should be left entirely to the people, to select without prejudice to caste, colour and creed.
  • It is maintained by same officers that a single House elected on population basis should have been envisaged, and we should cease to think in terms of Bengalis and Punjabis etc. The parity between West & East Pakistan will ultimately result in the division of Pakistan into two different groups, therefore, it is the very negation of one people, one country and one culture.

The cable's message was further extended and discussed at the Army GHQ by MI's officer Major KM Arif when he compiled an "Intelligence Report No. 7894 of the Office of Intelligence Research and Analysis" in December 1970.

The cable is notable for its highlighted title and many historians found strange that the cable was coincidentally numbered: Cable/File 1971.

Discussed on

πŸ”— Weierstrass Function

πŸ”— Mathematics πŸ”— Systems πŸ”— Systems/Chaos theory

In mathematics, the Weierstrass function is an example of a real-valued function that is continuous everywhere but differentiable nowhere. It is an example of a fractal curve. It is named after its discoverer Karl Weierstrass.

The Weierstrass function has historically served the role of a pathological function, being the first published example (1872) specifically concocted to challenge the notion that every continuous function is differentiable except on a set of isolated points. Weierstrass's demonstration that continuity did not imply almost-everywhere differentiability upended mathematics, overturning several proofs that relied on geometric intuition and vague definitions of smoothness. These types of functions were denounced by contemporaries: Henri PoincarΓ© famously described them as "monsters" and called Weierstrass' work "an outrage against common sense", while Charles Hermite wrote that they were a "lamentable scourge". The functions were difficult to visualize until the arrival of computers in the next century, and the results did not gain wide acceptance until practical applications such as models of Brownian motion necessitated infinitely jagged functions (nowadays known as fractal curves).

Discussed on