摘要: package main import ( "fmt" "strings" "sync" "time" "github.com/google/uuid" ) func NewPubSub() *PubSubTrie { return &PubSubTrie{} } type PubSubTrie s 阅读全文
posted @ 2022-11-21 14:50 耀耀王 阅读(68) 评论(0) 推荐(0) 编辑
摘要: func StructToMap(v interface{}) (map[string]interface{}, error) { values := map[string]interface{}{} bytes, err := json.Marshal(v) if err != nil { ret 阅读全文
posted @ 2022-11-18 13:08 耀耀王 阅读(21) 评论(0) 推荐(0) 编辑
摘要: package main import ( "fmt" "regexp" "strings" ) var matchNonAlphaNumeric = regexp.MustCompile(`[^a-zA-Z0-9]+`) var matchFirstCap = regexp.MustCompile 阅读全文
posted @ 2022-11-18 11:29 耀耀王 阅读(494) 评论(0) 推荐(0) 编辑
摘要: x = set() y = set() with open('note.txt', 'r') as f: lines = f.readlines() for line in lines: x.add(line) with open('note1.txt', 'r') as f: lines = f. 阅读全文
posted @ 2021-12-30 15:36 耀耀王 阅读(58) 评论(0) 推荐(0) 编辑
摘要: uA电流测量,合宙又添一神器 IoTPower 做嵌入式物联网开发的同学都知道,功耗控制是物联网设备很重要的一环。智能门锁的休眠功耗要低于50uA,户外传感器使用寿命要在一年以上,针对小电流的测量,一直是一个难题。常用的有以下方法: 使用万用表。 万用表有uA/mA/A的挡位,电流表笔有电流表笔的插 阅读全文
posted @ 2021-12-11 13:02 耀耀王 阅读(3424) 评论(0) 推荐(1) 编辑
摘要: 经常会有人说嵌入式开发,嵌入式开发千差万别,我总体上分为4个等级 微电子开发 RTOS开发 脚本开发 富应用开发 微电子开发 这一类产品行为比较固定,比如说电视遥控器,遥控汽车,电饭煲,恒温烧水壶,温湿度传感器,智能门锁等。这些设备行为都比较简单,通过按钮可以设置系统功能和行为。代码量不大,经常会选 阅读全文
posted @ 2021-11-17 17:03 耀耀王 阅读(1737) 评论(0) 推荐(0) 编辑
摘要: docker run --name redis -p 6379:6379 -d --restart=always redis:latest redis-server --appendonly yes --requirepass "xxxx1234" 阅读全文
posted @ 2021-11-10 09:20 耀耀王 阅读(26) 评论(0) 推荐(0) 编辑
摘要: docker pull mysql #启动docker run --name mysql -p 3306:3306 -e MYSQL_ROOT_PASSWORD=yaoyao1234 -d mysql #进入容器docker exec -it mysql bash #登录mysqlmysql -u 阅读全文
posted @ 2021-11-10 09:19 耀耀王 阅读(21) 评论(0) 推荐(0) 编辑
摘要: docker run --name nacos-standalone -e MODE=standalone -e JVM_XMS=512m -e JVM_XMX=512m -e JVM_XMN=512m -p 8848:8848 -d nacos/nacos-server:latest 阅读全文
posted @ 2021-11-08 13:41 耀耀王 阅读(27) 评论(0) 推荐(0) 编辑
摘要: docker run -d -p 8500:8500 -p 8300:8300 -p 8301:8301 -p 8302:8302 -p 8600:8600/udp consul consul agent -dev -client=0.0.0.0 阅读全文
posted @ 2021-11-07 07:46 耀耀王 阅读(30) 评论(0) 推荐(0) 编辑