Chrome浏览器插件
摘要:1、目录生成 (1)Smart TOC 好用支持二级标题,看起来很舒服。 问题:可能挡内容。收起不是很方便,只能靠关闭插件,或者交费可以放大缩小。 (2)onetoc【没上架,需要手动下载zip】 下载zip:https://github.com/Whilconn/one-toc/releases
阅读全文
posted @
2023-03-15 14:14
西伯尔
阅读(11)
推荐(0) 编辑
channel原理
摘要:一个buf是循环队列 两个指向循环队列的指针 两个指向阻塞协程的指针 参考: https://cloud.tencent.com/developer/article/1750350
阅读全文
posted @
2023-03-07 18:12
西伯尔
阅读(11)
推荐(0) 编辑
open eyes:技术hang
摘要:1、版本控制规则:Semantic Versioning 官网:https://semver.org/ Introduction In the world of software management there exists a dreaded place called “dependency h
阅读全文
posted @
2023-03-03 01:51
西伯尔
阅读(6)
推荐(0) 编辑
go的select
摘要:case语句: 1、select会监听case语句中channel的读写操作,当case中channel读写操作为非阻塞状态(即能读写)时,将会触发相应的动作。 2、select中的case语句必须是一个channel操作,select中的default子句总是可运行[不是必运行]的。 case执行
阅读全文
posted @
2023-03-02 17:32
西伯尔
阅读(17)
推荐(0) 编辑