“要多想”
2023年终总结
2023 结束了, 简单记录一下。 🎓 研究生毕业: 度过了有惊无险的毕业季,从写论文、预答辩,到最终答辩,最后参加毕业典礼。离开了熟悉的校园,离开了熟悉的...
九寨沟之行
五一和超超去了九寨沟玩,风景非常好。 Figure 1 Figure 2 Figure 3
2022年终总结
2022有点累,不想总结了。2023打算躺了。
Elden Ring
玩了一会,有点难。 Elden Ring 打过了第一个 Boss。 恶兆妖鬼玛尔基特
谷歌实习初体验
很棒!
绕过清华校园网的二层隔离
写了个脚本绕过校园网二层隔离,自动化这个教程里面提到的加路由的方法。 依赖 ipcalc 计算子网地址。apt install ipcalc。 #!/bin/bash IPA=$(ip address list dev eth0 | awk ' /inet/ {print $2}' | head -1)...
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)...
Python 协程 (async/await)
用Telegram 机器人库 Telethon的时候发现他家的 API 接口走的都是 async。 这就来学一下 Python 的 async 和 await (官方文档),需要 Python 版本3.7以上...