Akyuu's 30th Birthday Special — Blog Embedded Audio Test
If Heaven has feelings, Heaven too grows old; I'll grant Akyuu one more second of life.
SagumeKishin https://thbwiki.cc/Akyuu_Hieda
Various online creative adaptations:
First, this is a secondary creation: https://thbwiki.cc/稗田阿求/二次设定#稗田阿求30岁诞辰
2048 version: https://akyuu.touhou.moe/
"Laoda" and "One More Second" version: https://akyuu.rip/
Bilibili: https://www.bilibili.com/video/av112915076088666/
Then I played around with 2048
I first reached 2048:

Then I realized there was no "You win" prompt, so I continued playing and reached 4096:

Still no prompt, so I got bored and decided to check the source code, where I found this:
view-source:https://akyuu.touhou.moe/akyuu.js
HTMLActuator.prototype.tileHTML = [
"九代降临", // 1
"编撰缘起", // 2
"游历访问", // 4
"记忆审查", // 8
"成书公开", // 16
"三方会谈", // 32
"瓜田李下", // 64
"拳击高手", // 128
"力能扛鼎", // 256
"祭石长姬", // 512
"克里斯Q", // 1024
"幻想书记", // 2048
"怪谈祭典", // 4096
"狸猫著书", // 8192
"今昔幻想", // 16384
"阿礼转生", // 32768
"稗田阿十", // 65536
"地狱深渊", // 131072
];
Wow, this version of 2048 starts from 1. Theoretically, it's impossible to reach "地狱深渊" (Hell Abyss).
BTW, most popular online implementations of 2048 have a common flaw: if you duplicate the tab and continue playing in the new tab, and if you game over, you can still continue playing in the original tab. This greatly reduces the cost of aiming for a high score. This version is no exception.
Of course, I reached 4096 in one go.
Modifying Publication Time and Modification Time
To show respect for Akyuu and the elders, I have decided to modify both the publication time and modification time of this blog post.
As is well known, the publication time of a blog post can be modified by simply changing the date
line in the markdown file.
However, modifying the modification time is a bit more complicated, though not particularly difficult.
First, locate the db.json
file in the Hexo root directory. However, this file is 20MB in size, which is quite large, so we can directly use the sed
command:
sed -i 's/2024-08-20T[0-9]\{2\}:[0-9]\{2\}:[0-9]\{2\}\.[0-9]\{3\}Z/2024-08-16T16:00:00.000Z/g' db.json
Finally, modify the modification time of this file:
touch -t 202408170000 akyuup1s.md
Then, you can proceed with deployment:
hexo g -d