Security
相关技术
JWT: Json web token
- OAuth
术语
- 认证 authentication
- 授权 authorization
令牌 token
认证 Vs 授权
Design Patterns设计模式
教程
设计模式
哔哩哔哩
- 系列视频 GeekBand:C++ 设计模式 - bilibili.com
书
《设计模式 – 可复用 面向对象 软件的基础》
- GOF(gang of four) 23 种经典面向对象设计模式
- 94 年出版
博客
Bigdata
工具收集
pandas + numpy 等
blaze 工具集
ipywidgets
参考
组件 components
ipywidgets 包
- 与 ipython kernel 的交互接口
- 一个 extension 扩展(插件)
Sql
教程
python sql
- SQLAlchemy
- databases: GitHub - encode/databases: Async database support for Python.
- orm: GitHub - encode/orm: An async ORM.
基础命令
mysql
| command | meaning | comment |
|---|---|---|
| show databases; | list all databases | 不要省略复数形式 |
| show tables | ||
| show tables like "%b" | table eg: db, runoob | "%old%" |
| use databaseName | use runoob | |
| select version() | now(), user() | |
| describe mysql.user | list detail information | 每个字段的详情 |
| about table (user) in | ||
| database (mysql) |