地狱空荡荡,魔鬼在人间。

Not a soul
But felt a fever of the mad, and play’d
Some tricks of desperation. All but mariners
Plunged in the foaming brine and quit the vessel,
Then all afire with me: the King’s son, Ferdinand,
With hair up-staring—then like reeds, not hair—
Was the first man that leapt; cried “Hell is empty,
And all the devils are here.”

安倍晋三

范海福院士(1933–2022)有一个学生当选中科院院士

但搜不到具体的信息。我大胆猜测,这位学生是陈小明,果然介绍里写了。

陈小明院士喜欢骑自行车我也喜欢骑自行车

范院士的夫人是李方华院士,是电子显微学专家,2020年去世了。

CPU供电又又烧了

As of 2022-07-12.

距离上一次又不到两年。

17万UV达成

As of 2022-07-13.

Actually fix the long lines display bug

萨摩示现流

另,薙(tì)刀。

Linux kernel 5.18 + nvidia driver = bug

https://wiki.archlinux.org/title/NVIDIA#Installation

FS#74886

FS#74891

PSA = Public Service Announcement

即「广而告之」。

Emacs bug

byte-code: Symbol’s function definition is void: compat–inhibit-prefixed

(byte-recompile-directory package-user-dir nil 'force)

or

(byte-recompile-directory user-emacs-directory nil 'force)

来源:

https://www.reddit.com/r/emacs/comments/w2zw6x/compatinhibitprefixed_error_in_orgroam/

CPU供电又又又烧了

As of 2022-07-26.

距离上一次才两周。

我已经未卜先知买了新笔记本咯。

28万PV达成

As of 2022-07-30.

致态TiPlus5000 2TB

致态Tiplus5000 2TB扫描结果

有趣,和海力士的NVMe固态差不多,都有很多不是优秀和良好的块,看来不怪硬盘盒。

最大的问题是,在我的Dell G15 5520上间歇掉盘。目前掉盘次数:6。平均两三天就掉一次。很多人也遇到类似问题:

https://cn.bing.com/search?q=tiplus+5000+"掉盘"

破案了,尝试在BIOS里把NVMe模式从模拟RAID改为原来的AHCI,掉盘现象不再发生,扫描结果也正常了。需要注意RAID改AHCI需要用安全模式启动电脑,具体操作见这里

这里模拟RAID有两个用处,一个是用Intel的快速存储技术(RST),这套东西Intel自己都玩不好;再一个就是可以组RAID。问题是,你就给我一个m.2插槽,我怎么组RAID?!

浦科特M5Pro 128G

浦科特M5Pro 128G扫描结果

看看,10年前的浦科特固态都是优秀和良好的块。

Emacs在Windows 11 + WSLg下不能复制(M-w)

https://github.com/microsoft/wslg/issues/15

1
2
3
4
5
6
7
8
9
10
(when (and (getenv "WAYLAND_DISPLAY") (not (equal (getenv "GDK_BACKEND") "x11")))
(setq
interprogram-cut-function
(lambda (text)
;; strangest thing: gui-select-text leads to gui-set-selection 'CLIPBOARD
;; text -- if I eval that with some string, it mostly lands on the wayland
;; clipboard, but not when it's invoked from this context.
;; (gui-set-selection 'CLIPBOARD text)
;; without the charset=utf-8 in type, emacs / wl-copy will crash when you paste emojis into a windows app
(start-process "wl-copy" nil "wl-copy" "--trim-newline" "--type" "text/plain;charset=utf-8" text))))

但是剪切(C-k和C-w)和整行复制是可以的。

如何判断Emacs运行在Windows + WSL环境下

1
2
3
4
(when (and (eq system-type 'gnu/linux)
(getenv "WSLENV"))
;; your code goes here
)

我当时写的是

1
2
3
4
(when (and (string-equal system-type "gnu/linux")
(file-exists-p "/mnt/wslg/versions.txt"))
;; your code goes here
)

用的是判断文件的方法,理论上只适用于WSLg。

WSLg会给Emacs传递「卡住」按键的Bug

最新版已经修复了,需要升级到测试版。

Windows 11能直接打开ZIP文件,但性能非常差