摘要: # yapi 使用 Docker 构建 Yapi 1.启动 MongoDB docker run -d --name mongo-yapi -p 27017:27017 -v /home/yapi/mongodb/mongo_data_yapi:/data/db mongo 2.获取 Yapi 镜像 阅读全文
posted @ 2021-11-07 07:41 耀耀王 阅读(358) 评论(0) 推荐(0) 编辑
摘要: package main import ( "crypto/rsa" "errors" "fmt" "io/ioutil" "os" "time" "github.com/dgrijalva/jwt-go" ) //https://cryptotools.net/rsagen //https://j 阅读全文
posted @ 2021-11-05 13:10 耀耀王 阅读(108) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*- import json import requests import math import xlrd import xlwt from xlutils.copy import copy import os x_pi = 3.1415926535897 阅读全文
posted @ 2021-09-06 11:12 耀耀王 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 1. Qstring 转char* #define CAHRSTR(str) str.toAscii().constData() 2.char* 转Qstring #define QStringStr(str) QString(str) 阅读全文
posted @ 2021-01-04 11:09 耀耀王 阅读(339) 评论(0) 推荐(0) 编辑
摘要: 1 import pymysql 2 3 db = pymysql.connect( 4 host='127.0.0.1', 5 db='diag', 6 user='root', 7 passwd='root', 8 charset='utf8', 9 use_unicode=True 10 ) 阅读全文
posted @ 2020-12-31 10:26 耀耀王 阅读(1138) 评论(0) 推荐(0) 编辑
摘要: import binascii import sys import threading import serial # 导入模块 import serial.tools.list_ports STRGLO="" #读取的数据 BOOL=True #读取标志位 def get_serial_port_ 阅读全文
posted @ 2020-10-16 15:10 耀耀王 阅读(479) 评论(0) 推荐(0) 编辑
摘要: 40种传感器工作原理居然一下子看懂了!!超声波测量液位原理▼ 超声防盗报警器▼纵波探伤▼横波探伤▼表面波探伤▼布料张力... 阅读全文
posted @ 2020-07-08 13:31 耀耀王 阅读(1007) 评论(0) 推荐(0) 编辑
摘要: dt 为设定的时间,转化为时间戳,在主循环里一分钟循环一次,读取当前的时间戳,当前时间大于设定时间,清空目录。import os,sys import shutil import time def clear(): cur_file = os.path.basename(sys.argv[0]) dir_content = [x for x in os.listdir(".") if x ... 阅读全文
posted @ 2020-07-08 13:08 耀耀王 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 1.把doc文件复制到记事本里2.python代码asn_statu = 0asn_txt_list = []with open("D:/share/doc/38413.txt",encoding="gbk") as file: last_line = "" for line in file: if 阅读全文
posted @ 2020-07-07 12:35 耀耀王 阅读(280) 评论(0) 推荐(0) 编辑
摘要: Makefile教程(绝对经典,所有问题看这一篇足够了)makefile很重要 什么是makefile?或许很多Winodws的程序员都不知道这个东西,因为那些Windows的IDE都为你做了这个工作,但我觉得要作一个好的和professional的程序员,makefile还是要懂。这就好像现在有这么多的HTML的编辑器,但如果你想成为一个专业人士,你还是要了解HTML的标识的... 阅读全文
posted @ 2020-06-08 18:01 耀耀王 阅读(205) 评论(0) 推荐(0) 编辑