github热门项目
这也是个一篇长期建设的文章, 会不定期收录 github 热搜里自己感兴趣的项目.
nodejs
alibaba/lowcode-engine: 面向扩展设计的企业级低代码技术体系.
angular/angular: 现代 web 开发平台.
python
jackfrued/Python-100-Days: 100 天学习 python.
haoheliu/AudioLDM: 文本转音频工具, 甚至可以生成音乐.
金融
btcpayserver/btcpayserver: BTCPay Server is a free, open-source & self-hosted bitcoin payment gateway that allows self-sovereign individuals and businesses to accept bitcoin payments online or in person without any fees.
AI
d2l-ai/d2l-zh: 动手学深度学习, 对应独立站点.
chatGPT
TheR1D/shell_gpt: 在终端使用的 chatGPT 工具.
绘画
lllyasviel/ControlNet: ControlNet is a neural network structure to control diffusion models by adding extra conditions.
AUTOMATIC1111/stable-diffusion-webui: 基于 Gradio 的 Stable Diffusion web 框架.
计算机工具使用经验总结
gitgit status显示中文为Unicode编码, 但git bash环境中文显示正常的解决方案如下.123456789101112$ git statusOn branch basictopoUntracked files: (use "git add <file>..." to include in what will be committed) "todo/[\345\260\244\346\211\277\344\270\232]\345\237\272\347\241\200\346\213\223\346\211\221\345\255\246\350\256\262\344\271\211_LT(2).pdf"# 配置git的全局环境$ git config --global core.quotepath false$ git statusOn branch basictopoUntracked files: (use "git add <file>..." to include in what will be committed) todo/[尤承业]基础拓扑学讲义_LT(2).pdf
latex在 texstudio 中使用一些自定义主题或包的时候, 一般自定义的内容复杂起来就会有比较多的 .sty 文件和源文件在一个目录中. 为了能在 texstudio 中创建模板, 在没有这些 .sty 文件的时候是不需要做任何额外的操作的. 但是一旦依赖有其他自定义的 .sty 文件, 虽然创建模板的时候不会出问题, 但是当使用这个新创建的模板时, 由于新建的文档目录中找不到 .sty 文件而报错. 当然可以通过把所需的所有 .sty 都拷贝到新建文档目录中来解决问题, 但这就丧失了从模板创建新文档的便捷. 所以找来了以下的解决方案.
首先打开系统终端 powershell, 输入
12$ kpsewhich -var-value=TEXMFHOMEC:/Users/math/texmf
它会返回一个 latex 编译器查找 .sty 文件的一个默认家目录, 如果系统没有这个目录则创建它. 然后在创建模板时, 把需要的 .sty 文件全部 ...