上一页 1 2 3 4 5 6 7 ··· 53 下一页
摘要: StackExchange.Redis RedisHelper 工具类 Install-Package StackExchange.Redis using Microsoft.Extensions.Configuration; using StackExchange.Redis; using Sys 阅读全文
posted @ 2024-10-11 17:08 VipSoft 阅读(140) 评论(0) 推荐(0) 编辑
摘要: js 实现 string.format 功能 <script type="text/javascript"> var errorHtml = "<a title=\"{1}\" href=\"#\" onclick=\"\" class=\"ml-5\" style=\"text-decoratio 阅读全文
posted @ 2024-09-30 10:05 VipSoft 阅读(115) 评论(0) 推荐(0) 编辑
摘要: This configuration section cannot be used at this path. This happens when the section is locked at a parent level. Locking is either by default (overr 阅读全文
posted @ 2024-09-26 09:58 VipSoft 阅读(18) 评论(0) 推荐(0) 编辑
摘要: Java Sprintboot jar 项目启动、停止脚本 nohup java -jar APPNAMEspring.profiles.active={active} > /dev/null 2>&1 & 后台运行不输出任何信息: nohup ./test > /dev/null 阅读全文
posted @ 2024-09-14 16:15 VipSoft 阅读(143) 评论(0) 推荐(0) 编辑
摘要: C# 调用 exe 输出日志 ProcessStartInfo using System; using System.Diagnostics; using NLog; class Program { static void Main() { ProcessStartInfo startInfo = 阅读全文
posted @ 2024-09-05 16:45 VipSoft 阅读(30) 评论(0) 推荐(0) 编辑
摘要: Typora 1.0.3 markdown 满屏显示,去除两边的留白 Typora Markdown 设定代码显示高度 Typora 显示数学公式 Markdown 数学公式 Html 表格 在线转 Markdown Markdown Emojio 表情图标 点击Typora的文件—>偏好设置–>外 阅读全文
posted @ 2024-09-02 14:45 VipSoft 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 目录安装 JDK 11安装 Kafka下载 Kafka 2.8.2防火墙修改配置运行测试自启动验证端口Kafka 管理(CMAK)下载安装添加 Kafka Coluster Kafka 从 2.6.0 开始,默认使用 Java 11 , 3.0.0 开始,不再支持 Java 8,详见:https:/ 阅读全文
posted @ 2024-08-22 11:10 VipSoft 阅读(371) 评论(0) 推荐(0) 编辑
摘要: 目录【容器】镜像导出/导入导出导入带标签不带标签,后期修改【仓库】镜像导出/导入导出导入导入(完整命令) 创建一个简单的Docker镜像 利用docker ps -a命令查看要导出的镜像。 docker save 这表示它处理的是镜像,通常用于在不同的 Docker 主机之间迁移 Docker im 阅读全文
posted @ 2024-08-20 10:05 VipSoft 阅读(1256) 评论(2) 推荐(0) 编辑
摘要: 每次游完记一下次数。 from datetime import datetime def calculate_time(day_str, time_list): print("-" * 20) print(f"\033[34m{day_str}\033[0m 50米游泳记录") print("-" 阅读全文
posted @ 2024-08-15 09:30 VipSoft 阅读(13) 评论(0) 推荐(0) 编辑
摘要: C# 创建 WindowsService 服务项目 空白处,右键选择“添加安装程序” 可以看到两个控件,点击右击第一个控件,打开属性设计器,将其中的Account设置为LocalSystem(本地服务), 接下来,右击上面的第二个控件,打开属性界面,设置ServiceName,和将其中的StratT 阅读全文
posted @ 2024-08-12 13:09 VipSoft 阅读(36) 评论(0) 推荐(0) 编辑
摘要: Draw.io 是英格兰一家公司开发的,该公司信条:为每个人提供免费、高质量的绘图软件。 是一款免费的在线图表编辑工具这款工具无须注册登录,安全、开源、使用广泛、功能强大。不仅支持在线版,还可以安装到Windows、Mac进行离线使用 可绘制图表有:流程图、思维导图、组织结构图、文氏图、信息图、楼宇 阅读全文
posted @ 2024-08-09 10:43 VipSoft 阅读(288) 评论(0) 推荐(0) 编辑
摘要: 安装 requests、beautifulsoup4 库 # 安装 requests、beautifulsoup4 库 pip install requests beautifulsoup4 -i https://pypi.tuna.tsinghua.edu.cn/simple 完成代码 # pip 阅读全文
posted @ 2024-08-02 09:36 VipSoft 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 出现错误,无法启动 Visual Studio System.InvalidOperationException: Controller terminated before accepting connections. Exit Code:9 (NodeInvalidArgument) 解决办法 环 阅读全文
posted @ 2024-07-18 10:12 VipSoft 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 目录eDEX-UI主要亮点:优点:软件简介安装LinuxWindows效果更换皮肤matrixTron-disrupted退出常见问题解答 eDEX-UI,不仅是一款全屏幕、跨平台的终端模拟器和系统监视器,更是一件被封存的艺术品,让你尽情沉浸于科幻般的装逼幻想之中。它的界面设计独特,仿佛来自未来世界 阅读全文
posted @ 2024-07-17 14:35 VipSoft 阅读(625) 评论(0) 推荐(0) 编辑
摘要: C# 使用SqlDataAdapter和DataSet来访问数据库 实体 namespace VipSoft.Entity { [Table(Name = "PH_Prescription")] public class Prescription : Web.Core.Orm.Entity { [C 阅读全文
posted @ 2024-07-17 12:45 VipSoft 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 详细描述了 语料库、标注、训练、评估、预测,完整流程。对于细分场景推荐使用轻定制功能(标注少量数据进行模型微调)以进一步提升效果 阅读全文
posted @ 2024-07-03 14:57 VipSoft 阅读(776) 评论(0) 推荐(6) 编辑
摘要: 目录环境依赖配置SSH克隆代码训练定制代码结构数据标注准备语料库数据标注导出数据数据转换doccanoLabel Studio模型微调问题处理找不到 'paddlenlp.trainer'找不到GPUprotobuf==3.20.2CUDA/cuDNN/paddle 环境问题,此文档废弃,移步 ht 阅读全文
posted @ 2024-07-02 17:09 VipSoft 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 目录Content-Disposition文件下载内联显示代码示例常见的媒体类型文件上传 为什么浏览器中有些图片、PDF等文件点击后有些是预览,有些是下载, 出现图片、PDF不能预览的情况,主要是通过代码输出文件流的形式,非IIS、Nginx下直接访问资源的方式产生的 在HTTP中,用于文件下载的常 阅读全文
posted @ 2024-06-27 12:59 VipSoft 阅读(2295) 评论(2) 推荐(10) 编辑
摘要: 好看简单的Login登录界面,背景色带渐变 效果演示:http://www.vipsoft.com.cn/login.html HTML <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>VipSoft</ti 阅读全文
posted @ 2024-06-27 11:11 VipSoft 阅读(184) 评论(2) 推荐(1) 编辑
摘要: 拉取 gitee 代码,Please make sure you have the correct access rights git clone git@gitee.com:paddlepaddle/PaddleNLP.git 生成 RAS 秘钥 ssh-keygen -t rsa -C "Git 阅读全文
posted @ 2024-06-25 10:13 VipSoft 阅读(26) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 53 下一页
点击右上角即可分享
微信分享提示