journalctl 清理日志

使用 journalctl 命令清理 systemd 等产品的日志。 根据时间清理旧的日志文件: sudo journalctl --vacuum-time=1years --vacuum-time 选项用于指定保留日志文件的时间跨度。 单位也可以是:1months、3days

cron 工具

辅助编写 cron 表达式,测试和解析 cron 表达式,查看匹配的后续时间。 https://crontab.guru/ 编辑和测试 cron 表达式。网页应用,免费。 https://cron.help/ 同上。Crontab syntax for us humans

免费可商用英文字体及资源

收集整理的🆓免费可商用的英文字体资源。且多数均已开源。 Reddit Sans https://github.com/reddit/redditsans MiSans、Lato、Circular 可代替 Arial EB Grarmond, Cardo 可代替 Times New Roman Aileron, Lnter, Roboto 可代替 「

Tauri invoke 参数名

注意参数名: 在后端 rust 代码中,参数名必须是蛇形命名法,例如 tou_lan。 而在前端通过 invoke 调用时,参数名必须使用驼峰式命名法,例如 touLan 实例: 传递 user

ffprobe 获取视频各项属性源信息

ffprobe -v error -show_format -show_streams -show_programs -show_chapters -show_private_data -print_format json your-video.mp4 简化输出一些常用的信息: ffprobe -v error -select_streams v:0 -show_format -show_entries stream=height,width -of csv=s=x:p=0 -print_format json your-video.mp4 将结果输出到文件,在命令后添加 > meta.json 输出示例: { "programs": [ ], "streams": [ { "width": 1920, "height": 1080 }