[Vim] Vim快捷键键位图

Vim快捷键键位图 经典版 简体中文版 不同编辑模式版 入门版 进阶版 增强版 文字版 参考 Vim快捷键键位图 史上最全Vim快捷键键位图

[Linux] lsof Command Examples

lsof(list open files)是一个列出当前系统打开文件的工具。 用于查看你进程开打的文件,打开文件的进程,进程打开的端口(TCP、UDP)

[Go] How to Efficiently Concatenate Strings in Go

How to Efficiently Concatenate Strings in Go 7种拼接方式 String Concat 1 str += "hello-world" String Sprintf 1 str = fmt.Sprintf("%s%s", str, "hello-world") String Join 1 str = strings.Join([]string{str, "hello-world"}, "") Buffer Write 1 2 3 buf := new(bytes.Buffer) buf.WriteString("hello-world") str := buf.String() Bytes Append 1 2 3 4 var b []byte s := "hello-world" b = append(b, s...) str := string(b) String Copy 1 2