随笔分类 -  备忘

摘要:提问 正则如何匹配字符串中间内容 回答 (?<txt>(?<=开始).+)(?<txt>.+(?=结束)) 阅读全文
posted @ 2023-02-20 15:23 东百牧码人 阅读(26) 评论(0) 推荐(0)
摘要:运行命令 对当前项目取消sl验证,不要对全局项目使用 git config http.sslverify false 参考 https://www.cnblogs.com/jaxu/p/12027839.html 阅读全文
posted @ 2022-11-21 16:01 东百牧码人 阅读(101) 评论(0) 推荐(0)
摘要:命令 # .NET Core v2 # Build, test, package, or publish a dotnet application, or run a custom dotnet command. - task: DotNetCoreCLI@2 inputs: command: 'b 阅读全文
posted @ 2022-11-21 09:39 东百牧码人 阅读(389) 评论(0) 推荐(0)
摘要:提问 什么是语义化版本 回答 主版本.次版本.修正版本 主版本变更条件:不兼容的修改加入 次版本变更条件:在有向下兼容的新功能出现时递增 修正版本变更条件:只做了向下兼容的修正时才递增 参考 https://semver.org/lang/zh-CN/ 阅读全文
posted @ 2022-10-20 16:03 东百牧码人 阅读(20) 评论(0) 推荐(0)
摘要:提问 软件授权专业词汇 回答 License:许可证 Entitlements:授权 购买授权后颁发许可 阅读全文
posted @ 2022-10-20 11:20 东百牧码人 阅读(33) 评论(0) 推荐(0)
摘要:Samples for (int j = 0; j < 96; j++)//24*60/15 { var dt = _endDateTime.AddMinutes(-j * 15).AddMilliseconds(ran.Next(1000)); var ts = (dt.Ticks - _star 阅读全文
posted @ 2022-08-24 17:46 东百牧码人 阅读(493) 评论(0) 推荐(0)
摘要:1.打开Windows安全中心 2.选择病毒和威胁防护 3.点击管理设置,关闭实时保护 4.可以看到Antimalware不再占用大量系统资源 阅读全文
posted @ 2022-08-19 16:29 东百牧码人 阅读(740) 评论(0) 推荐(0)
摘要:安装 pandoc https://github.com/jgm/pandoc/releases/download/2.18/pandoc-2.18-windows-x86_64.msi 运行命令 pandoc -f markdown -t html ./系统手册.md | pandoc -f ht 阅读全文
posted @ 2022-07-27 13:22 东百牧码人 阅读(32) 评论(0) 推荐(0)
摘要:Cmd ^ powershell ' Bash \ 阅读全文
posted @ 2022-07-25 17:08 东百牧码人 阅读(144) 评论(0) 推荐(0)