A simple blog built by Django
python sqlalchemy 库 教程
| Published by rcdfrd # 连接数据库
from sqlalchemy import create_engine
engine = create_engine('sqlite:///test.db?check_same_thread=False', echo=True)
# echo参数是设置SQLAlchemy日志显示的快捷方式 如果我们不想看见执行的详细过程,可以将echo设置为False
# create_eng
Read more ⟶
开源软件收集
| Published by rcdfrd rathole
rathole,类似于 frp 和 ngrok,可以让 NAT 后的设备上的服务通过具有公网 IP 的服务器暴露在公网上。
使用方法参考 https://github.com/rapiz1/rathole/blob/main/README-zh.md
hustoj
开源的 OJ 系统,跨平台、易安装、有题库。
https://github.com/zhblue/hustoj
Onl
Read more ⟶
代码片段
| Published by rcdfrd 代码片段
常用宏定义
#define f(x, y, z) for (int x = (y), __ = (z); x < __; ++x)
f(i, 0, a.size()) { ... }
#define print(x, y) cout << "line:" << __LINE__ << "\t" << x << " = " << y << endl
print('x', x);
#defi
Read more ⟶