HOME
*





Dissociated Press
Dissociated press is a parody generator (a computer program that generates nonsensical text). The generated text is based on another text using the Markov chain technique. The name is a play on "Associated Press" and the psychological term dissociation (although word salad is more typical of conditions like aphasia and schizophrenia – which is, however, frequently confused with dissociative identity disorder by laypeople). An implementation of the algorithm is available in Emacs. Another implementation is available as a Perl module in CPANGames::Dissociate Burke, Sean M. and Avi FinkelGames::Dissociate distribution in CPAN Retrieved 2012-11-13. Most recent release: 2010, "v1.0". The algorithm The algorithm starts by printing a number of consecutive words (or letters) from the source text. Then it searches the source text for an occurrence of the few last words or letters printed out so far. If multiple occurrences are found, it picks a random one, and proceeds with printing t ...
[...More Info...]      
[...Related Items...]     OR:     [Wikipedia]   [Google]   [Baidu]  


Parody Generator
Parody generators are computer programs which generate text that is syntactically correct, but usually meaningless, often in the style of a technical paper or a particular writer. They are also called travesty generators and random text generators. Their purpose is often satirical, intending to show that there is little difference between the generated text and real examples. Many work by using techniques such as Markov chains to reprocess real text examples; alternatively, they may be hand-coded. Generated texts can vary from essay length to paragraphs and tweets. (The term "quote generator" can also be used for software that randomly selects real quotations.) Examples * Dissociated press, an implementation of a Markov chaining algorithm *Postmodernism Generator, generates essays in the style of post-structuralism *SCIgen, generates nonsensical computer science research papers See also * Chatterbot * Cleverbot * Filler text, meaningless text used as an example * Natural ...
[...More Info...]      
[...Related Items...]     OR:     [Wikipedia]   [Google]   [Baidu]  


picture info

William Faulkner
William Cuthbert Faulkner (; September 25, 1897 – July 6, 1962) was an American writer known for his novels and short stories set in the fictional Yoknapatawpha County, based on Lafayette County, Mississippi, where Faulkner spent most of his life. A Nobel Prize laureate, Faulkner is one of the most celebrated writers of American literature and is considered the greatest writer of Southern literature. Born in New Albany, Mississippi, Faulkner's family moved to Oxford, Mississippi when he was a young child. With the outbreak of World War I, he joined the Royal Canadian Air Force but did not serve in combat. Returning to Oxford, he attended the University of Mississippi for three semesters before dropping out. He moved to New Orleans, where he wrote his first novel '' Soldiers' Pay'' (1925). He went back to Oxford and wrote '' Sartoris'' (1927), his first work set in the fictional Yoknapatawpha County. In 1929, he published ''The Sound and the Fury''. The following year, he ...
[...More Info...]      
[...Related Items...]     OR:     [Wikipedia]   [Google]   [Baidu]  


Parody Generator
Parody generators are computer programs which generate text that is syntactically correct, but usually meaningless, often in the style of a technical paper or a particular writer. They are also called travesty generators and random text generators. Their purpose is often satirical, intending to show that there is little difference between the generated text and real examples. Many work by using techniques such as Markov chains to reprocess real text examples; alternatively, they may be hand-coded. Generated texts can vary from essay length to paragraphs and tweets. (The term "quote generator" can also be used for software that randomly selects real quotations.) Examples * Dissociated press, an implementation of a Markov chaining algorithm *Postmodernism Generator, generates essays in the style of post-structuralism *SCIgen, generates nonsensical computer science research papers See also * Chatterbot * Cleverbot * Filler text, meaningless text used as an example * Natural ...
[...More Info...]      
[...Related Items...]     OR:     [Wikipedia]   [Google]   [Baidu]  




Racter
''Racter'' is an artificial intelligence computer program that generates English language prose at random. It was published in 1984 by Mindscape. History Racter, short for ''raconteur'', was written by William Chamberlain and Thomas Etter. The existence of the program was revealed in 1983 in a book called ''The Policeman's Beard Is Half Constructed'' (), which was described as being composed entirely by the program. The program originally was written for an OSI which only supported file names at most six characters long, causing the name to be shorted to Racter and it was later adapted to run on a CP/M machine where it was written in "compiled BASIC on a Z80 micro with 64K of RAM." This version, the program that allegedly wrote the book, was not released to the general public. The sophistication claimed for the program was likely exaggerated, as could be seen by investigation of the template system of text generation. However, in 1984 Mindscape released an interactive versi ...
[...More Info...]      
[...Related Items...]     OR:     [Wikipedia]   [Google]   [Baidu]  


Mark V
Mark V or Mark 5 often refers to the fifth version of a product, frequently military hardware. "Mark", meaning "model" or "variant", can be abbreviated "Mk." Mark V or Mark 5 can specifically refer to: In technology In military and weaponry * BL 13.5 inch Mk V naval gun (1912); British gun that was a defining feature of the super-dreadnought ''Orion''-class battleships * QF 4 inch Mk V naval gun (1914); British naval gun used for coastal defense and anti-aircraft * Mark V tank, a series of variations of the World War I Mark I tank ** Mark V Composite tank in Estonian service; specific design and service of the Mark V tank as used by Estonia * BL 8-inch howitzer Mk I – V; World War I British gun, heavy and short-range * Mk 5 mine (1943); British anti-tank mine used in World War II * Supermarine Spitfire Mk V; 1941 British fighter aircraft augmented with high-altitude capability * Mark 5 nuclear bomb (1952–1963); American nuclear bomb * Mark V Special Operations Craft (1995), ...
[...More Info...]      
[...Related Items...]     OR:     [Wikipedia]   [Google]   [Baidu]  


Cut-up Technique
The cut-up technique (or ''découpé'' in French) is an aleatory literary technique in which a written text is cut up and rearranged to create a new text. The concept can be traced to the Dadaists of the 1920s, but it was developed and popularized in the 1950s and early 1960s, especially by writer William S. Burroughs. It has since been used in a wide variety of contexts. Technique The cut-up and the closely associated fold-in are the two main techniques: *''Cut-up'' is performed by taking a finished and fully linear text and cutting it in pieces with a few or single words on each piece. The resulting pieces are then rearranged into a new text, such as in poems by Tristan Tzara as described in his short text, ''TO MAKE A DADAIST POEM''. *''Fold-in'' is the technique of taking two sheets of linear text (with the same linespacing), folding each sheet in half vertically and combining with the other, then reading across the resulting page, such as in '' The Third Mind''. It is a joint ...
[...More Info...]      
[...Related Items...]     OR:     [Wikipedia]   [Google]   [Baidu]  


picture info

B-tree
In computer science, a B-tree is a self-balancing tree data structure that maintains sorted data and allows searches, sequential access, insertions, and deletions in logarithmic time. The B-tree generalizes the binary search tree, allowing for nodes with more than two children. Unlike other self-balancing binary search trees, the B-tree is well suited for storage systems that read and write relatively large blocks of data, such as databases and file systems. Origin B-trees were invented by Rudolf Bayer and Edward M. McCreight while working at Boeing Research Labs, for the purpose of efficiently managing index pages for large random-access files. The basic assumption was that indices would be so voluminous that only small chunks of the tree could fit in main memory. Bayer and McCreight's paper, ''Organization and maintenance of large ordered indices'', was first circulated in July 1970 and later published in ''Acta Informatica''. Bayer and McCreight never explained what, if a ...
[...More Info...]      
[...Related Items...]     OR:     [Wikipedia]   [Google]   [Baidu]  


picture info

Tree Data Structure
In computer science, a tree is a widely used abstract data type that represents a hierarchical tree structure with a set of connected nodes. Each node in the tree can be connected to many children (depending on the type of tree), but must be connected to exactly one parent, except for the ''root'' node, which has no parent. These constraints mean there are no cycles or "loops" (no node can be its own ancestor), and also that each child can be treated like the root node of its own subtree, making recursion a useful technique for tree traversal. In contrast to linear data structures, many trees cannot be represented by relationships between neighboring nodes in a single straight line. Binary trees are a commonly used type, which constrain the number of children for each parent to exactly two. When the order of the children is specified, this data structure corresponds to an ordered tree in graph theory. A value or pointer to other data may be associated with every node in the tre ...
[...More Info...]      
[...Related Items...]     OR:     [Wikipedia]   [Google]   [Baidu]  


picture info

Compiled BASIC
BASIC (Beginners' All-purpose Symbolic Instruction Code) is a family of general-purpose, high-level programming languages designed for ease of use. The original version was created by John G. Kemeny and Thomas E. Kurtz at Dartmouth College in 1963. They wanted to enable students in non-scientific fields to use computers. At the time, nearly all computers required writing custom software, which only scientists and mathematicians tended to learn. In addition to the program language, Kemeny and Kurtz developed the Dartmouth Time Sharing System (DTSS), which allowed multiple users to edit and run BASIC programs simultaneously on remote terminals. This general model became very popular on minicomputer systems like the PDP-11 and Data General Nova in the late 1960s and early 1970s. Hewlett-Packard produced an entire computer line for this method of operation, introducing the HP2000 series in the late 1960s and continuing sales into the 1980s. Many early video games trace their histo ...
[...More Info...]      
[...Related Items...]     OR:     [Wikipedia]   [Google]   [Baidu]  


picture info

Claude Shannon
Claude Elwood Shannon (April 30, 1916 – February 24, 2001) was an American people, American mathematician, electrical engineering, electrical engineer, and cryptography, cryptographer known as a "father of information theory". As a 21-year-old master's degree student at the Massachusetts Institute of Technology (MIT), he wrote A Symbolic Analysis of Relay and Switching Circuits, his thesis demonstrating that electrical applications of Boolean algebra could construct any logical numerical relationship. Shannon contributed to the field of cryptanalysis for national defense of the United States during World War II, including his fundamental work on codebreaking and secure telecommunications. Biography Childhood The Shannon family lived in Gaylord, Michigan, and Claude was born in a hospital in nearby Petoskey, Michigan, Petoskey. His father, Claude Sr. (1862–1934), was a businessman and for a while, a judge of probate in Gaylord. His mother, Mabel Wolf Shannon (1890–1945), ...
[...More Info...]      
[...Related Items...]     OR:     [Wikipedia]   [Google]   [Baidu]  


Turbo Pascal
Turbo Pascal is a software development system that includes a compiler and an integrated development environment (IDE) for the Pascal (programming language), Pascal programming language running on CP/M, CP/M-86, and DOS. It was originally developed by Anders Hejlsberg at Borland, and was notable for its extremely fast compilation. Turbo Pascal, and the later but similar Borland Turbo C, Turbo C, made Borland a leader in PC-based development. For versions 6 and 7 (last), both a lower-priced Turbo Pascal and more expensive Borland Pascal were produced; Borland Pascal was more oriented toward professional software development, with more libraries and standard library source code. The name Borland Pascal is also used more generically for Borland's dialect of the Pascal programming language, significantly different from Standard Pascal. Borland has released three old versions of Turbo Pascal free of charge because of their historical interest: the original Turbo Pascal (now known as ...
[...More Info...]      
[...Related Items...]     OR:     [Wikipedia]   [Google]   [Baidu]