WARNING:
If you’ve been following the Descent of the Durtle Madness thread,
you may be aware that a spoiler was uncovered OUT OF ORDER…
meaning that a step in the puzzle may be able to be skipped.
THIS THREAD CONTAINS SPOILERS
If you want to continue solving the pieces in order, DO NOT READ THIS THREAD.
@matthieuesnault did some brute-force searching of Tofugu articles, and ended up uncovering some clues.
His initial post is [here].
To see it, you need to click on the Edit History button.
So rfindley, curious what your thinking on your 3/4 words is. Is it extracting from the several articles in question, or all from the number sequences in the last one?
These are the codes which were added to the page, and the books to which they refer:
Genki Workbook
9784789014410 89 41 3 12 31
Genki
9784789014403 209 1 24 29 41 50 84
Minna no Nihongo
4883196038 36 2 10 45 130 4 55
Japanese for Busy People
1568363850 23 33 2 5 10 34 19
Japanese for Everyone
4889962344 50 4 33 8 13 434 4
Japanese: The Spoken Language
9780300038347 168 19 1 6 5 5 5 10 9
Adventures in Japanese
0887275494 33 98 2 55 34 9 10
Japanese from Zero!
9780976998129 39 4 3 45 134 2 66
Japanese the Manga Way
1880656906 43 99 3 24 55 16 9
A Dictionary of Basic Japanese Grammar
4789004546 181 8 49 3 20 2 33
The first number in each set is an ISBN referring to a specific edition of each book. The remaining numbers are most likely a book cipher - according to my understanding, the second number is a page number, the third a line number, and each number after that is a specific word, from which we’re supposed to take the first letter.
Sooo…
I was away for some time, congratulations for discovering the first step @Masayoshiro
I wanted to know if any other articles were related to the riddle, so I originally started searching manually in the source code for comments for each article. After 5 articles, seeing that there are 20 pages of articles in the archives of Tofugu, I decided to automate it.
I’m divided about this, because I actually found something… It might look like cheating, because we haven’t solved the second step of B3 yet to get to the third step. But in the meantime, anybody with enough spare time could have done that without a script.
Script
import urllib.request
from bs4 import BeautifulSoup
from bs4 import Comment
def get_articles_urls(archive_page_number):
urls = []
if archive_page_number == 1:
archive_page_suffix = ''
else:
archive_page_suffix = 'page/' + str(archive_page_number)
archive_page_url = 'https://www.tofugu.com/archive/' + archive_page_suffix
with urllib.request.urlopen(archive_page_url) as response:
html = response.read()
soup = BeautifulSoup(html, 'html.parser')
article_tags = soup.select('li.article-index-item > a')
for article_tag in article_tags:
urls.append(article_tag.get('href'))
return urls
def get_comments_of_article(article_url):
with urllib.request.urlopen(article_url) as response:
html = response.read()
soup = BeautifulSoup(html, 'html.parser')
return soup.find_all(string=is_body_comment)
def is_body_comment(text):
# There must be a better way to get comments of the body tag
return isinstance(text, Comment) and any(parent.name == 'body' for parent in text.parents)
for page_number in range(1, 21):
print("Archive page " + str(page_number))
article_urls = get_articles_urls(page_number)
for article_url in article_urls:
absolute_article_url = 'https://www.tofugu.com' + article_url
print(" Article " + absolute_article_url)
comments = get_comments_of_article(absolute_article_url)
print(" " + str(comments))
The raw results are pretty long, so I stripped them to only contain articles which have comments in their body tag. And surprisingly, it’s only four articles:
I skimmed through the articles but it’s getting late here so I need tosleep.
Here are my notes so far:
The comments of the beginner-japanese-textbook article are justISBN 10 codes for the books. That must be legitimate commentswith no link to the riddle.
The comment of the dictionary-of-basic-japanese-grammar articlemight be the result of following a red herring,hence the “Nice try!”
The comment of the genki-textbook article make it seem like areal step,but I did not see anything looking like a clue in thearticle.
I don’t know what to do with the articles yet and we might not knowbefore solving the step 2 of B3,but they can maybe give us somehindsight on what we’re looking for.
Of those books, I only own the Dictionary of Basic Japanese Grammar. (I’ve also got Japanese for Busy People, but it appears to be a different edition - 2006 instead of 2011).
Trouble is, page 181 doesn’t lend itself towards a book cipher terribly well - it’s a gap between two entries, so there aren’t many lines on the page.
The first three keywords (not necessarily in order)
As @Belthazar mentioned, there are a bunch of ISBN numbers and other numbers.
The other numbers are a page number and a list of character numbers.
I’ve decoded words in the following three books:
Genki 1
Genki 1 Workbook
A Dictionary of Basic Japanese Grammar.
The three keywords are:
Turtle
eating
unko (<–Japanese for poop)
Here’s the example for unko (assuming I did it right. The other 2 keywords were easier)
Clue:
<!-- 9784789014410 89 41 3 12 31 -->
9784789014410 is the ISBN number for the Genki 1 Workbook (2nd edition)
Page 89 has the following text. I've removed all spaces and punctuation:
1 2 3 4 5 6 7 8
1234567890123456789012345678901234567890123456789012345678901234567890123456789012345
KenandMichikoaretalkingListentothedialogueandanswerthequestionsinJapanese
Choosing the 41st, 3rd, 12th, and 31st letters gives you:
unko
Also, for the record, I don’t think that brute force search was cheating at all. In fact I suggested the search for Durt Durt after Safarigirl found the comment in the first page. (But I didn’t have the skill to do it. )
Aww, page and character numbers, didn’t think of that…
Unfortunately, I’m fairly sure my Japanese for Busy People is too different - page 23 is numbers and times written in Japanese - the page starts with “II. Numbers:” and then it’s just numerals and kana.
Oooh hoo, hello friends! Anything that brings the Durthlic Church deeper into Durtle Heaven brings pleasure to the Durtle Pope––no matter how durtverted the methods! Your progress pleases us to no end.
Hmm. I vaguely wondered if these specific pages were chosen because they’re included in the Amazon sample pages, except the Amazon sample pages for Japanese for Busy People are for the 2006 edition, not the 2011 edition…
Are there any books we don’t have? Unfortunately the only one I have, you’ve already solved, so I have to wait and see what the words are and help figure out what they mean.