Method on Buddhist's Diamond

I don't why translating this to English feels harder than translating to Japanese. Here I am and I updated this article with some new revelations unknown when I wrote the Chinese version, and got rid of some false conclusions.   Introduction BD consists of 33 familiars that fires lasers, random star bullets, and a series of aimed arrow heads from Kaguya. The interval of which the lasers are fired is actually not constant, the first two lasers are 200 frames apart, the later ones are 180 frames apart. The first aimed bullets is spawned 128 frames after the first laser, and is fired every 144 frames afterwards. The arrow heads fly very slowly, and the next wave is spawned before the previous wave leaves the screen. Similarly for lasers, the next wave start to appear before the previous wave fades off. We can model the laser, starting from the second wave by: \(\sin\left(\frac{\pi}{180}\left(x-200\right)\right)=0\left\{x>199\right\}\) aimed arrow heads: \(\sin\left(\frac{\pi...

Manjaro i3 nfs shutdown timeout

A bug found in Arch Linux (and also in Manjaro) is that nfs seems to timeout the shutdown process. (initially I thought it was autofs, then I switched to fstab but the problem presists).

After some digging (people on the Arch forum seems to be not aware of this fix), I found a solution here
Yes it is a really old bug.

while dbus won't fix this, simply
append these lines in /lib/systemd/system/dbus.service, to the [Service] section:

ExecStop=/bin/true
KillMode=none

Comments