01 2024 档案
摘要:concept https://www.cicd.sh/2022/05/01/using-gitflow-in-cicd/ https://juejin.cn/post/6978300325086101518?share_token=9FB3D1CD-6482-4B45-A02F-A374967CD
阅读全文
摘要:no new changes https://gerrit-documentation.storage.googleapis.com/Documentation/2.16.4/error-no-new-changes.html With this error message Gerrit rejec
阅读全文
摘要:Special and magic references https://vlab.noaa.gov/code-review/Documentation/access-control.html#references The reference namespaces used in git are g
阅读全文
摘要:P1886 滑动窗口 /【模板】单调队列 https://www.luogu.com.cn/problem/P1886 思路 https://zhuanlan.zhihu.com/p/346354943 Code https://www.luogu.com.cn/record/143623041 L
阅读全文
摘要:D - Pyramid https://atcoder.jp/contests/abc336/tasks/abc336_d 思路 https://blog.csdn.net/m0_63925226/article/details/135594715 https://www.cnblogs.com/z
阅读全文
摘要:python client https://docs.influxdata.com/influxdb/v2/api-guide/tutorials/python/#authenticate-with-an-influxdb-api-token Follow this step-by-step tut
阅读全文
摘要:sklearn.preprocessing + keras sklearn 的数据预处理 可以对业务数据进行规范化, 和规范化后的数据还原, 经常跟其他的模型配合使用。 例如如下情况: https://github.com/influxdata/influxdb-client-python/blob
阅读全文
摘要:ubuntu系统上安装不同python版本 https://www.bandwagonhost.net/7309.html 比如安装 Python 3.7: sudo apt install python3.7 或者安装 Python 3.6: sudo apt install python3.6
阅读全文
摘要:E - Christmas Color Grid 1 https://atcoder.jp/contests/abc334/tasks/abc334_e 思路 https://www.cnblogs.com/Lanly/p/17923753.html Code https://atcoder.jp/
阅读全文
摘要:C - Loong Tracking 题目传送门 https://atcoder.jp/contests/abc335/tasks/abc335_c 思路 贪吃蛇,头部不断更新, 原来的头部会变成颈部,颈部变成胸膛,..., 原来的尾部删除。 采用双端队列, 头部 根据 头部做更新 尾部删除。 Co
阅读全文
摘要:FastAPI + Celery https://derlin.github.io/introduction-to-fastapi-and-celery/03-celery/ What is Celery¶ From their documentation: Task queues are used
阅读全文