04 2022 档案
OpenEuler 安装Mysql8.0
摘要:1、下载mysql-8.0.29-1.el8.x86_64.rpm-bundle https://dev.mysql.com/downloads/ 需要登录下载 当前下载版本 mysql-8.0.29-1.el8.x86_64.rpm-bundle 2、解压 cd /usr/software/mys 阅读全文
posted @ 2022-04-29 17:57 金科许俊 阅读(2010) 评论(0) 推荐(0) 编辑
OpenCvSharp 人脸捕捉
摘要:效果 VideoCapture video = new VideoCapture(); video.Open(0); //电脑默认自带摄像头为0 while (true) { Mat src = new Mat(); if (!video.Read(src)) { break; } Mat gray 阅读全文
posted @ 2022-04-27 20:17 金科许俊 阅读(276) 评论(0) 推荐(1) 编辑
DataCollect上位机采集
摘要:框架 客户端 报文监听 通道 测点 历史 状态记录 Web端 前端绑定 阅读全文
posted @ 2022-04-26 18:58 金科许俊 阅读(60) 评论(0) 推荐(0) 编辑
关于OpenEuler或其他Linux 系统上 dotnet Core App 项目无法后台运行问题
摘要:Console.ReadLine(); Console.ReadKey(); //无法在Linux运行 private static readonly AutoResetEvent _closingEvent = new AutoResetEvent(false); static void Main 阅读全文
posted @ 2022-04-26 18:16 金科许俊 阅读(124) 评论(0) 推荐(0) 编辑
Xshell Xftp 破解版
摘要:链接:https://pan.baidu.com/s/1QfE_ZLWKbcopSXTkhWj6gA 提取码:pbhj 阅读全文
posted @ 2022-04-25 17:22 金科许俊 阅读(191) 评论(0) 推荐(0) 编辑
OpenEuler部署 .net Core 程序
摘要:sudo rpm -Uvh https://packages.microsoft.com/config/rhel/7/packages-microsoft-prod.rpm //更新环境 sudo yum update 先添加微软包存储库rpm -Uvh https://packages.micro 阅读全文
posted @ 2022-04-25 16:19 金科许俊 阅读(1237) 评论(0) 推荐(0) 编辑
OpenEuler 后台脚本
摘要:Mongodb 位置/etc/init.d/Mongodb.sh #!/bin/sh #chkconfig: 2345 80 90 #description: mongodb#!/bin/sh #chkconfig: 2345 80 90 #description: mongodb start() 阅读全文
posted @ 2022-04-25 12:59 金科许俊 阅读(92) 评论(0) 推荐(0) 编辑
OpenEuler安装Mongodb
摘要:cd /root/downfiles //进入下载目录 wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-rhel80-4.4.18.tgz //下载mongodb tar -zxvf mongodb-linux-x86_64-rh 阅读全文
posted @ 2022-04-24 18:48 金科许俊 阅读(1292) 评论(0) 推荐(0) 编辑
OpenEuler安装Redis
摘要:cd /root //进入用户目录 mkdir downfiles // 创建目录downfiles cd downfiles // 进入目录 wget http://download.redis.io/releases/redis-6.0.6.tar.gz //下载redis tar xzf re 阅读全文
posted @ 2022-04-23 16:29 金科许俊 阅读(975) 评论(0) 推荐(0) 编辑
Linux 常用命令
摘要:windows下常用工具Xshell7、Xftp 7 https://files.cnblogs.com/files/blogs/745639/xzji.com-XshellPlus.rar 关机/重启/注销 常用命令作用 shutdown -h now 即刻关机 shutdown -h 10 10 阅读全文
posted @ 2022-04-23 15:10 金科许俊 阅读(43) 评论(0) 推荐(0) 编辑
windows OpenEuler安装
摘要:1、下载 本次为虚拟机安装所选ISO x86_64 https://repo.openeuler.org/openEuler-22.03-LTS/ISO/x86_64/openEuler-22.03-LTS-x86_64-dvd.iso 2、安装虚拟机 3、安装系统 按回车直接安装 按需选择语言 有 阅读全文
posted @ 2022-04-23 15:09 金科许俊 阅读(264) 评论(0) 推荐(0) 编辑
Markdown Typora 1.2.4 破解版
摘要:链接:https://pan.baidu.com/s/1ghyUrVaRMQ7PjgXJh78NRQ 提取码:lf1n 阅读全文
posted @ 2022-04-23 15:00 金科许俊 阅读(424) 评论(0) 推荐(0) 编辑
golang yml写入
摘要:config.yml app: host: 127.0.0.1 port: 3306 username: adminsdsd password: admin log: suffix: log maxSize: 5 main.go 先读取再写入 package main import ( "fmt" 阅读全文
posted @ 2022-04-21 11:31 金科许俊 阅读(90) 评论(0) 推荐(0) 编辑
golang yml文件读取
摘要:config.yml app: host: 127.0.0.1 port: 3306 username: adminsdsd password: admin log: suffix: log maxSize: 5 main.go package main import ( "fmt" "io/iou 阅读全文
posted @ 2022-04-21 11:13 金科许俊 阅读(408) 评论(0) 推荐(0) 编辑
golang Mqtt服务端
摘要:package main import ( "context" "fmt" "net" _ "net/http/pprof" "os" "os/signal" "syscall" "time" "go.uber.org/zap" "github.com/DrmagicE/gmqtt" _ "gith 阅读全文
posted @ 2022-04-21 01:01 金科许俊 阅读(956) 评论(0) 推荐(0) 编辑
golang Mqtt客户端
摘要:package main import ( "fmt" "time" MQTT "github.com/eclipse/paho.mqtt.golang" ) // 连接的回掉函数 var connectHandler MQTT.OnConnectHandler = func(client MQTT 阅读全文
posted @ 2022-04-20 17:16 金科许俊 阅读(545) 评论(0) 推荐(0) 编辑
golang mqtt包安装
摘要:1、引用Mqtt包 MQTT "github.com/eclipse/paho.mqtt.golang" 2、异常报错 dial tcp 142.251.43.17:443: connectex: A connection attempt failed because the connected p 阅读全文
posted @ 2022-04-20 16:16 金科许俊 阅读(314) 评论(0) 推荐(0) 编辑
上位机模拟量、开关量、字符串定义
摘要:1、模拟量 2、开关量 3、字符串 脚本:math 脚本:策略 阅读全文
posted @ 2022-04-18 12:57 金科许俊 阅读(164) 评论(0) 推荐(0) 编辑
OPC Ua Client
摘要:1、配置OPC Ua Server 2、建立OPC Ua 连接 3、创建测点 4、历史数据 5、状态变化记录 6、控制记录 阅读全文
posted @ 2022-04-18 10:51 金科许俊 阅读(1444) 评论(0) 推荐(0) 编辑
前端WebgL
摘要:线上演示地址 http://39.103.210.50:5555/index.html#/System/EditView 二维 1、场景编辑器 2、属性编辑定义 3、场景发布 5、事件反馈 6、参数设定 三维 1、场景编辑器 2、模型属性 3、场景发布 阅读全文
posted @ 2022-04-15 00:37 金科许俊 阅读(567) 评论(0) 推荐(0) 编辑
上位机软件
摘要:1、TCP、UDP、串口、SNMP 2、动态加载驱动 3、事件状态记录 4、策略编辑,支持动态表达式语法 5、策略控制 6、跨平台 阅读全文
posted @ 2022-04-15 00:08 金科许俊 阅读(694) 评论(0) 推荐(0) 编辑
KepWare ua 设置
摘要: 阅读全文
posted @ 2022-04-07 09:35 金科许俊 阅读(80) 评论(0) 推荐(0) 编辑
ICON 贴图(白嫖使我快乐)
摘要:Storyset | Customize, animate and download illustration for free 免费素材图片 · Pexels Download Free Vectors, Photos, Icons, PSDs and more - 1001FreeDownloa 阅读全文
posted @ 2022-04-02 14:06 金科许俊 阅读(29) 评论(0) 推荐(0) 编辑
三维模型网站(白嫖使我快乐)
摘要:型号 - 波利贡 (poliigon.com) 免费3D模型 - Free3D.com Sweet Home 3D : 3D models import BIM 对象 - 免费下载! | BIMobject Explore 3D Models - Sketchfab Popular models | 阅读全文
posted @ 2022-04-02 14:02 金科许俊 阅读(118) 评论(0) 推荐(0) 编辑
泰克西项目
摘要: 阅读全文
posted @ 2022-04-02 13:50 金科许俊 阅读(14) 评论(0) 推荐(0) 编辑
C# Modbus Double Float
摘要:public class ModbusDouble { /// <summary> /// 双精度浮点数转10进制 /// 默认为double最小数 /// </summary> /// <param name="Hex"></param> /// <returns></returns> publi 阅读全文
posted @ 2022-04-02 13:19 金科许俊 阅读(791) 评论(0) 推荐(0) 编辑
C# Modbus 开关量 bit
摘要:public class ModbusBit { /// <summary> /// 获取比特位号从左往右 /// 例如 0x01=00000001 第0位为1 /// 默认值-1 /// </summary> /// <param name="bt"></param> /// <param nam 阅读全文
posted @ 2022-04-02 13:16 金科许俊 阅读(221) 评论(0) 推荐(0) 编辑
C# Modbus Crc
摘要:public class ModbusCrc { /// <summary> /// 获取crc /// int /// 默认值ushort最小值 /// </summary> /// <param name="Data"></param> /// <returns></returns> publi 阅读全文
posted @ 2022-04-02 13:13 金科许俊 阅读(244) 评论(0) 推荐(0) 编辑
C# StackExchange.Redis 模糊删除 模糊查找
摘要:/// <summary> /// 模糊查找 /// </summary> /// <param name="key"></param> public List<XJDataDll.Tag.Point> SelectTags(string pattern) { List<XJDataDll.Tag. 阅读全文
posted @ 2022-04-02 13:04 金科许俊 阅读(1192) 评论(0) 推荐(0) 编辑
C# Mongodb数据插入取不出来
摘要:[BsonIgnoreExtraElements] [BsonIgnoreExtraElements] public class MachineOption { /// <summary> /// 测点ID系统自带 /// </summary> [BsonId] [BsonRepresentatio 阅读全文
posted @ 2022-04-02 12:57 金科许俊 阅读(57) 评论(0) 推荐(0) 编辑




点击右上角即可分享
微信分享提示