Goadmin Tutorial

Read more →

Asambly Language Tutorial

Read more →

using-ipython-with-lsp.org

Some Description
Read more →

go module tutorial

Go Module 工程模块化 创建一个叫hello的模块 目录/home/gopher/hello package hello func Hello() string { return "Hello, world." } hello_test测试文件 package hello import "testing" func TestHello(t *testing.T) { want := "Hello, world." if got := Hello(); got != want { t.Errorf("Hello() = %q, want %q", got, want) } } 测试一下 $ go test PASS ok _/home/gopher/hello 0.020s $ 初始化模块 go mod init example.com/hello go test // 下载依赖并缓存 添加依赖 package hello import "rsc.io/quote" func Hello() string { return quote.
Read more →

goful awesome finder

G# Goful 本项目基于anmitsu/goful,进行了自己的配置 Goful 跨平台的简单快捷终端文件管理器 跨平台 多窗口,多工作区 命令行执行bash和tmux 模糊查找, 异步拷贝, 文件块, 批量重命名等 安装 Go version >= 1.16 $ go install github.com/linuxing3/goful@latest ... $ goful Go version < 1.16 $ go get github.com/linuxing3/goful ... $ goful 用法 Tutorial Demos key function C-n down j Move cursor down C-p up k Move cursor up C-a home u Move cursor top C-e end G Move cursor bottom C-f C-i right l Move cursor right C-b left h Move cursor left C-d More move cursor down C-u More move cursor up C-v pgdn Page down M-v pgup Page up M-n Scroll down M-p Scroll up C-h backspace u Change to upper directory ~ Change to home directory \ Change to root directory w Change to neighbor directory C-o Create directory window C-w Close directory window M-f Move next workspace M-b Move previous workspace M-C-o Create workspace M-C-w Close workspace space Toggle mark C-space Invert mark C-l Reload C-m o Open i Open by pager s Sort v View b Bookmark e Editor x Command X External command f / Find : Shell ; Shell suspend n Make file K Make directory c Copy m Move r Rename R Bulk rename by regexp D Remove d Change directory g Glob $ Glob recursive C-g C-[ Cancel q Q Quit 更多信息请查看 main.
Read more →