会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
余-先生
博客园
首页
新随笔
联系
订阅
管理
2025年2月6日
应用相关记录
摘要: (PaddleSharp)图片文字识别 https://github.com/sdcb/PaddleSharp (U-2-Net)图像去背景(抠图) https://github.com/xuebinqin/U-2-Net (LibreTranslate)部署本地离线机器翻译服务 https://g
阅读全文
posted @ 2025-02-06 16:38 余-先生
阅读(15)
评论(0)
推荐(0)
2025年1月15日
书籍推荐
摘要: 《活着》 《黑客与画家》 《无伤跑法》
阅读全文
posted @ 2025-01-15 15:44 余-先生
阅读(12)
评论(0)
推荐(0)
bat脚本检测服务运行状态
摘要: ::检测服务winService是否启动中,若启动中则退出否则启动服务再退出。@echo offfor /f "skip=3 tokens=4" %%i in ('sc query winService') do set "zt=%%i" &goto :next:nextif /i "%zt%"==
阅读全文
posted @ 2025-01-15 15:33 余-先生
阅读(152)
评论(0)
推荐(0)
css给div添加加载中遮罩层样式
摘要: 1 .loading:before { 2 content: ""; 3 display: block; 4 background: rgba(255, 255, 255, 0.5); 5 width: 100%; 6 height: 100%; 7 position: absolute; 8 to
阅读全文
posted @ 2025-01-15 15:30 余-先生
阅读(163)
评论(0)
推荐(0)
ajax重写设置全局header
摘要: 1 _ajax = $.ajax; 2 3 $.ajax = function (opt) { 4 return getPati(function (pati) { 5 var fn, _opt; 6 fn = { 7 beforeSend: function (request) {} 8 }; 9
阅读全文
posted @ 2025-01-15 15:29 余-先生
阅读(29)
评论(0)
推荐(0)
mysql基本语法
摘要: 显示数据库表:SHOW DATABASES; 选择数据库:USE database_name; 显示表:SHOW TABLES; 显示表字段:SHOW COLUMNS FROM table_name; 清空表:TRUNCATE TABLE table_name; 要在名为table_name的表中添
阅读全文
posted @ 2025-01-15 15:26 余-先生
阅读(8)
评论(0)
推荐(0)
ubuntu命令
摘要: 查看硬盘空间:df -h 查看内存使用情况:free -h 查看进程使用性能情况:top 按m键,按内存使用情况排序。 设置文件夹所有用户可读写:sudo chmod -R 777 /文件夹 创建文件夹:mkdir folder_name
阅读全文
posted @ 2025-01-15 15:23 余-先生
阅读(14)
评论(0)
推荐(0)
关于微信支付.net core RSA加密方法
摘要: 1 var filePath=""; 2 var message=""; 3 var mchid=""; 4 using (var cert = new X509Certificate2(filePath, mchid)) 5 { 6 byte[] data = Encoding.UTF8.GetB
阅读全文
posted @ 2025-01-15 15:12 余-先生
阅读(37)
评论(0)
推荐(0)
npm 命令、切换源
摘要: npm安装模块利用 npm 安装xxx模块到当前命令行所在目录;npm install xxx 利用npm安装全局模块xxx;npm install -g xxx 安装并写入package.json的”dependencies”中;npm install xxx –save 安装并写入package
阅读全文
posted @ 2025-01-15 15:09 余-先生
阅读(160)
评论(0)
推荐(0)
Git命令
摘要: 初始化Git仓库git init 设置git用户名/邮箱$ git config user.name 'github用户名'$ git config user.email '邮箱'查看配置(包含:用户名和邮箱等)git config --listgit clone https://gitee.com
阅读全文
posted @ 2025-01-15 15:05 余-先生
阅读(9)
评论(0)
推荐(0)
下一页
公告