摘要: Python 实现定时任务有以下几种思路 使用子进程(现成)+ time.sleep 间隔执行 使用现有的库管理定时任务如,celery, tornado等 使用系统的机制执行linux 下面 crontab ,windows 下面taskschd.msc 本次调查 celery 这个常用的异步任务 阅读全文
posted @ 2024-12-25 19:31 svolcano 阅读(119) 评论(0) 推荐(0)
摘要: chrome 浏览器 1. 地址栏输入 chrome://settings/searchEngines 2. 进入菜单 管理搜索引擎 和 网站搜索 3. 添加新的搜索引擎 4. 按照如下图,添加新的搜索引擎 字符串: https://www.bing.com/search?q=-csdn.net+% 阅读全文
posted @ 2024-12-24 09:05 svolcano 阅读(39) 评论(0) 推荐(0)
摘要: Free Cloud Stickers, + 278 stickers (SVG, PNG) | Flaticon https://www.flaticon.com/free-stickers/cloud Cloud Icons & Symbols (flaticon.com) 阅读全文
posted @ 2024-01-02 13:54 svolcano 阅读(52) 评论(0) 推荐(0)
摘要: 使用 pylint 做代码静态检查。 使用 autopep8 yapf 做代码 style 检查和格式化。 使用 poetry 做独立环境的构建。 使用 pytest 做单元测试。 使用 mysql 或者 postgresql 或者 mariaDB 或则 Percona percona 无感迁移 m 阅读全文
posted @ 2023-08-30 13:16 svolcano 阅读(8) 评论(0) 推荐(0)
摘要: 左手(前手)三孔全闭;右手(后手)三孔全开。 阅读全文
posted @ 2023-08-17 13:17 svolcano 阅读(482) 评论(0) 推荐(0)
摘要: At the byte level, X.509 is X.509 and there is no reason why the free SSL certificates would be any better or worse than the non-free -- the price is 阅读全文
posted @ 2023-08-15 16:31 svolcano 阅读(20) 评论(0) 推荐(0)
摘要: https://codingfantasy.com/games/flexboxadventure/play 学习 flexbox , 效果很好, 时间很短。 https://flukeout.github.io/ 学习 css 选择器。 阅读全文
posted @ 2023-08-15 09:03 svolcano 阅读(62) 评论(0) 推荐(0)
摘要: git 是什么? git 是一个 分布式 、最流行、最先进、2005由 linux torvalds 开发的版本管理系统 。 github、gitlab、Bitbucket 是什么? GitHub是一个面向开源及私有软件项目的托管平台,因为只支持git作为唯一的版本库格式进行托管,故名GitHub。 阅读全文
posted @ 2023-07-27 14:18 svolcano 阅读(44) 评论(0) 推荐(0)
摘要: 下载 python 任何一个版本 ,比如 python3.8 安装 pyenv-win link:https://github.com/pyenv-win/pyenv-win/blob/master/docs/installation.md#add-system-settings 步骤: pip i 阅读全文
posted @ 2023-07-26 15:32 svolcano 阅读(204) 评论(0) 推荐(0)
摘要: VUE 相关的指令: v-html 插入原始的 html const raw_html = "<h1>Hello world</h1> <p v-html="raw_html"></p> <!-- 标签不能再有孩子节点, 有的话会报错 --> v-bind 缩写是 ":" 绑定属性值 demo co 阅读全文
posted @ 2023-07-20 10:35 svolcano 阅读(6) 评论(0) 推荐(0)