Fork me on GitHub
摘要: 本教程建议使用win 10 、win 11 非家庭版使用 首先安装 ssh 服务端 Get-Service -Name *ssh* #查看服务 ssh -V #查看ssh 版本 netstat -an |findstr :22 # 查看端口是否被监听 ipconfig # 查看本机IP ssh ad 阅读全文
posted @ 2024-07-07 20:36 都一样* 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 为 .NET 安装本地化的 IntelliSense 文件 先下载文件 后解压 , 打开文件夹后复制到对应的C盘文件夹中(这需要注意的是若安装多个Sdk需要复制多次重新启动项目即可) 阅读全文
posted @ 2024-04-10 15:42 都一样* 阅读(24) 评论(0) 推荐(0) 编辑
摘要: document.querySelector('video').playbackRate = 3.0; // 视频开启三倍 阅读全文
posted @ 2024-04-07 15:49 都一样* 阅读(6) 评论(0) 推荐(0) 编辑
摘要: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Visual Studio 2022\Visual Studio Tools SN -T C:\Users\97627\.nuget\packages\system.data.sqlclient 阅读全文
posted @ 2023-05-08 21:40 都一样* 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 'gb2312' is not a supported encoding name. For information on defining a custom encoding, see the documentation for the Encoding.RegisterProvider meth 阅读全文
posted @ 2023-05-07 15:12 都一样* 阅读(353) 评论(0) 推荐(0) 编辑
摘要: CodeSmith8 激活工具包 https://wwot.lanzouw.com/iNIWI0r7e5kj 阅读全文
posted @ 2023-03-27 12:02 都一样* 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 解决dotnet 项目浏览器不安全提示 dotnet dev-certs - 生成自签名证书,以便在开发中使用 HTTPS。 dotnet dev-certs https --clean dotnet dev-certs https -t 更多命令参考 https://learn.microsoft 阅读全文
posted @ 2023-01-12 16:16 都一样* 阅读(298) 评论(0) 推荐(0) 编辑
摘要: 参考:https://www.cnblogs.com/lairui1232000/p/8964949.html /* detail表 记帐流水表 字段: qt_srMoney (money) 收入 qt_zcMoney (money) 支出 qt_date (datetime) 操作日期 qt_dk 阅读全文
posted @ 2022-11-11 15:24 都一样* 阅读(95) 评论(0) 推荐(0) 编辑
摘要: 下载 nmap nmap -sS -Pn localhost netstat -ano | findstr 需要查看的端口号 打开任务管理器查看该程序是否需要 停止 taskkill -PID 1068 -F 阅读全文
posted @ 2022-06-02 15:45 都一样* 阅读(77) 评论(0) 推荐(0) 编辑
摘要: const mock = require('mockjs'); // 引入mockjs const data = mock.mock({ "data|20": [{ "id": "@id", "name": "@cname", "phone": /^1[3578]\d{9}/, "ip": "@ip 阅读全文
posted @ 2022-05-15 18:04 都一样* 阅读(131) 评论(0) 推荐(0) 编辑