摘要: #!/usr/bin/env python3 # -*- coding: utf-8 -*- import os import sys import mammoth """ 批量将指定文件夹及其子文件夹中的所有 .docx 文件转换为 .md (Markdown) 文件 - 修复版 v2.1: 修正 阅读全文
posted @ 2025-12-02 13:35 ChasingDreams 阅读(8) 评论(0) 推荐(0)
摘要: 新建一个文档, alt+f11 打开宏 输入 // 您的原版微调 (多选文件,非递归) function docChangedocxSelect() { var myDialog = Application.FileDialog(3); // msoFileDialogFilePicker=3 my 阅读全文
posted @ 2025-12-02 13:29 ChasingDreams 阅读(16) 评论(0) 推荐(0)
摘要: namespace LinCms.Core.Entities; using FreeSql; class Program { static void Main(string[] args) { // 导出表 // dotnet tool install -g FreeSql.Generator // 阅读全文
posted @ 2025-10-22 10:44 ChasingDreams 阅读(9) 评论(0) 推荐(0)
摘要: 我的活动里 以批量选择"通勤"为例 在浏览器Console中敲入 allow pasting document.querySelectorAll('input[name="commute"]').forEach(checkbox => { checkbox.checked = true; }); / 阅读全文
posted @ 2025-03-15 16:07 ChasingDreams 阅读(28) 评论(0) 推荐(0)
摘要: git clone git@gitee.com:longing/aspnetcorestudy.git --config core.sshcommand="ssh -i ~/.ssh/gitee_ssh_key" 阅读全文
posted @ 2025-03-03 09:52 ChasingDreams 阅读(26) 评论(0) 推荐(0)
摘要: ollama下载qwen2.5:7b potplayer字幕->生成有声字幕 下载转换引擎 Whisper-Faster 型号会在首次生成时自动下载 下载的位置不可选,可以用mklink /J 名字 位置 建立一个软链接,节省下系统盘空间 (C:\Users\bill\AppData\Roaming 阅读全文
posted @ 2025-03-02 17:22 ChasingDreams 阅读(2501) 评论(0) 推荐(0)
摘要: using System; using System.Runtime.InteropServices; namespace ConsoleApp3 { class Program { static void Main(string[] args) { Console.WriteLine(Runtim 阅读全文
posted @ 2025-02-25 10:12 ChasingDreams 阅读(10) 评论(0) 推荐(0)
摘要: Stryker.NET https://stryker-mutator.io/docs/stryker-net/introduction/ 阅读全文
posted @ 2024-12-08 22:13 ChasingDreams 阅读(10) 评论(0) 推荐(0)
摘要: https://www.bilibili.com/video/BV1kpzSYUEES 不适用Redis方案,在响应报文中添加 Cache-Control:no-cache 配合ETag实现缓存加速 核心思路,使用https://github.com/SimonCropp/Delta 库,监视数据库 阅读全文
posted @ 2024-12-07 22:10 ChasingDreams 阅读(21) 评论(0) 推荐(0)
摘要: https://www.bilibili.com/list/watchlater?oid=918750121 using System.Buffers; using BenchmarkDotNet.Attributes; namespace SearchValuesExample; [MemoryD 阅读全文
posted @ 2024-08-25 22:14 ChasingDreams 阅读(32) 评论(0) 推荐(0)