triplets
list | passage
stringlengths 0
32.9k
| label
stringlengths 4
48
⌀ | label_id
int64 0
1k
⌀ | synonyms
list | __index_level_1__
int64 312
64.1k
⌀ | __index_level_0__
int64 0
2.4k
⌀ |
---|---|---|---|---|---|---|
[
"GitHub",
"uses",
"GitHub Flavored Markdown"
] |
Documentation, including automatically rendered README files in a variety of Markdown-like file formats (see README § On GitHub)
Wikis
GitHub Actions, which allows building continuous integration and continuous deployment pipelines for testing, releasing and deploying software without the use of third-party websites/platforms
Graphs: pulse, contributors, commits, code frequency, punch card, network, members
Integrations Directory
Email notifications
Discussions
Option to subscribe someone to notifications by @ mentioning them.
Emojis
Nested task-lists within files
Visualization of geospatial data
3D render files can be previewed using a new integrated STL file viewer that displays the files on a "3D canvas." The viewer is powered by WebGL and Three.js.
Support for previewing many common image formats, including Photoshop's PSD files
PDF document viewer
Security Alerts of known Common Vulnerabilities and Exposures in different packagesGitHub's Terms of Service do not require public software projects hosted on GitHub to meet the Open Source Definition. The terms of service state, "By setting your repositories to be viewed publicly, you agree to allow others to view and fork your repositories."
| null | null | null | null | 35 |
[
"Smiling Girl",
"based on",
"Girl with a Pearl Earring"
] | null | null | null | null | 3 |
|
[
"X386",
"based on",
"X Window System"
] |
X386 was an implementation of the X Window System for IBM PC compatible computers. It ran on systems with Intel 386 or later processors, running Unix System V-based operating systems, and supported a variety of VGA-compatible graphics cards. X386 was created by Thomas Roell while at Technische Universität München and first released (as X386 1.1, based on X11R4) in 1991. X386 1.2 was incorporated in the X11R5 release later the same year.
Further X386 development was funded by Snitily Graphics Consulting Services, which released enhanced versions commercially. SGCS later became Xi Graphics and X386 evolved into the Accelerated-X product.
In September 1992, the XFree86 project was created to continue development of X386 as open source software, the name being a pun on "X386", distinguishing it from the proprietary SGCS version.
| null | null | null | null | 1 |
[
"Relational model",
"based on",
"relation"
] |
Overview
The central idea of a relational model is to describe a database as a collection of predicates over a finite set of predicate variables, describing constraints on the possible values and combinations of values. The content of the database at any given time is a finite (logical) model of the database, i.e. a set of relations, one per predicate variable, such that all predicates are satisfied. A request for information from the database (a database query) is also a predicate.Topics
The fundamental assumption behind a relational model is that all data is represented as mathematical n-ary relations, an n-ary relation being a subset of the Cartesian product of n domains. In the mathematical model, reasoning about such data is done in two-valued predicate logic, meaning there are two possible evaluations for each proposition: either true or false (and in particular no third value such as unknown, or not applicable, either of which are often associated with the concept of NULL). Data are operated upon by means of a relational calculus or relational algebra, these being equivalent in expressive power.
The relational model of data permits the database designer to create a consistent, logical representation of information. Consistency is achieved by including declared constraints in the database design, which is usually referred to as the logical schema. The theory includes a process of database normalization whereby a design with certain desirable properties can be selected from a set of logically equivalent alternatives. The access plans and other implementation and operation details are handled by the DBMS engine, and are not reflected in the logical model. This contrasts with common practice for SQL DBMSs in which performance tuning often requires changes to the logical model.
The basic relational building block is the domain or data type, usually abbreviated nowadays to type. A tuple is an unordered set of attribute values. An attribute is an unordered pair of attribute name and type name. An attribute value is a specific valid value for the type of the attribute. This can be either a scalar value or a more complex type.
A relation consists of a heading and a body. A heading is a set of attributes. A body (of an n-ary relation) is a set of n-tuples. The heading of the relation is also the heading of each of its tuples.
A relation is defined as a set of n-tuples. In both mathematics and the relational database model, a set is an unordered collection of unique, non-duplicated items, although some DBMSs impose an order to their data. In mathematics, a tuple has an order, and allows for duplication. E. F. Codd originally defined tuples using this mathematical definition. Later, it was one of E. F. Codd's great insights that using attribute names instead of an ordering would be more convenient (in general) in a computer language based on relations. This insight is still being used today. Though the concept has changed, the name "tuple" has not. An immediate and important consequence of this distinguishing feature is that in the relational model the Cartesian product becomes commutative.
A table is an accepted visual representation of a relation; a tuple is similar to the concept of a row.
A relvar is a named variable of some specific relation type, to which at all times some relation of that type is assigned, though the relation may contain zero tuples.
The basic principle of the relational model is the Information Principle: all information is represented by data values in relations. In accordance with this Principle, a relational database is a set of relvars and the result of every query is presented as a relation.
The consistency of a relational database is enforced, not by rules built into the applications that use it, but rather by constraints, declared as part of the logical schema and enforced by the DBMS for all applications. In general, constraints are expressed using relational comparison operators, of which just one, "is subset of" (⊆), is theoretically sufficient. In practice, several useful shorthands are expected to be available, of which the most important are candidate key (really, superkey) and foreign key constraints.
| null | null | null | null | 2 |
[
"Relational model",
"different from",
"network model"
] |
Topics
The fundamental assumption behind a relational model is that all data is represented as mathematical n-ary relations, an n-ary relation being a subset of the Cartesian product of n domains. In the mathematical model, reasoning about such data is done in two-valued predicate logic, meaning there are two possible evaluations for each proposition: either true or false (and in particular no third value such as unknown, or not applicable, either of which are often associated with the concept of NULL). Data are operated upon by means of a relational calculus or relational algebra, these being equivalent in expressive power.
The relational model of data permits the database designer to create a consistent, logical representation of information. Consistency is achieved by including declared constraints in the database design, which is usually referred to as the logical schema. The theory includes a process of database normalization whereby a design with certain desirable properties can be selected from a set of logically equivalent alternatives. The access plans and other implementation and operation details are handled by the DBMS engine, and are not reflected in the logical model. This contrasts with common practice for SQL DBMSs in which performance tuning often requires changes to the logical model.
The basic relational building block is the domain or data type, usually abbreviated nowadays to type. A tuple is an unordered set of attribute values. An attribute is an unordered pair of attribute name and type name. An attribute value is a specific valid value for the type of the attribute. This can be either a scalar value or a more complex type.
A relation consists of a heading and a body. A heading is a set of attributes. A body (of an n-ary relation) is a set of n-tuples. The heading of the relation is also the heading of each of its tuples.
A relation is defined as a set of n-tuples. In both mathematics and the relational database model, a set is an unordered collection of unique, non-duplicated items, although some DBMSs impose an order to their data. In mathematics, a tuple has an order, and allows for duplication. E. F. Codd originally defined tuples using this mathematical definition. Later, it was one of E. F. Codd's great insights that using attribute names instead of an ordering would be more convenient (in general) in a computer language based on relations. This insight is still being used today. Though the concept has changed, the name "tuple" has not. An immediate and important consequence of this distinguishing feature is that in the relational model the Cartesian product becomes commutative.
A table is an accepted visual representation of a relation; a tuple is similar to the concept of a row.
A relvar is a named variable of some specific relation type, to which at all times some relation of that type is assigned, though the relation may contain zero tuples.
The basic principle of the relational model is the Information Principle: all information is represented by data values in relations. In accordance with this Principle, a relational database is a set of relvars and the result of every query is presented as a relation.
The consistency of a relational database is enforced, not by rules built into the applications that use it, but rather by constraints, declared as part of the logical schema and enforced by the DBMS for all applications. In general, constraints are expressed using relational comparison operators, of which just one, "is subset of" (⊆), is theoretically sufficient. In practice, several useful shorthands are expected to be available, of which the most important are candidate key (really, superkey) and foreign key constraints.
| null | null | null | null | 3 |
[
"Relational model",
"topic's main category",
"Category:Relational model"
] | null | null | null | null | 4 |
|
[
"Return to Labyrinth",
"based on",
"Labyrinth"
] |
Development
The Jim Henson Company announced in 2005 that it was collaborating with Tokyopop on two graphic novels based on Jim Henson's feature films The Dark Crystal and Labyrinth.
According to Tim Beedle, a Tokyopop editor who worked on Return to Labyrinth, the manga came about when Forbes suggested to the publisher that Labyrinth and The Dark Crystal had potential to be spun-off as original graphic novels. They contacted the Jim Henson Company, where Michael Polis, the Senior VP of Marketing and Home Entertainment, had been considering spinning both properties into comics. Rob Valois, an editor on the manga, had previously worked for the Jim Henson Company and was able to help organise a deal between the two companies. According to Beedle, Labyrinth and The Dark Crystal were believed to be suitable properties to be spun into manga format due to the length considered necessary to explore their fantasy worlds, which wouldn't suit a shorter comic format. In addition, both films have a large female fan base, "just like manga does".Beedle stated that The Goblins of Labyrinth, a companion book to the film by its conceptual designer, Brian Froud, was used as a reference for Return to Labyrinth in order to "preserve the authenticity of the world" of the film.Due to high sales and positive response from readers to the first volume, Return to Labyrinth was expanded from three volumes to four. Beedle stated that in response to fan feedback from the first volume requesting more of the characters Sarah and Jareth, the creators "expanded on a subplot featuring Jareth and Sarah" in the later volumes.
| null | null | null | null | 1 |
[
"The Master (Doctor Who)",
"performer",
"Derek Jacobi"
] |
Audio plays
The Master has made regular appearances in various audio plays produced by Big Finish. Geoffrey Beevers, Derek Jacobi, Michelle Gomez, Eric Roberts, John Simm and Sacha Dhawan have all reprised the role from the television series. While Mark Gatiss, Alex Macqueen, Gina McKee, James Dreyfus and Milo Parker portray versions of the Master original to Big Finish. Jon Culshaw has performed as the Roger Delgado and Anthony Ainley incarnations of the Master.
The Master appears in the Big Finish Productions Dust Breeding, where Geoffrey Beevers reprised the role. The story reveals that at some point after Survival, the Master's Trakenite body is damaged when he attempts to take control of a psychic weapon trapped in the painting The Scream, which returns him to his walking corpse state once again. He is presented using the alias Mr Seta, another anagram of Master.In Master, the origin of the Master and the Doctor's enmity is explored. As children, a school bully attempted to drown the Master but was killed by the Doctor in defence. Unable to cope with the guilt and grief, the young Doctor made a deal with Death to take away his pain, inadvertently transferring the memories and guilt of the murder to the Master. In the main plot, the Seventh Doctor (Sylvester McCoy) has made another deal with Death to remove the Master's memory and let him live in peace for ten years, in exchange for the Master then becoming Death's Champion. Upon learning this, the Master absolves the Doctor of his actions as a child before having his memories restored and becoming Death's servant once again.An alternate-universe Master appears in the Big Finish audio play Sympathy for the Devil, voiced by Mark Gatiss, as part of the Doctor Who Unbound series. In this version of events, an alternate Third Doctor — now voiced by David Warner — does not arrive for his exile on Earth until 1997. Without the Doctor's help, UNIT was unable to cope with a series of extraterrestrial disasters, and the political landscape of the planet changed drastically. Stranded on Earth, the Master worked as an advisor to the United Nations. This version of the Master later appears in Big Finish's The New Adventures of Bernice Summerfield range, opposite Warner's Doctor, when Bernice Summerfield is temporarily pulled into the Unbound universe. He later escapes to Benny's universe and is recruited by the Daleks to stop a plan by the War Master that threatens to destroy the universe.
Beevers returned to Big Finish in April 2022 to play another Unbound alternate version of the Master, opposite Colin Baker's alternate Doctor known as The Warrior, in the Doctor Who Unbound release - Doctor of War: Genesis.The Master was set to appear in the television story The Hollows of Time, proposed for the show's 23rd season but ultimately never produced. When Big Finish adapted the story for their Lost Stories range, while Colin Baker and Nicola Bryant voiced their original roles as the Sixth Doctor and Peri, rights to the Master could not be obtained (and Anthony Ainley had died), so the role of Professor Stream (originally meant as the Master's alias—another anagram) was played by David Garfield and left ambiguous as to his true identity, the story presented as a semi-flashback with the Doctor and Peri's memories distorted so that they cannot clearly recall certain key details.The Master, played by Geoffrey Beevers, returns in the Fourth Doctor audio plays Trail of the White Worm, The Oseidon Adventure, The Evil One, Requiem for the Rocket Men and Death Match. Beevers also appears in the fiftieth anniversary story The Light at the End, where he attempts to erase the Doctor's travels by using an advanced weapon to erase the TARDIS from existence, and in the Companion Chronicle Mastermind, which looks at how he stole a new body in the early twentieth century after his essence escaped from the Eighth Doctor's TARDIS, and survived by possessing a series of human hosts until he tricked UNIT into helping him regain access to his TARDIS.
Alex Macqueen plays a new incarnation of the Master – existing after Eric Roberts' incarnation (and the subsequent corpse form played by Beevers) – in the Seventh Doctor release UNIT: Dominion pretending to be a future version of the Doctor before his true identity is revealed. He goes on to become a recurring antagonist in the Eighth Doctor's Dark Eyes series where it is explained that the Time Lords resurrected the Master to fight in an approaching conflict, implied to be the Time War. The events surrounding the Master's resurrection were depicted in the Ravenous series five years later.
Chris Finney plays a character named 'Keith Potter' in the story The End of the Line from the audio anthology The Sixth Doctor: The Last Adventure, later revealed to be an avatar under the control of the Master.
The Master, played again by Geoffrey Beevers, makes a cameo appearance in series 10 of the Doctor Who spin-off Jago & Litefoot, and later featured as the main villain for the eleventh series.To mark forty-five years since the Master's first appearance, Big Finish released a trilogy of stories featuring the Geoffrey Beevers and Alex Macqueen incarnations of the Master in 2016. And You Will Obey Me features the Beevers Master encountering the Fifth Doctor, while Vampire of the Mind pits the Sixth Doctor against Macqueen's Master. In both stories, the two Masters are characterized very differently from their previous appearances. In the final story of the trilogy – The Two Masters – it is explained that the two Masters swapped bodies after the Macqueen Master went back in time and caused the event that gave the Beevers Master his emaciated corpse form. This results in a universe-destroying paradox fixed by the Seventh Doctor, returning the two Masters to their rightful bodies and erasing their memories of the events.In December 2017, Derek Jacobi reprised his role as the Master for The War Master, an ongoing series of audios set during the Time War, having originally appeared in the 2007 episode "Utopia". The first series ends with the Master using a chameleon arch to turn himself into an infant human, setting up the events of "Utopia". Subsequent series occur earlier in the War Master's life and depict him getting involved with various battles in the Time War, sometimes at the behest of the Time Lords and sometimes for his own ends. Mark Gatiss made a guest appearance as the alternate-universe Master in series four. Paul McGann briefly plays the Master in series five. Jacobi has also appeared as the War Master in several other Big Finish ranges, including UNIT: Cyber-Reality and the first volume of Gallifrey: Time War.
James Dreyfus portrays an early incarnation of the Master opposite David Bradley as the First Doctor in Doctor Who: The First Doctor Adventures. Dreyfus also appears in the Second Doctor audio The Home Guard, the Fourth Doctor audio Solo and the Seventh Doctor audio The Psychic Circus.
In May 2018, it was announced that the fifth series of The Diary of River Song would feature the title character, River Song, encountering four incarnations of the Master. As well as Beevers and Jacobi returning, this release saw Eric Roberts and Michelle Gomez make their Big Finish debuts as their incarnations of the Master. This release explains how the Master (Roberts) was able to escape the Eye of Harmony, stuck in the time vortex until River's intervention enables him to escape back into the universe.
Like Jacobi, Michelle Gomez also performs her incarnation of the Master (renamed Missy) for an ongoing audio series. Missy premiered in February 2019 and featured The Monk played by Rufus Hound. The second series introduced a character known as The Lumiat – revealed to be the next incarnation of The Master, the immediate successor to Missy – played by Gina McKee. It is explained that, after her "poetic" death at the hands of her predecessor, Missy used an Elysian field to transfer her consciousness into a duplicate body created from her own dying cells and trigger regeneration. Motivated by her recent attempt at redemption, she edited the duplicate to remove all the negative aspects of her personality and became a benevolent force in the universe, adopting the title Lumiat. Missy encounters the Lumiat trying to undo some of her earlier incarnation's evil deeds. Sickened by her future self, Missy kills the Lumiat with a TCE and abandons her to regenerate, implying the process might cause them to return to evil. In the third volume, Gomez and Hound were joined by Gemma Whelan as the Meddling Nun – another incarnation of the Monk. Gomez returned for a story in Big Finish's The Eighth of March range, which saw Missy stranded in Earth's past and threatening a young Amy Pond (Caitlin Blackwood) in a bid to get the Doctor's attention.
Beevers, Jacobi, Roberts, and Gomez appeared in the fourth volume of the Eighth Doctor series Ravenous in October 2019. In Planet of Dust, the Doctor and his companions encounter the Burnt Master (Beevers) on the planet Parrak, where it is explained that he has once again returned to his emaciated corpse form following his time in the body of Bruce (Roberts) before being killed by the Ravenous. In Day of the Master, the Eighth Doctor encounters the Bruce Master. At the same time, his companions Liv Chenka and Helen Sinclair are confronted by the War Master (Jacobi) and Missy (Gomez), respectively. By the end of the story, the War Master, Missy, and the Bruce Master are sent by the Time Lords to the tomb where the Burnt Master is buried, using technology acquired earlier in the story to grant him a new regeneration cycle and, it is implied, turning him into the Alex Macqueen incarnation of the Master. The story also suggests the Bruce Master has his memory wiped and is flung into the time vortex by his future selves, ultimately leading him back to Parrak in his Burnt Master form to preserve the timeline.
As part of the Time Lord Victorious multi-platform storyline, a pair of Short Trips stories introduced the Roger Delgado and Anthony Ainley incarnations of the Master to Big Finish – Master Thief by Fio Trethewey and Lesser Evils by Simon Guerrier were released in October 2020 with Jon Culshaw serving as narrator and voicing both incarnations of the Master.
In January 2021, to mark the fiftieth anniversary of the Master's first television appearance, Big Finish released Masterful, a three-part special written by James Goss uniting every living television and audio incarnation of the Master (other than Sacha Dhawan due to licensing). It saw John Simm reprise his role as the Harold Saxon version of the Master and introduced Milo Parker as a young incarnation of the Master. Beevers, Gatiss, Jacobi, Macqueen, Roberts, and Gomez all reprised their roles. Gina McKee makes a cameo appearance as the Lumiat and Jon Culshaw voices Kamelion impersonating the Ainley Master. In the story, the Saxon Master has killed the Doctor and taken control of the universe using an entropy wave that has destabilized his body and threatens to destroy the universe. He summons his previous selves in an attempt to steal their lives and heal himself. The intervention of Missy, the alternate-universe Master and Jo Grant thwarts Saxon's plans and, after discovering that the entropy wave is a sentient manifestation of the Master from the future – their final incarnation, a being of pure rage and insanity – the War Master kills his other incarnations (including himself) to cause a paradox and return the universe to normal. The special edition release included an original audiobook Terror of the Master written by Trevor Baxendale, narrated by Jon Culshaw and featuring the Delgado Master and the Third Doctor. This story was given a standalone re-release in March 2023.Roberts returned as the Master once again in March 2021 for a three-part special release entitled Master!, featuring Chase Masterson as Vienna Salvatore. Following the events of Ravenous, the Master is rescued from the vortex by a scientist named Lila Kreeg (Laura Aikman) – whom the Master had manipulated using a psychic link into freeing him – and steals the identity of a business magnate on twenty-third century Earth. Vienna is hired by the Daleks to assassinate the Master but, with Kreeg's help, succeeds only in sending the Master back into the time vortex. Masterson and Roberts returned for a second series - Nemesis Express - released in October 2022.At Big Finish Day 2022, it was announced that Sacha Dhawan will reprise the role of The Master from the television series for a new audio series - Call Me Master.
| null | null | null | null | 1 |
[
"The Master (Doctor Who)",
"performer",
"Eric Roberts"
] |
Dalek trial and 'execution'
The Master was the primary antagonist of the 1996 Doctor Who television movie. He was played by American actor Eric Roberts.
In the prologue, the Master (portrayed briefly by Gordon Tipple) is executed by the Daleks as a punishment for his "evil crimes". But before his apparent death, the Master requests his remains to be brought back to Gallifrey by the Seventh Doctor. However, as posited in the novelisation of the movie by Gary Russell, the Master's self-alterations to extend his lifespan allow him to survive his execution by transferring his mind into a snake-like entity called a "morphant." This interpretation is made explicit in the first of the Eighth Doctor Adventures novels, The Eight Doctors by Terrance Dicks, and also used in the Doctor Who Magazine comic strip story The Fallen, which states that the morphant was a shape-shifting animal native to Skaro.Using his morphant body to break free from the container holding his remains, the Master sabotages the Doctor's TARDIS console to force it to crash land in San Francisco in December, 1999. From there, the Master, as the morphant, enters the body of a paramedic named Bruce to take control of him. However, the Master finds his human host to be unsustainable as the body slowly begins to degenerate, although the Master has the added abilities to spit an acid-like bile, both as a weapon and to mentally control victims as an alternative to his usual hypnotic abilities. The Master attempts to access the Eye of Harmony to steal the remaining regenerations of the Eighth Doctor (Paul McGann), but instead is sucked into it and supposedly killed.
| null | null | null | null | 3 |
[
"The Master (Doctor Who)",
"based on",
"Professor Moriarty"
] | null | null | null | null | 4 |
|
[
"The Master (Doctor Who)",
"performer",
"Sacha Dhawan"
] |
The Master, or "Missy" in their female incarnation, is a recurring character in the British science fiction television series Doctor Who and its associated spin-off works. They are a renegade alien Time Lord and the childhood friend and later archenemy of the title character, the Doctor. They were most recently portrayed by Sacha Dhawan.
Multiple actors have played the Master since the character's introduction in 1971. Within the show's narrative, the change in actors and subsequent change of the character's appearance is sometimes explained as the Master taking possession of other characters' bodies or as a consequence of regeneration, which is a biological attribute that allows Time Lords to survive fatal injuries or old age.
The Master was originally played by Roger Delgado from 1971 until his death in 1973. The role was subsequently played by Peter Pratt, Geoffrey Beevers, and Anthony Ainley, with Ainley reprising the role regularly through the 1980s until the series’s cancellation in 1989. Eric Roberts took on the role for the 1996 Doctor Who TV film. Since the show's revival in 2005, the Master has been portrayed by Derek Jacobi, John Simm, Michelle Gomez, and Sacha Dhawan.
Beevers, Roberts, Jacobi, Simm, and Gomez have reprised the role in audio dramas produced by Big Finish Productions. At the same time, Alex Macqueen, Gina McKee, Mark Gatiss, James Dreyfus, and Milo Parker portrayed incarnations unique to Big Finish.
| null | null | null | null | 5 |
[
"The Master (Doctor Who)",
"performer",
"John Simm"
] | null | null | null | null | 7 |
|
[
"The Master (Doctor Who)",
"performer",
"Roger Delgado"
] |
The Master, or "Missy" in their female incarnation, is a recurring character in the British science fiction television series Doctor Who and its associated spin-off works. They are a renegade alien Time Lord and the childhood friend and later archenemy of the title character, the Doctor. They were most recently portrayed by Sacha Dhawan.
Multiple actors have played the Master since the character's introduction in 1971. Within the show's narrative, the change in actors and subsequent change of the character's appearance is sometimes explained as the Master taking possession of other characters' bodies or as a consequence of regeneration, which is a biological attribute that allows Time Lords to survive fatal injuries or old age.
The Master was originally played by Roger Delgado from 1971 until his death in 1973. The role was subsequently played by Peter Pratt, Geoffrey Beevers, and Anthony Ainley, with Ainley reprising the role regularly through the 1980s until the series’s cancellation in 1989. Eric Roberts took on the role for the 1996 Doctor Who TV film. Since the show's revival in 2005, the Master has been portrayed by Derek Jacobi, John Simm, Michelle Gomez, and Sacha Dhawan.
Beevers, Roberts, Jacobi, Simm, and Gomez have reprised the role in audio dramas produced by Big Finish Productions. At the same time, Alex Macqueen, Gina McKee, Mark Gatiss, James Dreyfus, and Milo Parker portrayed incarnations unique to Big Finish.
| null | null | null | null | 8 |
[
"The Master (Doctor Who)",
"performer",
"Anthony Ainley"
] |
The Master, or "Missy" in their female incarnation, is a recurring character in the British science fiction television series Doctor Who and its associated spin-off works. They are a renegade alien Time Lord and the childhood friend and later archenemy of the title character, the Doctor. They were most recently portrayed by Sacha Dhawan.
Multiple actors have played the Master since the character's introduction in 1971. Within the show's narrative, the change in actors and subsequent change of the character's appearance is sometimes explained as the Master taking possession of other characters' bodies or as a consequence of regeneration, which is a biological attribute that allows Time Lords to survive fatal injuries or old age.
The Master was originally played by Roger Delgado from 1971 until his death in 1973. The role was subsequently played by Peter Pratt, Geoffrey Beevers, and Anthony Ainley, with Ainley reprising the role regularly through the 1980s until the series’s cancellation in 1989. Eric Roberts took on the role for the 1996 Doctor Who TV film. Since the show's revival in 2005, the Master has been portrayed by Derek Jacobi, John Simm, Michelle Gomez, and Sacha Dhawan.
Beevers, Roberts, Jacobi, Simm, and Gomez have reprised the role in audio dramas produced by Big Finish Productions. At the same time, Alex Macqueen, Gina McKee, Mark Gatiss, James Dreyfus, and Milo Parker portrayed incarnations unique to Big Finish.A new regeneration cycle – the long serving Master
Played by Peter Pratt in his next appearance, the Master returns in The Deadly Assassin (1976), opposite the Fourth Doctor (Tom Baker). Special effects makeup was applied to Pratt to give the Master a corpse-like appearance. Found by Chancellor Goth (Bernard Horsfall) on the planet Tersurus, the Master is revealed to be in his final regeneration and near the end of his final life. The Master attempts to gain a new regeneration cycle by using the artefacts of Rassilon, the symbols of the President of the Council of Time Lords, to manipulate the Eye of Harmony at the cost of Gallifrey. But the Doctor stops the Master, who escapes after his assumed death.The Master later returns in The Keeper of Traken, the role taken over by Geoffrey Beevers. Still dying, the Master came to the Traken Union to renew his life by using the empire's technological Source. Though the plot fails, the Master manages to cheat death by transferring his essence into the body of a Traken scientist named Tremas (Anthony Ainley) and overwriting his host's mind.The Master (Ainley, in a total of 31 episodes as the character) would confront the next three regenerations of the Doctor on and off for the rest of the classic series, still seeking to extend his life – preferably with a new set of regenerations. Subsequently, in The Five Doctors (1983), the Time Lords offer the Master a new regeneration cycle in exchange for his help.The Master's final appearance in the classic series is in Survival (1989, the final story of the series' original 26-year run), trapped on the planet of the Cheetah People and under its influence, which drives its victims to savagery. Though the Master manages to escape the doomed planet, he ends up back on the planet prior to its destruction when he attempts to kill the Seventh Doctor (Sylvester McCoy).
| null | null | null | null | 10 |
[
"The Master (Doctor Who)",
"different from",
"Meddling Monk"
] | null | null | null | null | 12 |
|
[
"The Master (Doctor Who)",
"topic's main category",
"Category:The Master"
] | null | null | null | null | 14 |
|
[
"The Master (Doctor Who)",
"performer",
"Michelle Gomez"
] | null | null | null | null | 24 |
|
[
"The Master (Doctor Who)",
"performer",
"Gordon Tipple"
] | null | null | null | null | 28 |
|
[
"The Master (Doctor Who)",
"performer",
"Peter Pratt"
] | null | null | null | null | 29 |
|
[
"The Master (Doctor Who)",
"performer",
"Geoffrey Beevers"
] | null | null | null | null | 30 |
|
[
"RAML (software)",
"based on",
"YAML"
] | null | null | null | null | 2 |
|
[
"Source Han Sans",
"based on",
"Source Sans"
] | null | null | null | null | 6 |
|
[
"Fukaya Station",
"based on",
"Tokyo Station"
] | null | null | null | null | 2 |
|
[
"Boundary scan description language",
"based on",
"VHDL"
] | null | null | null | null | 1 |
|
[
"Magnetic resonance imaging",
"based on",
"nuclear magnetic resonance"
] | null | null | null | null | 0 |
|
[
"Magnetic resonance imaging",
"uses",
"nuclear magnetic resonance"
] | null | null | null | null | 1 |
|
[
"Magnetic resonance imaging",
"topic's main category",
"Category:Magnetic resonance imaging"
] | null | null | null | null | 5 |
|
[
"LuaSandbox",
"based on",
"Lua"
] | null | null | null | null | 4 |
|
[
"Air-to-Air Stinger",
"based on",
"FIM-92 Stinger"
] |
The Air-to-Air Stinger (ATAS) (also unofficially called AIM-92 Stinger) is an air-to-air missile system developed from the shoulder-launched FIM-92 Stinger, for use on helicopters such as the AH-64 Apache, T129 ATAK, Eurocopter Tiger, and also UAVs such as the MQ-1 Predator. The missile itself is identical to the shoulder-launched Stinger.
| null | null | null | null | 1 |
[
"Fuzzy retrieval",
"based on",
"fuzzy logic"
] |
Fuzzy retrieval techniques are based on the Extended Boolean model and the Fuzzy set theory. There are two classical fuzzy retrieval models: Mixed Min and Max (MMM) and the Paice model. Both models do not provide a way of evaluating query weights, however this is considered by the P-norms algorithm.
| null | null | null | null | 0 |
[
"Volkstum",
"based on",
"nationality"
] | null | null | null | null | 0 |
|
[
"Volkstum",
"different from",
"people"
] |
The Volkstum (lit. folkdom or folklore, though the meaning is wider than the common usage of folklore) is the entire utterances of a Volk or ethnic minority over its lifetime, expressing a "Volkscharakter" this unit had in common. It was the defining idea of the Völkisch movement.
The term was coined by German nationalists in the context of Germany's "Freedom Wars", in marked and conscious opposition to the ideals of the French Revolution such as universal human rights. This sense of the word is now criticised in academia, though it is still in use in the protection of ethnic minorities and is a legal standard in Austria.
| null | null | null | null | 1 |
[
"Volkstum",
"based on",
"ethnicity"
] |
The Volkstum (lit. folkdom or folklore, though the meaning is wider than the common usage of folklore) is the entire utterances of a Volk or ethnic minority over its lifetime, expressing a "Volkscharakter" this unit had in common. It was the defining idea of the Völkisch movement.
The term was coined by German nationalists in the context of Germany's "Freedom Wars", in marked and conscious opposition to the ideals of the French Revolution such as universal human rights. This sense of the word is now criticised in academia, though it is still in use in the protection of ethnic minorities and is a legal standard in Austria.
| null | null | null | null | 2 |
[
"Lam with tah above",
"based on",
"ط"
] | null | null | null | null | 8 |
|
[
"Lam with tah above",
"based on",
"ل"
] | null | null | null | null | 9 |
|
[
"Four-document hypothesis",
"based on",
"Two-source hypothesis"
] |
The four-document hypothesis or four-source hypothesis is an explanation for the relationship between the three Gospels of Matthew, Mark, and Luke. It posits that there were at least four sources to the Gospel of Matthew and the Gospel of Luke: the Gospel of Mark and three lost sources (Q, M, and L). It was proposed by B. H. Streeter in 1925, who refined the two-source hypothesis into a four-source hypothesis.
| null | null | null | null | 0 |
[
"Half-Life VR but the AI Is Self-Aware",
"based on",
"Half-Life"
] |
Half-Life VR but the AI Is Self-Aware (Sometimes shortened to Half-Life VR: Self Aware AI and abbreviated HLVR: AI) is a role-playing themed livestream and machinima series staged within a virtual reality version Garry's Mod recreation of the video game Half-Life. The series, live streamed to Twitch with highlights later uploaded to YouTube, follows Gordon Freeman accompanied by the Science Team (controlled by other improv actors) as they traverse (loosely) the events of the original Half-Life game.
The series was met with positive reception by critics. On May 12, 2020, a cast commentary series began to be uploaded to the wayneradiotv YouTube channel. On May 31, 2020, a sequel, AI Crushes All Banks was streamed as part of a charity drive, set in Payday 2, in which the main cast begins a bank robbing spree across the city of Washington, D.C. On November 25, 2021, a spin-off series titled Half-Life: Alyx but the Gnome Is Too Aware was released.
| null | null | null | null | 2 |
[
"Half-Life VR but the AI Is Self-Aware",
"narrative location",
"Black Mesa Research Facility"
] |
Format
Half-Life VR but the AI Is Self-Aware loosely follows the events of the original Half-Life, albeit with a much more humorous and comedic tone, with main character Gordon Freeman (played by series host WayneRadioTV) accidentally causing a Resonance Cascade and exploring Black Mesa to try to escape (and later undo his actions). The series' main divergence from that of the original is the introduction of original self-aware AI characters, who despite the name of the series, are performed by other improv actors.Similarly, the series is actually played within the game Garry's Mod, as Half-Life lacks support for virtual reality and additional features necessary for the staging of the series (such as limitations with object spawning and map sizes). The most notable actor-controlled characters are the series' supporting cast: three scientists named Bubby, Dr. Coomer, and Tommy, as well as an antagonistic security guard named Benrey (alternatively spelled "Benry"), all four of whom follow Gordon in his journey through Black Mesa, generally to Gordon's detriment.
| null | null | null | null | 7 |
[
"Sound Juicer",
"based on",
"cdparanoia"
] | null | null | null | null | 6 |
|
[
"Sound Juicer",
"has use",
"CD ripper"
] | null | null | null | null | 8 |
|
[
"Rxvt",
"based on",
"xterm"
] |
Rxvt (acronym for our extended virtual terminal) is a terminal emulator for the X Window System, and in the form of a Cygwin port, for Windows.History
Rxvt was originally written by Rob Nation and later extensively modified by Mark Olesen, who took over maintenance for several years. It is intended to be a slimmed-down alternate for xterm, omitting some of its little-used features, like Tektronix 4014 emulation and toolkit-style configurability. The latter refers to the Xt resource mechanism, e.g., for binding keys. Rxvt is an extended version of the older xvt terminal emulator by John Bovey of the University of Kent.
The name originally stood for "Rob's xvt" (with XVT stands for 'X Virtual Terminal'), but was later re-dubbed "our xvt" (pronounced like the letters r-x-v-t).Features
Aside from features such as those controlled by resource files, rxvt's terminal emulation differs from xterm in two important ways:
| null | null | null | null | 2 |
[
"Linux Unified Key Setup",
"based on",
"dm-crypt"
] |
Full disk encryption
A common usage of LUKS is to provide full disk encryption, which involves encrypting the root partition of an operating system installation, which protects the operating system files from being tampered with or read by unauthorized parties.On a Linux system, the boot partition (/boot) may be encrypted if the bootloader itself supports LUKS (e.g. GRUB). This is undertaken to prevent tampering of the Linux kernel. However, the first stage bootloader or an EFI system partition cannot be encrypted (see Full disk encryption#The boot key problem).On mobile Linux systems, postmarketOS has developed osk-sdl to allow a full disk encrypted system to be unlocked using a touch screen.
For systems running systemd, the systemd-homed component can be used to encrypt individual home directories.Operating system support
The reference implementation for LUKS operates on Linux and is based on an enhanced version of cryptsetup, using dm-crypt as the disk encryption backend. Under Microsoft Windows, LUKS-encrypted disks can be used via the Windows Subsystem for Linux. (Formerly, this was possible with LibreCrypt, which currently has fundamental security holes, and which succeeded FreeOTFE, formerly DoxBox.)
DragonFly BSD supports LUKS.
| null | null | null | null | 6 |
[
"Zen Cart",
"has use",
"online shopping"
] | null | null | null | null | 6 |
|
[
"Zen Cart",
"based on",
"OsCommerce"
] | null | null | null | null | 7 |
|
[
"Sed",
"different from",
"GNU sed"
] | null | null | null | null | 0 |
|
[
"Sed",
"influenced by",
"ed"
] | null | null | null | null | 5 |
|
[
"Sed",
"based on",
"ed"
] | null | null | null | null | 6 |
|
[
"Deb (file format)",
"based on",
"tar"
] | null | null | null | null | 1 |
|
[
"Deb (file format)",
"based on",
"ar"
] | null | null | null | null | 4 |
|
[
"GitLab",
"based on",
"Git"
] | null | null | null | null | 4 |
|
[
"GitLab",
"based on",
"Ruby on Rails"
] | null | null | null | null | 5 |
|
[
"GitLab",
"different from",
"GitLab FOSS"
] | null | null | null | null | 15 |
|
[
"GitLab",
"different from",
"gitlab.com"
] | null | null | null | null | 18 |
|
[
"GitLab",
"has use",
"build automation"
] | null | null | null | null | 21 |
|
[
"Mersenne Twister",
"based on",
"Mersenne prime"
] |
The Mersenne Twister is a general-purpose pseudorandom number generator (PRNG) developed in 1997 by Makoto Matsumoto (松本 眞) and Takuji Nishimura (西村 拓士). Its name derives from the fact that its period length is chosen to be a Mersenne prime.
The Mersenne Twister was designed specifically to rectify most of the flaws found in older PRNGs.
The most commonly used version of the Mersenne Twister algorithm is based on the Mersenne prime
2
19937
−
1
{\displaystyle 2^{19937}-1}
. The standard implementation of that, MT19937, uses a 32-bit word length. There is another implementation (with five variants) that uses a 64-bit word length, MT19937-64; it generates a different sequence.
| null | null | null | null | 1 |
[
"Be Our Guest Restaurant",
"based on",
"Beauty and the Beast"
] |
Be Our Guest Restaurant is a table service restaurant in Fantasyland at Magic Kingdom in the Walt Disney World Resort. The restaurant has the theme and appearance of the Beast's Castle from Disney's 1991 animated feature film Beauty and the Beast. The name of the restaurant is a reference to "Be Our Guest", one of the signature songs from that film.History
The restaurant was added as part of a large expansion and renovation in 2012 to Fantasyland's phased opening.
In September 2009, it was announced at the D23 Expo that Fantasyland would be expanded to incorporate Disney Princess characters, along with a larger 3 ring circus-themed Dumbo area (now Storybook Circus). Recent conceptual artwork for the expansion shows several new additions and changes. Included is a new area themed to Disney's Beauty and the Beast featuring the Beast's Castle with a new dining experience, Gaston's tavern, and Belle's cottage.The restaurant was the only publicly accessible Magic Kingdom venue to serve wine and beer (exclusively at dinner) prior to December 23, 2016, when additional restaurants at Magic Kingdom added it to their menus.
On March 20, 2015, Be Our Guest Restaurant began to serve breakfast meals featuring foods such as eggs florentine and an open-faced egg and poached-bacon sandwich. Breakfast has since been discontinued in the post COVID-19 era with lunch and dinner being served in a table service setting and a limited Prix Fix menu available.
| null | null | null | null | 7 |
[
"The Incredible Hulk Coaster",
"based on",
"Hulk"
] |
History
In 1991, planning began for a new theme park adjacent to Universal Studios Florida. By the end of 1993, it was decided that one area of the future Islands of Adventure theme park would be themed after Marvel Comics, with a Hulk theme being selected for a thrill ride. The designers of the ride wanted to simulate being fired out of a cannon and subsequently set about prototyping a launch system. Universal Creative and MTS Systems Corporation had a working prototype in January 1995. Methods to achieve this acceleration were investigated into mid-1996. On-site construction of Islands of Adventure was underway in 1997, with Superior Rigging & Erection being responsible for erecting the supports and track of the roller coaster. On May 28, 1999, Islands of Adventure officially opened to the public, with The Incredible Hulk being one of its debut attractions.On August 14, 2015, Universal announced that the coaster would undergo major enhancement and refurbishment work. The ride closed on September 8, 2015, and re-opened to the public on August 4, 2016, after several days of technical rehearsals. The refurbishment involved heavy modifications to the line queue and entrance, along with a storyline theme. To improve the smoothness of the ride, sections of track were also replaced along with the trains, which were enhanced with on-board audio and special lighting effects. The launch tunnel's exterior was repainted black and the old track and trains were recycled for scrap.Concept art released in 2015 for the upcoming Universal Studios Beijing showed that the park would include a clone of the Incredible Hulk Coaster. However, Universal later clarified in 2019 that the depicted roller coaster clone would instead be themed to the Transformers franchise.
| null | null | null | null | 2 |
[
"Cedega (software)",
"based on",
"Wine"
] |
Cedega (formerly known as WineX) was the proprietary fork by TransGaming Technologies of Wine, from the last version of Wine under the X11 license before switching to GNU LGPL. It was designed specifically for running games created for Microsoft Windows under Linux. As such, its primary focus was implementing the DirectX API. WineX was renamed to Cedega on the release of version 4.0 on June 22, 2004.
Cedega Gaming Service was retired on February 28, 2011. TransGaming announced that development would continue under the GameTree Linux Developer Program, however this proved moot as the company's core technology divisions were shuttered in 2016.
| null | null | null | null | 1 |
[
"Cedega (software)",
"has use",
"compatibility layer"
] |
Cedega (formerly known as WineX) was the proprietary fork by TransGaming Technologies of Wine, from the last version of Wine under the X11 license before switching to GNU LGPL. It was designed specifically for running games created for Microsoft Windows under Linux. As such, its primary focus was implementing the DirectX API. WineX was renamed to Cedega on the release of version 4.0 on June 22, 2004.
Cedega Gaming Service was retired on February 28, 2011. TransGaming announced that development would continue under the GameTree Linux Developer Program, however this proved moot as the company's core technology divisions were shuttered in 2016.
| null | null | null | null | 6 |
[
"CrossOver (software)",
"based on",
"Wine"
] |
CrossOver is a Microsoft Windows compatibility layer available for Linux, macOS, and ChromeOS. This compatibility layer enables many Windows-based applications to run on Linux operating systems, macOS, or ChromeOS.
CrossOver is developed by CodeWeavers and based on Wine, an open-source Windows compatibility layer. CodeWeavers modifies the Wine source code, applies compatibility patches, adds configuration tools that are more user-friendly, automated installation scripts, and provides technical support. All changes made to the Wine source code are covered by the LGPL and publicly available. CodeWeavers maintains an online database listing how well various Windows applications perform under CrossOver.Versions
CrossOver Linux
CrossOver Linux is the original version of CrossOver. It aims to properly integrate with the GNOME and KDE desktop environments so that Windows applications will run seamlessly on Linux distributions. Before version 6, it was called CrossOver Mac Office. CrossOver Linux was originally offered in Standard and Professional editions. CrossOver Linux Standard was designed for a single user account on a machine. CrossOver Linux Professional provided enhanced deployment and management features for corporate users and multiple user accounts per machine. With the release of CrossOver Linux 11 in 2012, these different editions merged into a single CrossOver Linux product.
| null | null | null | null | 6 |
[
"CrossOver (software)",
"different from",
"Crossover"
] | null | null | null | null | 9 |
|
[
"CrossOver (software)",
"has use",
"compatibility layer"
] |
CrossOver is a Microsoft Windows compatibility layer available for Linux, macOS, and ChromeOS. This compatibility layer enables many Windows-based applications to run on Linux operating systems, macOS, or ChromeOS.
CrossOver is developed by CodeWeavers and based on Wine, an open-source Windows compatibility layer. CodeWeavers modifies the Wine source code, applies compatibility patches, adds configuration tools that are more user-friendly, automated installation scripts, and provides technical support. All changes made to the Wine source code are covered by the LGPL and publicly available. CodeWeavers maintains an online database listing how well various Windows applications perform under CrossOver.
| null | null | null | null | 11 |
[
"Elsinore Arch",
"based on",
"Kronborg Castle"
] | null | null | null | null | 2 |
|
[
"Elsinore Arch",
"owned by",
"Greater Cincinnati Water Works"
] | null | null | null | null | 5 |
|
[
"Galleass",
"based on",
"galley"
] |
A galleass was a type of warship - a hybrid that combined the sails and armament of a galleon with the maneuverability of the oared galley. While never quite matching up to the full expectations for its design, the galleass nevertheless remained in use during the 16th and 17th centuries.Development
Galleasses were higher, larger and slower than regular galleys. They had up to 32 oars, each worked by up to five men. They usually had three masts, and unlike galleys, proper forecastles and an aftcastles. Much effort was made in Venice to make galleasses as fast as possible to compete with regular galleys. The gun deck usually ran over the rowers' heads, but there are also pictures showing the opposite arrangement. Galleasses usually carried more sails than galleys and had far more firepower; a galley caught in a galleasses broadside was in great danger, since it exposed to a large amount of gunfire. Relatively few galleasses were built—one disadvantage was that, being more reliant on sails, their position at the front of the galley line at the start of a battle could not be guaranteed.
| null | null | null | null | 3 |
[
"Galleass",
"different from",
"galeas"
] | null | null | null | null | 4 |
|
[
"Gnome (Dungeons & Dragons)",
"based on",
"gnome"
] | null | null | null | null | 1 |
|
[
"Batman Returns (video games)",
"based on",
"Batman Returns"
] | null | null | null | null | 6 |
|
[
"Batman Returns (video games)",
"main subject",
"Batman Returns"
] | null | null | null | null | 11 |
|
[
"Batman Returns (video games)",
"main subject",
"Batman Returns"
] | null | null | null | null | 14 |
|
[
"Merlin (DC Comics)",
"based on",
"Merlin"
] | null | null | null | null | 2 |
|
[
"Merlin (DC Comics)",
"performer",
"W. Morgan Sheppard"
] | null | null | null | null | 5 |
|
[
"Merlin (DC Comics)",
"performer",
"David McCallum"
] | null | null | null | null | 7 |
|
[
"Merlin (DC Comics)",
"performer",
"Michael Bell"
] | null | null | null | null | 10 |
|
[
"Merlin (DC Comics)",
"performer",
"Patrick Seitz"
] | null | null | null | null | 17 |
|
[
"Merlin (DC Comics)",
"performer",
"Sarah Grey"
] | null | null | null | null | 23 |
|
[
"Augmented Backus–Naur form",
"based on",
"Backus–Naur Form"
] | null | null | null | null | 2 |
|
[
"Extended Backus–Naur form",
"based on",
"Backus–Naur Form"
] |
In computer science, extended Backus–Naur form (EBNF) is a family of metasyntax notations, any of which can be used to express a context-free grammar. EBNF is used to make a formal description of a formal language such as a computer programming language. They are extensions of the basic Backus–Naur form (BNF) metasyntax notation.
The earliest EBNF was developed by Niklaus Wirth, incorporating some of the concepts (with a different syntax and notation) from Wirth syntax notation. Today, many variants of EBNF are in use.
The International Organization for Standardization adopted an EBNF Standard, ISO/IEC 14977, in 1996.
| null | null | null | null | 4 |
[
"Free Pascal Runtime Library",
"based on",
"Free Pascal"
] | null | null | null | null | 4 |
|
[
"Gospel of Pseudo-Matthew",
"based on",
"Infancy Gospel of Thomas"
] | null | null | null | null | 2 |
|
[
"Gospel of Pseudo-Matthew",
"based on",
"Gospel of James"
] |
Composition date
According to the research of J. Gijsel and R. Beyers (1997), the archetype of the Gospel of Pseudo-Matthew's Recensio-α dates to 800 AD and the composition date to the first half of the seventh century, maybe to around 600 and 625 AD. Gijsel writes that Joachim's representation in Pseudo-Matthew is meant to evoke the model figure of a Merovingian nobleman, this one, according to Gijsel, being Dagobert I during his reign (629–639). According to Berthold, the composition date of the Gospel of Pseudo-Matthew is around 650 AD at the earliest, due to the fact that it "shows literary dependence on Vita Agnetis of Pseudo-Ambrose", which itself was used in De Virginitate by Aldhelm in 690 AD. According to G. Schneider, the Gospel of Pseudo-Matthew was composed in the 8th or 9th century during the Carolingian dynasty.The work expanded over time. The base content of Pseudo-Matthew shares many similarities with, and likely used as a source, the apocryphal Gospel of James. The attribution of the work to Matthew was not present in the earliest versions; the claim Matthew wrote the gospel was only added two centuries later, in the prologue correspondence between the bishops and Jerome. The similar Gospel of James had been condemned in Western Christianity by Jerome due to its reference to Jesus having brothers; seemingly in an attempt to avoid a similar condemnation, the prologue was added wherein an authority no less than Jerome himself translates the work from Matthew and approves of it. Similarly, the later sections which include a version of the Infancy Gospel of Thomas are not present in the oldest manuscripts, suggesting that the merging of the Gospel of Thomas content into the combined Pseudo-Matthew work happened later.Content
The narrative is prefaced by a series of letters between the early Church father Jerome and the Bishops Comatius and Heliodorus. In these letters the Bishops request that Jerome translate a "Hebrew volume, written by the hand of the most blessed Evangelist Matthew," concerning the birth of the virgin mother and the infancy of Jesus. Though the work is attributed to St. Jerome, it is unlikely that St. Jerome actually wrote or translated it: "no one who is acquainted with the style of Jerome's letters will think this one authentic."The author of the pseudo-Jerome letter claims he compiled and translated the work, taking care to "render it word for word, exactly as it is in the Hebrew, since it is asserted that it was composed by the holy Evangelist Matthew, and written at the head of his Gospel," though he expressed doubt as to their authenticity.The first half of the narrative tells the story of St. Joachim and St. Anne, the parents of Mary; Joachim's sorrow and persecution on account of their lack of progeny, his exile and return to Anna with child, and the birth of Mary; her entering service as a temple virgin, her prayerful life and vow of chastity, and the choosing of Joseph as her husband and guardian upon her becoming too old to continue as a temple virgin; the Annunciation; Joseph's distress at finding her pregnant, and his eventual acceptance of her honesty; his and Mary's being tested in the temple, and the acceptance of the people in the temple of Mary's and Joseph's innocence.
The content of the text is primarily an edited reproduction of the Gospel of James, followed by an account of the Flight into Egypt (it is not known on what this is based), and subsequently an edited reproduction of the Infancy Gospel of Thomas. Essentially, it is a fairly successful attempt to merge these texts into a single work. To its sources, the Gospel adds the first known mention of an ox and a donkey being present at the nativity of Jesus. The work also helped popularize the image of a very young Mary and relatively old Joseph from the Gospel of James.It had a strong influence in medieval thought, partly due to its inclusion in the Golden Legend. One of the consequences of this is the creation of derivative works, such as the Libellus de Nativitate Sanctae Mariae, which consists of just the early part of the text concerning the birth of Mary. Another text to be based on Pseudo Matthew is the Syriac Infancy Gospel, which includes many supernatural embellishments.
Events described in the Gospel of Pseudo-Matthew inspired "The Cherry-Tree Carol".
| null | null | null | null | 3 |
[
"20 mm Polsten",
"based on",
"Oerlikon 20 mm cannon"
] | null | null | null | null | 3 |
|
[
"Roman de Brut",
"based on",
"The History of the Kings of Britain"
] |
The Brut or Roman de Brut (completed 1155) by the poet Wace is a loose and expanded translation in almost 15,000 lines of Norman-French verse of Geoffrey of Monmouth's Latin History of the Kings of Britain. It was formerly known as the Brut d'Engleterre or Roman des Rois d'Angleterre, though Wace's own name for it was the Geste des Bretons, or Deeds of the Britons. Its genre is equivocal, being more than a chronicle but not quite a fully-fledged romance. It narrates a largely fictional version of Britain's story from its settlement by Brutus, a refugee from Troy, who gives the poem its name, through a thousand years of pseudohistory, including the story of king Leir, up to the Roman conquest, the introduction of Christianity, and the legends of sub-Roman Britain, ending with the reign of the 7th-century king Cadwallader. Especially prominent is its account of the life of King Arthur, the first in any vernacular language, which instigated and influenced a whole school of French Arthurian romances dealing with the Round Table – here making its first appearance in literature – and with the adventures of its various knights.Composition
The Norman poet Wace was born on the island of Jersey around the beginning of the 12th century, and was educated first at Caen on the mainland and later in Paris, or perhaps Chartres. He returned to Caen and there began writing narrative poems. At some point in this stage of his life he visited southern England, perhaps on business, perhaps to conduct research, perhaps even wanting to visit Geoffrey of Monmouth, whose Latin Historia Regum Britanniae he translated as the Roman de Brut. The Brut's subject, the history of Britain from its mythical Trojan beginnings, was calculated to appeal to a secular Norman readership at a time when Normandy and England formed part of the same realm. Working under the patronage of Henry II, he completed his poem in 1155, and presented a copy of it to Eleanor of Aquitaine, Henry's wife. Its success is evidenced by the large number of surviving manuscripts, and by its extensive influence on later writers.
| null | null | null | null | 8 |
[
"AGM-122 Sidearm",
"based on",
"AIM-9 Sidewinder"
] |
Development
The AGM-122 Sidearm was produced by the re-manufacture of AIM-9C missiles that had been taken out of service. The AIM-9C was a semi-active radar homing variant of the Sidewinder, developed for the US Navy's Vought F-8 Crusader, but used for only a limited period of time. Conceived and developed at China Lake NAWS, the Sidearm was first tested in 1981. In 1984, Motorola was issued a contract to convert and upgrade AIM-9Cs to the AGM-122A standard. A total of about 700 units were produced between 1986 and 1990.
Existing stocks of Sidearm have been depleted, and the missile is no longer in service. Proposals for new-build missiles, under the designation AGM-122B, have not been proceeded with to date.
The AGM-122 was less capable than newer anti-radiation missiles, such as the AGM-88 HARM, but also substantially cheaper, and its lighter weight enabled it to be carried by combat helicopters as well as fighter aircraft and fighter bombers. The missile was primarily fielded aboard Marine Corps AH-1T/W Sea Cobra attack helicopters, and Marine Corps AV-8B Harrier jump jets, and could take the place of self-defense air to air missiles. The weapon retained the same warhead of the AIM-9C, which gave it a fairly limited destructive ability against armored vehicles. However, due to the nature of radiation homing missiles, the AGM-122 aimed for the radar emitter directly, all but guaranteeing the operational elimination of the target.
The Sidearm was primarily intended for use against short-range radar guided anti-aircraft artillery and shorter range SAMs, including those fired by vehicles. The missile was capable of tracking a target even if it was moving.
| null | null | null | null | 3 |
[
"Gradient-enhanced kriging",
"based on",
"kriging"
] |
Gradient-enhanced kriging (GEK) is a surrogate modeling technique used in engineering. A surrogate model (alternatively known as a metamodel, response surface or emulator) is a prediction of the output of an expensive computer code.
This prediction is based on a small number of evaluations of the expensive computer code.
| null | null | null | null | 0 |
[
"Beyond the Red Line",
"based on",
"Battlestar Galactica"
] | null | null | null | null | 9 |
|
[
"Cimetière Notre-Dame-de-Belmont",
"based on",
"Green-Wood Cemetery"
] | null | null | null | null | 1 |
|
[
"Erdős–Bacon number",
"based on",
"Erdős number"
] | null | null | null | null | 2 |
|
[
"Erdős–Bacon number",
"based on",
"Bacon number"
] | null | null | null | null | 3 |
|
[
"Lavochkin La-152",
"based on",
"Lavochkin La-150"
] |
The Lavochkin La-152, (USAF reporting name - Type 4), and its variants, was a jet fighter prototype designed and manufactured by the Lavochkin Design Bureau (OKB) shortly after the end of World War II. Derived from the Lavochkin La-150, the 152 used several different engines, but the program was canceled as other fighters with more powerful engines and swept wings showed more promise.
| null | null | null | null | 3 |
[
"SpaceX Dragon 2",
"based on",
"Dragon"
] | null | null | null | null | 2 |
|
[
"SpaceX Dragon 2",
"follows",
"Dragon"
] | null | null | null | null | 3 |
|
[
"SpaceX Dragon 2",
"significant event",
"maiden flight"
] | null | null | null | null | 9 |
|
[
"SpaceX Dragon 2",
"has part(s) of the class",
"Crew Dragon"
] |
Dragon 2 is a class of partially reusable spacecraft developed and manufactured by American aerospace manufacturer SpaceX, primarily for flights to the International Space Station (ISS). SpaceX also launches private missions, such as Inspiration4 and Axiom Mission 1. There are two variants of the Dragon spacecraft: Crew Dragon, a spacecraft capable of ferrying four crewmembers, and Cargo Dragon, an updated replacement for the original Dragon 1 used to carry freight to and from space. The spacecraft consists of a reusable space capsule and an expendable trunk module. The spacecraft launches atop a Falcon 9 Block 5 rocket and the capsule returns to Earth through splashdown.
Cargo Dragon supplies cargo to the ISS under a Commercial Resupply Services-2 contract with NASA. The first flight of Dragon 2 in a cargo configuration launched in December 2020. It shares this duty with Northrop Grumman Innovation Systems' Cygnus spacecraft, and Sierra Nevada Corporation's Dream Chaser spaceplane is expected to join them in 2023. As of July 2023 it is the only reusable orbital cargo spacecraft in operation.
As of July 2023, Crew Dragon is the only U.S. human-rated orbital transport spacecraft. Crew Dragon's primary role is to transport crews to and from the ISS under NASA's Commercial Crew Program, succeeding the crew orbital transportation capabilities of the Space Shuttle, which retired from service in 2011. It will be joined by Boeing Starliner in this role in 2024. Crew Dragon is also used for commercial flights, some of them to the ISS, and is expected to be used to shuttle people to and from Axiom Space's planned space station.
| null | null | null | null | 14 |
[
"SpaceX Dragon 2",
"has part(s) of the class",
"Cargo Dragon"
] | null | null | null | null | 17 |
|
[
"SpaceX Dragon 2",
"topic's main category",
"Category:SpaceX Dragon 2"
] | null | null | null | null | 20 |
|
[
"IDempiere",
"has use",
"enterprise resource planning"
] | null | null | null | null | 6 |
|
[
"IDempiere",
"based on",
"Adempiere"
] |
History
1999, Jorg Janke creates Compiere a predecessor of iDempiere. Jorg had previously worked at Oracle in Germany and the USA.2006, starts the development of ADempiere as a fork of the open source version of Compiere.
2008–2010, in the Adempiere community some users work on a modular ERP design proposal, with some OSGI implementations like Apache Felix and Equinox.2010, Adempiere 3.6.0 LTS and Branch GlobalQSS Adempiere361 are launched.
| null | null | null | null | 20 |
[
"IDempiere",
"topic's main category",
"Category:IDempiere"
] | null | null | null | null | 23 |
|
[
"Khē",
"follows",
"ق"
] | null | null | null | null | 2 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.