首次剧本杀体验 一月三十一号,星期六;南村万博,天河城。 首次剧本杀就是这本 “焰火下的杀人犯” 了。主题为日式、剧情、还原。总体来说难度不高,且反派为NPC,不会有玩家之间的强对抗,这一点还是不错的。 推理部分在我看来可能所谓的“强行感”有点高,如果不是还原之后进行回看,很多伏笔和推理链条难以在一开始就推出。 5到6个小时的时间对于我个人来说感觉刚好;此外,可以在店内点外卖这一点还是不错的。只能说唯一的难点就是凑齐6个熟人。 这个所有人都埋在同一地点的设定也有点过于偏门,感觉很难推定。 动漫星城 二月一日,星期日;公园前。 和老朋友欧阳文博去了动漫星城,这也是我人生中第二次逛动漫星城。 28元的孤独摇滚摔跤扭蛋(我自己起的名字),这个扭蛋我在合肥的百盛广场也看到过,但不知为何,百盛广场的价格相比动漫星城略贵,没记错好像是35一颗。 既然连旁边的 miku 扭蛋也拍到了,那就顺便加一张图吧! 左边白色为人工窗口售卖,右侧绿色卡片为自动售卖机出售的卡片。 我已急哭 不是哥们,这对吗? Dark mode at the end? 不懂就问,是什么神人会想要把 DarkMode 的按钮放到文章末尾的… 意思是我要读完所有内容之后才应该知道这个网站支持 DarkMode 吗? Failed attempt to modding a cracked DSP 2026/2/4. Tried modding my crack version of Dyson Sphere Program, failed. The cracked version could not start from DSPGAME.exe,Continue reading “「日记」2026年1、2月”
Author Archives: Oyasumi
Disable Jetpack Image Optimization
When using WordPress with Jetpack plugin, the image in the post will be automatically optimized to use Jetpack CDN: And such image hosted on CDN could have lower quality compared to the original image you provided. To avoid this, we could go to the Jetpack settings to disable image optimation: After this, the image shouldContinue reading “Disable Jetpack Image Optimization”
Check Actual Memory Usage on Windows 11
Sometimes, the total memory usage show up in the “Memory” tab is not the same with the sum-up value in “Processes” tab. Concretely: This post provided an approach to check the actual memory usage of running processes and thus to locate a memory leak of a certain program. Which Process Used the Memory We couldContinue reading “Check Actual Memory Usage on Windows 11”
Create Shared-Permission Directory Using ACL
Senarios Let’s say we have a directory animes, with several sub directories, one of which is animes/Dandadan. And now: In this scenario, we could use ACL (getfacl and setfacl) to achieve such permission management. Check ACL Status First let’s go to animes directory: -a/–access means only showing the access setting, without default::*, we will useContinue reading “Create Shared-Permission Directory Using ACL”
Clash Load Balancing to Bypass Speed Limit
Note: Author is using: As the image shows, some proxy providers will provide some nodes specifically dedicated to downloading task, with lower ratio but lower rate limit (10Mbps in image above). This post demonstrates how to use Load Balance proxy group feature in clash core to download files using several such “download nodes”, effectively bypassingContinue reading “Clash Load Balancing to Bypass Speed Limit”
Git LFS
Enable LFS Install & Track First of all, install lfs for git using following command: Then add track of large files using lfs: Note that the command above will also update .gitattributes file automatically. Migrate Steps above will only handle future large files. To migrate large file to LFS storage for previous commits, we couldContinue reading “Git LFS”
About GPG
For GPG basic concepts, check out this blog post on Median, which well explained what GPG is and the basic practice is about it. Sign Content Here we use Kleopatra on Windows to demonstrate how to sign content using its Notepad feature. As shown above: Sign Commit Using Git Set Up GPG Sign for GitContinue reading “About GPG”
A Simple Image Hosting Solution Using FTP
Previously trying to use NextCloud and webdav as the way to upload and manage images, but it turns out that deal with share links of those images in NextCloud is not a easy thing to do, so I started to think another way. I found this project on GitHub called PicGo, which allows user toContinue reading “A Simple Image Hosting Solution Using FTP”
Gitea – Self-Hosted Git & CI/CD Tools
This article is about my deployment experience of Gitea, a self-hosted GitHub like code hosting service which also support CI/CD pipeline workflows like GitHub Action. Why I Need It Recently, I was searching for a way to host Obsidian vault on the Internet. There is an official way to achieve this using Obsidian Publish, however,Continue reading “Gitea – Self-Hosted Git & CI/CD Tools”
Simple Callback Function In C++
This article will discuss the basic practice of using callback functions in C++ Function Type To use function type as parameter, it’s recommended to use functional library to define function type: In the code snippet above: Use With Lambda It’s recommended to use Function Type with Lambda Expression: For more info about the C++ LambdaContinue reading “Simple Callback Function In C++”