studies icon indicating copy to clipboard operation
studies copied to clipboard

Notes of Develop/NLP/DeepLearning/Algorithms/LeetCodes

Results 6 studies issues
Sort by recently updated
recently updated
newest added

> [【提升Python技能】 模块与元编程 (五) Namespace Packages_哔哩哔哩_bilibili](https://www.bilibili.com/video/BV1d14y1L7ui/?spm_id_from=333.851.dynamic.content.click&vd_source=ba096786da8fb76742390c0bcea38a01)

documentation

example: - for algorithm: ![total](https://img.shields.io/badge/total-201-green) - for note: ![last commit](https://img.shields.io/static/v1?label=last%20commit&message=2022-10-01&color=green)

基于本项目构建一个博客模板,使用者只需要创建笔记,然后配合 Github Action 进行自动更新

enhancement

### 旧做法 - 利用 `git subtree` 将 src 抽取为子仓库,然后同步; - 优点:便于快速迭代; - 缺点:迁移困难(服务器,Spark 等场景) ### 新做法 - 将 src 打包为标准的 python package,利用 pip 安装; - 优点:标准化,迁移方便; - 缺点:1)不能快速同步;2)更新流程复杂(可以利用 GitHub Actions...

enhancement