关于Teigha的使用记录 因工作需要,实现脱离CAD环境下对DWG图纸的操作,研究Teigha的使用。本文是对研究内容做的记录。目前Teigha网上资料不是很多,还在学习中。我使用的是Teigha 4.0 .net 版本,VS2018环境,.NET Framework 4框架。 Teigha的加载 ...
分类:
其他好文 时间:
2021-04-30 12:11:51
阅读次数:
0
1. Spring 特点 Spring 主要有如下特点: 轻量级:Spring 是非侵入式,其中的对象不依赖 Spring 的特定类; 控制反转(IoC):通过 IoC,促进了低耦合,一个对象依赖的其他对象通过被动的方式传递进来,而不用该对象主动创建或查找; 面向切面(AOP):支持面向切面编程,将 ...
分类:
编程语言 时间:
2021-04-30 11:55:44
阅读次数:
0
from tensorflow.keras.callbacks import EarlyStopping import tensorflow as tf import time import numpy as np import matplotlib.pyplot as plt import sys ...
分类:
其他好文 时间:
2021-04-29 11:45:30
阅读次数:
0
zabbix监控服务邮箱告警的三种配置方式 环境说明: 环境 IP地址 主机名 需要安装的应用 系统版本 服务端 192.168.110.30 zabbix.example.com lamp架构 zabbix_server zabbix_agent redhat 8.2 客户端 192.168.11 ...
分类:
其他好文 时间:
2021-04-28 12:08:54
阅读次数:
0
<!-- Vue SFC --> <template> <div> <el-upload class="upload-demo" action="" v-if="show" :on-preview="handlePreview" :on-remove="handleRemove" :before-u ...
分类:
Web程序 时间:
2021-04-28 12:07:33
阅读次数:
0
<insert id="insertBatchList"> INSERT INTO tag ( `tag_name`, `tag_weight`, ) VALUES <foreach collection ="list" item="tag" separator =","> (#{tag.tagNa ...
分类:
其他好文 时间:
2021-04-28 12:04:54
阅读次数:
0
https://echarts.apache.org/examples/zh/editor.html?c=bar-stack option = { tooltip: { trigger: 'axis', axisPointer: { // 坐标轴指示器,坐标轴触发有效 type: 'shadow' ...
分类:
其他好文 时间:
2021-04-28 11:42:45
阅读次数:
0
环境说明: node1: 192.168.44.128 服务端 (已经装好zabbix_agentd和zabbix_server) node2: 192.168.44.129 客户端 (已经装好zabbix_agentd) //配置本地邮箱[root@node1 ~]# systemctl stop ...
分类:
其他好文 时间:
2021-04-27 14:45:06
阅读次数:
0
本地邮箱告警配置 配置本地邮箱告警前,我们要用到mail命令 所以先安装mail命令 [root@mf ~]# yum -y install mailx 使用mail命令发送邮箱 [root@mf ~]# echo "test" | mail -s "20210426" 18808843007@16 ...
分类:
其他好文 时间:
2021-04-27 14:43:11
阅读次数:
0
异步 asyncio、async、await 异步非阻塞 tronado、fastapi、django3.x asgi、sanic、aiohttp都在异步——>提升性能 协程 asyncio模块进行异步编程 实战案例 1.协程 协程不是计算机提供的,是程序员人为创造的。 协程(Coroutine), ...
分类:
编程语言 时间:
2021-04-27 14:36:58
阅读次数:
0