My poor supper turned out to be a fried steamed bun (mantou) and a cup of yoghourt, because the food in the dining hall was tooooo disgusting.
Dear RUC, do you let live or not let live?! (hai rang bu rang ren huo a?)
Today I suddenly found that the plum blossom was quite similar to Brownian motion @___@!!! Just take a look at this graph (it is in fact a trace for the Brownian motion on the 2-D plane):

Below is the source R code (slightly modified):
op = par(mar = c(0.5, 0.5, 3, 0.5))
n = 1000
x = apply(d <- matrix(rnorm(2 * n), ncol = 2), 2,
cumsum)
cl = terrain.colors(n)[rank(apply(d, 1, mean))]
plot(x, type = "n", ann = F, axes = F)
title("PLUM BLOSSOM")
mtext("--Made in R by Yihui", side = 3, adj = 1)
box()
for (i in 2:n) {
points(x[i, 1], x[i, 2], col = cl[i])
lines(c(x[i - 1, 1], x[i, 1]), c(x[i - 1, 2], x[i, 2]), col = cl[i])
Sys.sleep(0.01)
}
par(op)
赞赏
作为一名没有固定工作的自由职业者,我非常感谢您通过捐赠的方式来支持我的写作和开源软件开发。当然,捐赠纯属自愿。无论金额多少,都是一片诚挚的心意。支付方式如下:
| 微信 | ← 奋力支开它俩 → | 支付宝 |
|---|---|---|
![]() |
其它爱心通道 ↓ Venmo: @yihui_xie Zelle: xie@yihui.name PayPal: xie@yihui.name |
![]() |
若使用 Venmo/Zelle/Paypal,请添加备注“gift”或“donation”,以免捐赠被视为我的可税收入。若使用 Paypal,支付类型请选 Family and Friends,而不要选 Goods and Services。
在不影响生活的前提下,我会将收到的捐赠以尽量大的比例回馈给开源社区和慈善机构。作为参考,2024-25 年间我共收到约三万美元捐赠,完税后我转手捐出了一万五千美元。

