🥳 Welcome !

“要多想”

2023年终总结

2023 结束了, 简单记录一下。 🎓 研究生毕业: 度过了有惊无险的毕业季,从写论文、预答辩,到最终答辩,最后参加毕业典礼。离开了熟悉的校园,离开了熟悉的...

十二月 31, 2023 · 2 分钟 · 772 字 · Ruotian

九寨沟之行

五一和超超去了九寨沟玩,风景非常好。 Figure 1 Figure 2 Figure 3

五月 1, 2023 · 1 分钟 · 24 字 · Ruotian

2022年终总结

2022有点累,不想总结了。2023打算躺了。

十二月 31, 2022 · 1 分钟 · 23 字 · Ruotian

Elden Ring

玩了一会,有点难。 Elden Ring 打过了第一个 Boss。 恶兆妖鬼玛尔基特

十二月 18, 2022 · 1 分钟 · 30 字 · Ruotian

谷歌实习初体验

很棒!

七月 24, 2022 · 1 分钟 · 3 字 · Ruotian

绕过清华校园网的二层隔离

写了个脚本绕过校园网二层隔离,自动化这个教程里面提到的加路由的方法。 依赖 ipcalc 计算子网地址。apt install ipcalc。 #!/bin/bash IPA=$(ip address list dev eth0 | awk ' /inet/ {print $2}' | head -1)...

五月 16, 2022 · 1 分钟 · 143 字 · Ruotian

PyScript 尝试

- numpy - matplotlib PyScript让你可以在 html 里写 Python ,感觉很有趣。 比如下面这个图(大概要等5分钟😂): <div id="plot"></div> <py-script output="plot"> import matplotlib.pyplot as plt import numpy as np x = np.random.randn(1000) y = np.random.randn(1000) fig, ax = plt.subplots() ax.scatter(x, y)...

五月 11, 2022 · 1 分钟 · 143 字 · Ruotian

Python 协程 (async/await)

用Telegram 机器人库 Telethon的时候发现他家的 API 接口走的都是 async。 这就来学一下 Python 的 async 和 await (官方文档),需要 Python 版本3.7以上...

五月 10, 2022 · 2 分钟 · 534 字 · Ruotian