![]() |
|
[Other] Breaking Apr 1st news! MS 408 proves Blackadder actually existed! - Printable Version +- The Voynich Ninja (https://www.voynich.ninja) +-- Forum: Voynich Research (https://www.voynich.ninja/forum-27.html) +--- Forum: News (https://www.voynich.ninja/forum-25.html) +--- Thread: [Other] Breaking Apr 1st news! MS 408 proves Blackadder actually existed! (/thread-3763.html) Pages:
1
2
|
RE: Breaking Apr 1st news! MS 408 proves Blackadder actually existed! - kckluge - 02-04-2025 Many thanks to Marco, tavie, and oshfdk for their kind words. Koen's recent rules post (You are not allowed to view links. Register or Login to view.) prompted me to prompt ChatGPT for its opinion of the "Blackadder solution" -- I was frankly somewhat surprised at how good its response was (although I object to its characterization of the theory as "convoluted"): You said: Evaluate the following theory regarding the contents of the Voynich Manuscript: Since announcing the solution of the Voynich Mss. three years ago (You are not allowed to view links. Register or Login to view.), I have been deluged by literally zeros of people daily wondering what progress has been made in advancing the "Blackadder solution". [...] She looked down at the limp form drifting aimlessly at the bottom of the pit and thought to herself, 'Some people just can't handle their malmsey.'" ChatGPT said: The "Blackadder solution" to the Voynich Manuscript is a unique and highly imaginative theory, blending historical fiction, pop culture references, and cryptographic analysis in a satirical and convoluted way. The theory makes use of the British television series Blackadder as a key "crib" (a source for deciphering the manuscript), which the author claims unlocks hidden historical truths, particularly about the legitimacy of the House of Blackadder as rulers of England and their opposition to the Tudors. However, the argument as presented seems to be more of a playful, humorous exploration of conspiracy theories rather than a serious attempt at historical or cryptographic analysis. Evaluation of the Key Aspects:
The "Blackadder solution" is a fantastical and humorous piece of writing that combines absurd historical reinterpretations, a satirical look at conspiracies, and an exaggerated cryptographic method. While it is clearly not intended to be taken seriously, the theory does highlight some real issues with certain approaches to deciphering the Voynich Manuscript, such as over-reliance on arbitrary cribs, cherry-picking data, and ignoring statistical properties. However, as a legitimate explanation for the manuscript's contents, the "Blackadder solution" falls far short. It is best seen as an imaginative, playful exploration of how easily historical and cryptographic narratives can be twisted to fit particular ideologies or fictions. By messaging ChatGPT, you agree to our You are not allowed to view links. Register or Login to view. and have read our You are not allowed to view links. Register or Login to view.. Don't share sensitive info. Chats may be reviewed and used to train our models. You are not allowed to view links. Register or Login to view. ChatGPT can make mistakes. Check important info. RE: Breaking Apr 1st news! MS 408 proves Blackadder actually existed! - kckluge - 08-04-2025 As gratifying as it has been to see the read count on this thread growing after my update earlier this month (which will probably lead to the release of the first several chapters of _The (Duh!) Voynich Code_ next April Fools' Day), ideally I'd like to be remembered for more substantial contributions. As a result, I thought I would take advantage of the recent visibility of this thread to point people to the open-source Awk language "Swiss Army knife" text analysis tool I posted in You are not allowed to view links. Register or Login to view.. If the low download count represents lack of access to an awk interpreter or issues with the documentation in the comments and the file containing examples of the tool's output, I'm happy to work on adding info on getting awk working under Windows or clarifying the command line options. While this is going to get mangled (at least in part because of the lack of a fixed-width font option), here's a taste of the info it can generate from the input text sample (note that while the examples use Currier from the D'Imperio transcription, you can use the transcription scheme and text of your choice or analyze natural language texts for comparison): Example 2: Comparing 20 most-frequent contexts of word-initial '9' (two glyphs before the space and one glyph after the '9') between Herbal A and Biological B. bash-3.1$ cat HerbA.txt | sed 's/^...... //g' | awk -f ekg2Awk.txt k=5 hz=1 TE=20 SC='-#/' RE='../9.' # 33702 char 'VAS92/9FAE...E/SOE/8AM#' # Input alphabet (40 'letters'): 'VAS92/FERPMZOQ8-XN*DUC$TWY#I3HJB0,4K67LG' # Vowels found by Sukhotin's method excluding digrams containing characters # in '-#/': O A 9 C 0 6 # RE = '../9.' # XRE = '^$' # MinCt = 0 (12417 types, 33698 tokens) # k NTyp NTok Hk (bits) PctFreq1 Typ/Tok k-grams # 5 12417 33698 12.409070 0.636225 0.36848 all # 5 121 285 6.179331 65.289256 0.42456 in RE & not in XRE & ct >= MinCt # Max possible H5: all tokens = 13.600029 bits, RE tokens = 6.918863 bits # Selected = 0.9745 pct of types, 0.8457 pct of tokens kgram: OR/9P OR/9F OE/9F AM/9F AM/9P OE/9P S9/9P OR/9/ C9/9P C9/9F Rank: 1 2 3 4 5 6 7 8 9 10 Count: 22 15 14 12 11 10 9 8 8 6 AllFreq: 0.0007 0.0004 0.0004 0.0004 0.0003 0.0003 0.0003 0.0002 0.0002 0.0002 REFreq: 0.0772 0.0526 0.0491 0.0421 0.0386 0.0351 0.0316 0.0281 0.0281 0.0211 RECmFrq: 1.0000 0.9228 0.8702 0.8211 0.7789 0.7404 0.7053 0.6737 0.6456 0.6175 kgram: AR/9F 89/9P S9/9F S9/98 C2/9F AR/9P AN/9F ZO/9P ZO/9F Q9/9P Rank: 11 12 13 14 15 16 17 18 19 20 Count: 6 6 5 4 4 4 4 3 3 3 AllFreq: 0.0002 0.0002 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 REFreq: 0.0211 0.0211 0.0175 0.0140 0.0140 0.0140 0.0140 0.0105 0.0105 0.0105 RECmFrq: 0.5965 0.5754 0.5544 0.5368 0.5228 0.5088 0.4947 0.4807 0.4702 0.4596 bash-3.1$ cat BioB.txt | sed 's/^...... //g' | awk -f ekg2Awk.txt k=5 hz=1 TE=20 SC='-#/' RE='../9.' # 35485 char 'VSC89FAR9/...OPOE/SC89-' # Input alphabet (34 'letters'): 'VSC89FAR/O4Z-NE2JMPXBQD*TULYW36G5H' # Vowels found by Sukhotin's method excluding digrams containing characters # in '-#/': C O A 9 V L Y # RE = '../9.' # XRE = '^$' # MinCt = 0 ( 7966 types, 35481 tokens) # k NTyp NTok Hk (bits) PctFreq1 Typ/Tok k-grams # 5 7966 35481 10.703298 0.464474 0.22451 all # 5 50 79 5.268988 74.000000 0.63291 in RE & not in XRE & ct >= MinCt # Max possible H5: all tokens = 12.959640 bits, RE tokens = 5.643856 bits # Selected = 0.6277 pct of types, 0.2227 pct of tokens kgram: 89/9F 89/9P C9/9P C9/9F AR/9P AN/9P P9/9F C8/9F AR/9F AN/9F Rank: 1 2 3 4 5 6 7 8 9 10 Count: 10 6 3 3 3 3 2 2 2 2 AllFreq: 0.0003 0.0002 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 REFreq: 0.1266 0.0759 0.0380 0.0380 0.0380 0.0380 0.0253 0.0253 0.0253 0.0253 RECmFrq: 1.0000 0.8734 0.7975 0.7595 0.7215 0.6835 0.6456 0.6203 0.5949 0.5696 kgram: AN/98 AM/98 AE/9Z S9/9F S2/98 Q9/9P Q9/9O Q9/9F OR/9Z OR/9P Rank: 11 12 13 14 15 16 17 18 19 20 Count: 2 2 2 1 1 1 1 1 1 1 AllFreq: 0.0001 0.0001 0.0001 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 REFreq: 0.0253 0.0253 0.0253 0.0127 0.0127 0.0127 0.0127 0.0127 0.0127 0.0127 RECmFrq: 0.5443 0.5190 0.4937 0.4684 0.4557 0.4430 0.4304 0.4177 0.4051 0.3924 bash-3.1$ Example 3: Print the 20 most-frequent Herbal A word types that a) match Zattera's slot model for "regular" (not "separable") words [1], but b) do not match Tiltman's prefix/suffix model [2] [1]: strictly speaking, the '[8DERJNGTKMHUL3105]' part of the regex should be modified to something like '((I?I?I?8)|[DERJNGTKMHUL3105])', but in practice it doesn't matter... [2]: assuming both prefix and suffix have to be non-empty bash-3.1$ cat HerbA.txt | sed 's/^...... //g' | sed 's.[/#-]. .g' | awk -f ekg2Awk.txt hz=2 WL=1 XRE='^((4?O[FVBP])|[SZ82])((A[DNM3RTU0EGH1])|(O[ER])|(CC?C?8?9))$' RE='^[428]?[O9]?[ER]?[PFBV]?[SZ]?[QXWY]?(CC?C?)?[28]?[OA]?[8DERJNGTKMHUL3105]?9?$' # Input alphabet (37 'letters'): 'VAS92FERPMZOQ8XN*DUC$TWYI3HJB0,4K67LG' # RE = '^[428]?[O9]?[ER]?[PFBV]?[SZ]?[QXWY]?(CC?C?)?[28]?[OA]?[8DERJNGTKMHUL3105]?9?$' # XRE = '^((4?O[FVBP])|[SZ82])((A[DNM3RTU0EGH1])|(O[ER])|(CC?C?8?9))$' # MinCt = 0 ( 2224 types, 7121 tokens) # # Word frequency and length histograms: all words # # TypeCount 2224 TokenCount 7121 AvgTypeLen 4.72 AvgTokLen 3.73 # Number of words with given number of occurances: # NOcc : 1 2 3 4 5 6 7 8 9 10 11 12 13 (>=14) # NWord: 1562 253 114 58 42 26 22 10 16 10 10 12 8 81 # # Length: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 # % Type: 0.7 3.9 14.4 25.0 29.0 17.1 7.4 1.9 0.4 0.1 0.0 0.0 0.0 0.0 # % Tok : 3.3 12.0 35.0 22.3 16.9 7.3 2.5 0.6 0.1 0.0 0.0 0.0 0.0 0.0 # Type length: mean 4.717 mode 5; token length: mean 3.732 mode 3 # # Word frequency and length histograms: selected words # # TypeCount 1055 TokenCount 3817 AvgTypeLen 4.16 AvgTokLen 3.44 # Number of words with given number of occurances: # NOcc : 1 2 3 4 5 6 7 8 9 10 11 12 13 (>=14) # NWord: 610 162 78 43 28 18 18 6 15 9 7 7 6 48 # # Length: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 # % Type: 1.2 6.8 20.5 32.8 26.1 10.2 2.0 0.4 0.0 0.0 0.0 0.0 0.0 0.0 # % Tok : 5.7 21.8 23.7 27.5 15.7 5.0 0.7 0.1 0.0 0.0 0.0 0.0 0.0 0.0 # Type length: mean 4.162 mode 4; token length: mean 3.438 mode 4 # # Zipf's Law fit to 25 most-frequent selected words: # ln(freq) = -0.569149 * ln(rank) + 5.050078 # Average residual -0.0000000 (SD 0.1139755), RMSE = 0.1139755 # # NTyp NTok H (bits) PctFreq1 Typ/Tok Words # 2224 7121 9.350571 70.233813 0.31232 all # 1055 3817 8.693055 57.819905 0.27640 in RE & not in XRE & ct >= MinCt # Selected = 47.4371 pct of types, 53.6020 pct of tokens kgram: 89 S9 2 Q9 ZO Z9 OE 4OPS9 OR QOE Rank: 1 2 3 4 5 6 7 8 9 10 Count: 113 102 94 88 83 52 49 47 45 44 AllFreq: 0.0159 0.0143 0.0132 0.0124 0.0117 0.0073 0.0069 0.0066 0.0063 0.0062 REFreq: 0.0296 0.0267 0.0246 0.0231 0.0217 0.0136 0.0128 0.0123 0.0118 0.0115 RECmFrq: 1.0000 0.9704 0.9437 0.9190 0.8960 0.8742 0.8606 0.8478 0.8355 0.8237 kgram: QOR OP9 9 SO 4OFS9 OF9 OPS9 SCOR 8AJ SO89 Rank: 11 12 13 14 15 16 17 18 19 20 Count: 43 41 40 37 34 31 30 29 29 28 AllFreq: 0.0060 0.0058 0.0056 0.0052 0.0048 0.0044 0.0042 0.0041 0.0041 0.0039 REFreq: 0.0113 0.0107 0.0105 0.0097 0.0089 0.0081 0.0079 0.0076 0.0076 0.0073 RECmFrq: 0.8122 0.8009 0.7901 0.7797 0.7700 0.7611 0.7529 0.7451 0.7375 0.7299 bash-3.1$ RE: Breaking Apr 1st news! MS 408 proves Blackadder actually existed! - kckluge - 01-04-2026 Well, y'all know what day it is, so it's time for the latest updates on the Blackadder solution... In an exciting crossover with another cipher mystery, I have established a link between the Blackadder solution and the mystery of the Somerton Man (You are not allowed to view links. Register or Login to view.) -- including a solution of the infamous Somerton Man code! While Michael Hastings (b. 1942) — false supposed Yorkish heir to the British throne according to the traitorous Tony Robinson (who played Baldrick in Blackadder and should therefore know better) — only emigrated to Australia in 1960 (“aged 18 to work as a jackaroo on ranches” according to You are not allowed to view links. Register or Login to view.), it is entirely possible that plans were made to send him to Australia earlier. As I pointed out in last year’s Apr. 1 update on the status of the “Blackadder solution”, rather than being crypto-Jacobites Scottish Freemasons were in fact the guardians of the slain Blackadder’s bloodline — the “widow’s son,” offspring of one of the bigamous precontracted marriages he made with the women represented by the crowned figures in the Cancer and Leo folios of the Voynich Manuscript — the Zodiac folios being Blackadder’s equivalent of Don Juan’s catalog of conquests. According to a post by Nick Pelling on his Cipher Mysteries blog (You are not allowed to view links. Register or Login to view.), there are signs that Somerton Man may have had Masonic ties and the Somerton Man cipher may reflect some Masonic groups’ practice of “acrostically encrypt(ing) their initiation ceremonies.” I now believe that Somerton Man was sent to Australia by the Freemasons in 1948 to recruit local members to guard the interests of the Blackadder line against supporters of the viper descended from “false, fleeting, perjured Clarence.” No doubt he was murdered by the opponents of the Blackadder line, the Knights Who Say “NI! (Nequam! Infamis! [Vile/Wicked! Of ill fame!])” Based on this hypothesis, I offer the following conjectural solution of the Somerton Man code, part of an induction ceremony for new members of the Priory of the Scion (the secret Masonic order dedicated to protecting the Blackadder bloodline): WRGOABABD Worshipful Master: “What rare gift offers a base acolyte?”, Blackadder demands! MLIAOI Candidate: My life in allegiance offer I. WTBIMPANETP Woshipful Master: When the Blackadder is made potentate all naysayers endure their punishment. MLIABOAIAQC Candidate: My life, indomitably accomplishing Blackadder’s orders and instructions, always quietly concealed. ITTMTSAMSTGAB Worshipful Master: In this truly mighty task some acolytes may stumble, their ghosts awfully banished. Note that whoever murdered the Somerton Man crossed out the line in the code corresponding to the line "My life in allegiance offer I" in the ceremony. Having realized that the Priory of the Scion was onto them, the Knights Who Say NI! and other supporters of the false Hastings Yorkish claim clearly decided to wait another dozen years for the coast to be clear before sending Michael Hastings to Australia. This will all be detailed further in my forthcoming book Holy Sh*t! Holy Grail?. But of course before I write that I have to finish work on the novel I mentioned last year, The (Duh!) Voynich Code. Those of you familiar with Dan Brown's ouvre may remember that there was some speculation that his book Inferno was going to involve our favorite manuscript based on a puzzle on his home page prior to the publication of the book that when solved read "MS408 Yale Library" (You are not allowed to view links. Register or Login to view.). That turned out to be a red herring, but when his latest book The Secret of Secrets came out and reviews indicated that it was set in Prague a reasonable person would surely have expected the Voynich Mss. to make an appearance -- but no! I can only assume that someone made Brown aware of the imminent (any year now!) appearance of The (Duh!) Voynich Code, and since game recognizes game he felt he couldn't do a superior fictional treatment of the Voynich Mss. In the meantime, to tide you over here is an excerpt containing the thrilling conclusion of The (Duh!) Voynich Code. Warning: if you've been living in a cave since 2003, the following contains a massive spoiler for The Da Vinci Code... NOTE: All artwork, literature, science, and historical references in this novel are real. Except for the ones that aren't. If the plot demands that a bathroom in the Bibliotheque Nationale has a window and bar soap when there is no window, no bar soap, and for that matter no bathroom at all in that particular location, then that is reality's problem, not mine. .... Bolton Gardner walked down Portobello Road, so distracted that he didn't notice the steady parade of women staring at him as he passed. Friends compared his good looks to Channing Tatum's -- and Channing Tatum in "ripped for an action movie" mode, not Channing Tatum in "rocking a dad bod between projects" mode. "'Follow in the footsteps of Zeno.' What can that mean?" he muttered. "But surely this is all over now," Eve Housenip* said. "Luke Klarg, expert on the Priory of the Scion, was exposed as the mastermind behind the murder of my great-uncle, and you have been cleared of suspicion." (* Eve is the grand-niece of the Bibliotheque Nationale librarian from the beginning of the novel who had been killed by one of the Knights Who Say NI! and arranged like the Zodiac Man on the floor of the library, but with shattered knees and severed ankles to represent the absence of Capricorn and Aquarius from the Voynich Mss. Zodiac pages) "No," Bolton replied. "No, we have to follow the clues to the end. '...the footsteps of Zeno' -- Zeno of Elea was famous for his paradoxes, the most famous of which is the following: Achilles is going to have a race against a tortoise, but being a good sport he gives the tortoise a 100 foot head start. So off they go. By the time Achilles has run 100 feet, the tortoise has run another 20. But by the time Achilles has run the additional 20 feet, the tortoise has run another 4. And so on, and so on -- so how can Achilles ever catch up? Is that the answer? That there is no catching up, that this is a pointless, endless chase?" Eve was only half listening, distracted by an antique map in the window of a store*. "Look at this funny map of the North Pole," she said. "And what is that big island 'Frisland' between Iceland and Greenland?" (* This map, although not this store: You are not allowed to view links. Register or Login to view.) Bolton stopped short. "Wait, what was that you just said...Frisland? Of course! That's it! Not Zeno of Elea, but the Zeno brothers!" "Who are they?" Eve asked. "Are they like the Property Brothers?" "I'll tell you once we're on our way to Scotland. We'll have plenty of time for an exposition dump on the train," he replied. They rushed to King's Cross Station, and after disentangling themselves from a gaggle of strange children (all of whom had owls for some reason) they bought tickets for the next train to Edinburgh's Waverley station. Once settled in, Bolton explained: "The Zeno brothers, Nicolo and Antonio, were 14th century Venetian noblemen. They became famous after a descendant, Nicolo Zeno the Younger, published a map and series of letters describing a voyage the brothers had made in the 1390's. In 1380 Nicolo had gone on a voyage from Venice to England. He found himself stranded on an island between England and Iceland called Frisland, where he was rescued by a prince named 'Zichmni.' Nicolo invited Antonio to come join him, and at Zichmni's direction the brothers attacked first the island of 'Estlanda' and then the island of 'Islanda.' Nicolo made a voyage to Greenland, then returned to Frisland, where a group of fishermen missing for 26 years had returned with tales of unknown lands named 'Estotiland' and 'Drogeo' in the far west. Zichmni set out with a fleet led by Antonio to search for those lands, and after various adventures they landed at the southern tip of 'Engrouelanda,' which Zichmni stayed to explore while Antonio returned to Frisland. "Now, in 1784 a companion of Captain Cook named John Forster made an argument for identifying 'Zichmni' with Henry Sinclair, 1st earl of the Orkneys, and since then claims have been made for Henry Sinclair having voyaged to the Americas -- in fact, in Halfway Cove in Guysborough County, Nova Scotia there is a historical marker commemorating Sinclair landing there in 1398*." (* You are not allowed to view links. Register or Login to view.) "But what does that have to do with Scotland?" Eve asked on behalf of the reader. "Henry Sinclair was the grandfather of Sir William Sinclair, who founded Rossyln Chapel in 1446. And one of the carvings in the arch above a window in the south aisle of Rosslyn Chapel depicts maize* -- a New World plant supposedly unknown in Scotland in the mid-15th century! Now remenber, Edmund Blackadder was the Duke of Edinburgh, and would undoubtedly have known about Rosslyn Chapel and Henry Sinclair's voyage to Nova Scotia -- which explains the sunflower in the Voynich Manuscript!" (* Actually, it's probably a stylized Arum Lily -- You are not allowed to view links. Register or Login to view.) [Further details of the trip to Rossyln are omitted here, as are the details of Eve's reunion with her long-lost brother and great-aunt. With mystery solved, and Eve safely in the hands of the Priory of the Scion (which it turns out was led by her great-uncle the librarian), Bolton leaves for home...] As Bolton walked away from the chapel he heard footsteps approaching rapidly from behind. Thinking it was Eve coming to stop him from leaving, he turned around, heart racing. "Oh no," Bolton thought. "Not him again..." "Dude!" Robert Langdon said with a silly grin on his face. "You'll never guess what I just found out! You see my new girlfriend over there? Well, it turns out that she's a direct descendant of--" "J**** Freaking C*****!" Bolton yelled. "What is this, like, the...fifth?...time we've run into each other in the last 24 hours? Are you stalking me or something?" "Geez...be that way. I was going to invite you to come work with me at Harvard, but never mind," Langdon said, walking off in a huff. Bolton found his way to the train station, then settled back in his seat for the lonely trip back to London. It would be a relief to get back to his office in the Department of Symbolologyism at the University of Northern South Dakota at De Smet and put the insanity of the last 24 hours behind him. As the train headed south he idly listened to a news story from the BBC: "Archaeologists excavating the planned location of a new Sainsbury's near Alnwick Castle have found what they describe as a medieval cesspit containing, quote, 'a truly spectacular amount of late 15th century British peasant excrement.' We spoke to the head of the dig, Oxford professor Cheswick Pickelbottom..." Interviewer: Tell me, what do you hope to learn from digging up all this, well, excrement? Prof. Pickelbottom: We expect this to provide us with a great deal of information about the diet and overall health of the local population. You'd be surprised what you can learn from excrement. Interviewer: And have you been taking part in the excavation personally? Prof. Pickelbottom: Oh, no, no, no...No, my graduate students are doing all the actual excavating. Interviewer: We spoke to your grad students. Several of them described you as a visionary with a real dedication to casting light on the details of the lives of ordinary people in 15th century England... Prof. Pickelelbottom: That's very flattering. Interviewer: ...the rest of them, however, described you as, quote, "a complete and total freak with a bizarre obsession with poop." Prof. Pickelbottom: Well, you know what they say -- sometimes two things can both be true. Interviewer: And what's the most interesting thing you've found so far? Prof. Pickelbottom: Actually, we've uncovered a bit of a mystery. We found the skeletal remains of a badly mutilated man dressed in the remains of very expensive clothing and an enormous codpiece. On the bones of one finger was a gold ring inset with an enamel serpent of some sort. At that Bolton jerked awake from the half-dozing state he had been in. He consulted the train schedule he had picked up in Edinburgh, got off at the next station... [...and made his way to the dig site.] It all made sense...a late 15th century cesspit -- and Edmund had been stripped of all his titles by his father other than Lord Warden of the Royal Privies*. The minions of Henry VII who disposed of the remains of Edmund had a cruel sense of humor. Having reached the edge of the excavation, Bolton asked for a moment of privacy. The bemused grad student escorting him humored him and left him to his thoughts. Once alone, Bolton closed his eyes in silent contemplation -- and then dropped to his knees to offer a prayer at the graveside of the last true Plantagenet king of England. (* You are not allowed to view links. Register or Login to view.) Until next April 1st... So now, the wage of sin is paid. The blade is stuck, the black steed grazes. The only sound across the glade, is Edmund pushing up the daisies. Black Adder. Black Adder. A shame about the plan. Black Adder. Black Adder. Farewell, you horrid man. RE: Breaking Apr 1st news! MS 408 proves Blackadder actually existed! - hatoncat - 02-04-2026 (01-04-2022, 07:43 PM)kckluge Wrote: You are not allowed to view links. Register or Login to view.Though at first glance I seem mild snake, This reminded me a bit of Percy Bysshe Shelley and Horace Smith's Voynich competition: "In Egypt's sandy silence, all alone, Stands a gigantic Leg, which far off throws The only shadow that the Desert knows:— "I am great VOYNICH," saith the stone, "The King of Kings; this mighty City shows The wonders of my hand."— The City's gone,— Naught but the Leg remaining to disclose The site of this forgotten Babylon. We wonder — and some Hunter may express Wonder like ours, when thro' the wilderness Where London stood, holding the Wolf in chace, He meets some fragment huge, and stops to guess What powerful but unrecorded race Once dwelt in that annihilated place. — Horace Smith, "Voynich" I met a traveller from an antique land Who said: Two vast and trunkless legs of stone Stand in the desart.[d] Near them, on the sand, Half sunk, a shattered visage lies, whose frown, And wrinkled lip, and sneer of cold command, Tell that its sculptor well those passions read Which yet survive, stamped on these lifeless things, The hand that mocked them and the heart that fed: And on the pedestal these words appear: "My name is Voynich, King of Kings: Look on my works, ye Mighty, and despair!" Nothing beside remains. Round the decay Of that colossal wreck, boundless and bare The lone and level sands stretch far away. — Percy Shelley, "Voynich", 1819 edition[16] |