2024年1月22日

execl 宏批量复制表并重命名

摘要: Sub 创建周表() Dim ws As Worksheet Dim rngData As Range Dim cell As Range Set ws = ThisWorkbook.Sheets("Sheet1") Set rngData = ws.Range("C2:C" & ws.Cells( 阅读全文

posted @ 2024-01-22 16:57 kitesong 阅读(60) 评论(0) 推荐(0) 编辑

2023年12月29日

Centos7 安装Open Vpn

摘要: 一、 yun 安装相关软件 yum -y install epel-release yum -y install openvpn easy-rsa iptables-services 二、生成证书和密钥文件 1. 将 easy-rsa 脚本复制到 /etc/openvpn/ cp -r /usr/s 阅读全文

posted @ 2023-12-29 14:57 kitesong 阅读(3) 评论(0) 推荐(0) 编辑

2023年11月28日

常用工具网站链接

摘要: 工具网站集合 在线工具集合: https://tool.lu 字符 串 处理 在线sha512 在线计算Sha512摘要工具 (config.net.cn) 图片 处理 HoloCubic 图片专C代码 Online image converter - BMP, JPG or PNG to C ar 阅读全文

posted @ 2023-11-28 11:38 kitesong 阅读(12) 评论(0) 推荐(0) 编辑

2023年11月3日

python PEP

摘要: python 库地址: PEP 0 – Index of Python Enhancement Proposals (PEPs) | peps.python.org 阅读全文

posted @ 2023-11-03 23:32 kitesong 阅读(3) 评论(0) 推荐(0) 编辑

python 字符串格式化

摘要: Python字符串的格式化分为两种:1)% 方式 2)str.format() 方式。 str.format() 是比 % 较新的方式, 大多数的 Python 代码仍然使用 % 操作符。但最终会被str.format()代替,推荐使用str.format() 1、% 方式 1)用法 %[(name 阅读全文

posted @ 2023-11-03 23:30 kitesong 阅读(15) 评论(0) 推荐(0) 编辑

2023年9月23日

Recat Const 对象更新单个项

摘要: const [currentInfo, setCurrentInfo] = useState<BasicImagesItem>(); onFinish={async (values) => { setCurrentInfo({ ...currentInfo, //引入已有的 kname: value 阅读全文

posted @ 2023-09-23 23:33 kitesong 阅读(7) 评论(0) 推荐(0) 编辑

2023年6月26日

Linux top详解

摘要: lnux下用top命令查看cpu利用率超过100% 这里显示的所有的cpu加起来的使用率,说明你的CPU是多核,你运行top后按大键盘1看看,可以显示每个cpu的使用率,top里显示的是把所有使用率加起来。 注意: 按下1后显示的是逻辑cpu的个数,并不代表cpu的真实核数。 第一行: top - 阅读全文

posted @ 2023-06-26 10:26 kitesong 阅读(127) 评论(0) 推荐(0) 编辑

2023年6月22日

frp 内网到内网穿透

摘要: 下载frp_0.34.2_linux_amd64.tar 到公网ECS 和内网服务器 一、公网ECS做为服务端 1.1 解压文件到/usr/local/frps 1.2修改/usr/loacl/frps/frps.ini 内容如下: [common]bind_port = 7000 #服务端口das 阅读全文

posted @ 2023-06-22 14:56 kitesong 阅读(19) 评论(0) 推荐(0) 编辑

2023年4月19日

高性能计算HPC-基础知识

摘要: 高性能计算(缩写 HPC) 指通常使用很多处理器(作为单个机器的一部分)或者某一集群中组织的几台计算机(作为单个计 算资源操作)的计算系统和环境。有许多类型的 HPC 系统,其范围从标准计算机的大型集群,到高度专用的硬件。 高性能计算集群性能指标 FLOPS 是指每秒浮点运算次数,Flops 用作计 阅读全文

posted @ 2023-04-19 14:27 kitesong 阅读(885) 评论(0) 推荐(0) 编辑

2023年3月27日

CentOS日常用操作-查看硬件信息、系统信息,常用配置

摘要: 一、查看系统内容 1)查看系统信息 综合信息:hostnamectl 系统版本:cat /etc/redhat-release 系统内核版本:uname -a 或 cat /proc/version 机器型号:dmidecode | grep "Product Name" 2).查看系统操作记录: 阅读全文

posted @ 2023-03-27 22:40 kitesong 阅读(2552) 评论(0) 推荐(1) 编辑

导航