摘要:
he把字符转化为实体字符 Clipboard_API 访问剪贴板 pinyin 将汉字转化为拼音 pinyinjs 汉字与拼音互转的小巧web工具库 localforage 浏览器缓存数据库 handsontable 电子表格的数据网格编辑器 Excel Wordnik API 请求定义,例句,拼写 阅读全文
摘要:
## 其他命令 ``` 重绘屏幕 挂起vim回到shell,想继续vim只需要输入 fg 文件路径提示 当前文件中的关键字提示 语义上的补全 J 于下一行文本合并 % 在括号间跳转,配合v可以选中代码块 ~ 光标下的字符转化为大写 :66,70s/^/\/\/ 66-70行添加 //注释 :66,7 阅读全文
摘要:
配置 { type: 'custom', data: uds.map((e, i) => [i, ...e.oclh]), encode: { x: 0, y: [1, 2, 3, 4], tooltip: [1, 2, 3, 4], }, renderItem: this.US_Line, } / 阅读全文
摘要:
这样做的目的是避免循环引用,编写多余的类型文件 //global.d.ts import type { A } from "./a"; import type { B } from "./b"; declare global { var a: A; var b: B; } //index.ts im 阅读全文
摘要:
## log.Fatal 相当于 `Print` 后调用 `os.Exit(1)` ```go import "log" func main() { defer func() { log.Println("main exit") }() log.Println("main run") log.Fat 阅读全文
摘要:
``` 清空 保存 ``` 阅读全文
摘要:
> git clone -b 'v5.4.0' https://github.com/lua/lua.git > cd lua > vim CMakeLists.txt > cmake -DCMAKE_BUILD_TYPE=Release -S . -B build > cmake --build 阅读全文
摘要:
HTTP 协议 访问 IPv6 地址 curl http://[fe80::79c8:7bd1:cf97:aef3%8]:80 使用代理 curl --socks5-hostname 127.0.0.1:19996 http://www.google.com/ curl -x socks5://12 阅读全文
摘要:
一段示例代码 package main type info struct { Name string Hp uint32 Mp uint32 } // 值方法 func (my info) PrintName() { println(my.Name) println(my.Name) } // 指针 阅读全文
摘要:
// 从 DataView 类型中取出key type get_set = keyof Omit<DataView, "buffer" | "byteLength" | "byteOffset">; type FilterNotStartingWith<Set, Needle extends str 阅读全文
摘要:
申请token 在.git/config文件中修改 修改前: [core] repositoryformatversion = 0 filemode = false bare = false logallrefupdates = true symlinks = false ignorecase = 阅读全文
摘要:
let count = 0, maxCount = 3; function event() { count += 1; console.log(count); return count < maxCount; } let prev = 0; const t = 1000; // 1秒 functio 阅读全文