五四

下载适用于Windows 7的Windbg

https://www.microsoft.com/en-us/download/confirmation.aspx?id=8279

安装的时候只选调试工具。

王康先生

「解决了许多长期想解决而没有解决的难题」

过去5年,全世界的GNU Emacs用户都受一个Bug困扰:calculator无法输入负指数。

今天我总算忍不住了,调试了一下,发现了问题的根源,提了报告。经过讨论,问题得到了修复。

https://lists.gnu.org/archive/html/bug-gnu-emacs/2020-05/msg01023.html

修复的代码里用了rx,我感觉会慢,测试发现并不会,反而可能比直接写出或其他写法快。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
(benchmark-run-compiled 500000 (replace-regexp-in-string (rx "." (any "eE")) "e" "1.e-5"))
(1.075216592 0 0.0)

(1.146984058 0 0.0)

(1.0870669339999999 0 0.0)

(0.993450289 0 0.0)

(benchmark-run-compiled 500000 (replace-regexp-in-string "\\.[Ee]" "e" "1.e-5"))
(1.0350246300000001 0 0.0)


(0.902013844 0 0.0)

(0.9897001430000001 0 0.0)

(1.147213674 0 0.0)

(benchmark-run-compiled 500000 (replace-regexp-in-string `,(rx "." (any "eE")) "e" "1.e-5"))
(1.123461048 0 0.0)

(1.0231954230000002 0 0.0)

(1.1292944980000001 0 0.0)

(1.112048543 0 0.0)

Fake Location

好。

玩SDF的大神们

Project Gemini