上一页 1 2 3 4 5 6 ··· 68 下一页
摘要: 框架使用 from django.dispatch import Signal, receiver # init order_done = Signal(providing_args=["order_id", "type"]) # receiver @receiver(order_done) def 阅读全文
posted @ 2025-05-21 11:22 vx_guanchaoguo0 阅读(9) 评论(0) 推荐(0)
摘要: 它们分别是raw表、mangle表、nat表、filter表 iptables -t filter -L iptables -t raw -L iptables -t mangle -L iptables -t nat -L filter负责过滤功能 比如允许哪些IP地址访问,拒绝哪些IP地址访问, 阅读全文
posted @ 2025-05-20 17:57 vx_guanchaoguo0 阅读(20) 评论(0) 推荐(0)
摘要: 下载 https://link.zhihu.com/?target=https%3A//cmder.net/ 设置环境变量 CMDER_ROOT [目录为刚刚解压的目录] ConEmuDir [%CMDER_ROOT%\vendor\conemu-maximus5] path [%CMDER_ROO 阅读全文
posted @ 2025-05-12 10:03 vx_guanchaoguo0 阅读(59) 评论(0) 推荐(0)
摘要: 新建环境变量 变量名为:CMDER_ROOT 变量值为:C:\Users\Administrator\scoop\apps\cmder-full\1.3.25(主机上 Cmder 安装主目录) 设置idea 检索terminal 路径:setting-->Tools-->Terminal >Appc 阅读全文
posted @ 2025-04-16 18:09 vx_guanchaoguo0 阅读(34) 评论(0) 推荐(0)
摘要: air724ug 厂家:上海合宙 第一代 4gcate1 通信模块 时间 :2020.03 芯片厂商: 紫光展锐的UIS8910 lutos: 可以二次开发 开发语言: lua 难度:较低 场景: 充电桩,充电宝,售货机,娃娃机,摇摇车,共享单车 air780E 厂家:上海合宙 第二代 4gcate 阅读全文
posted @ 2025-03-14 09:20 vx_guanchaoguo0 阅读(252) 评论(0) 推荐(0)
摘要: 服务器 from BaseHTTPServer import HTTPServer, BaseHTTPRequestHandler import json data = {'result': 'this is a test'} host = ('localhost', 8888) class Req 阅读全文
posted @ 2025-03-13 08:59 vx_guanchaoguo0 阅读(16) 评论(0) 推荐(0)
摘要: 根据具体的post json data 转发 location ~*\/api/v4/(objects|warning)(.*)/ { access_by_lua ' local transfer_request_query = ngx.req.get_uri_args() local res = 阅读全文
posted @ 2025-03-12 09:29 vx_guanchaoguo0 阅读(39) 评论(0) 推荐(0)
摘要: 第三方库实现代码实现 from transitions import Machine # 定义一个自己的类 class Matter(object): pass model = Matter() """ liquid - - - - melt - - evaporate - - - sublimat 阅读全文
posted @ 2025-03-06 20:39 vx_guanchaoguo0 阅读(35) 评论(0) 推荐(0)
摘要: SOP Start of Packet [SOP] [Length] [Data] [CRC] 常见的协议 [SOP][LEN] [CMD] [SESSION_ID] [Data] [CRC] 阅读全文
posted @ 2025-03-05 11:19 vx_guanchaoguo0 阅读(8) 评论(0) 推荐(0)
摘要: 前导0 四位填充 "{:0>4}".format(random.randint(1, 1)) 三位浮点数 '{:.3f}'.format(package['time']) 阅读全文
posted @ 2025-01-18 15:12 vx_guanchaoguo0 阅读(9) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 ··· 68 下一页