Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/febelery/go-practice
practice
https://github.com/febelery/go-practice
epoll gin go grpc practice protobuf tcp
Last synced: about 2 months ago
JSON representation
practice
- Host: GitHub
- URL: https://github.com/febelery/go-practice
- Owner: febelery
- Created: 2018-11-25T09:29:30.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-05-13T10:36:18.000Z (over 5 years ago)
- Last Synced: 2024-11-15T22:23:27.149Z (2 months ago)
- Topics: epoll, gin, go, grpc, practice, protobuf, tcp
- Language: Go
- Size: 280 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# go practice
# 资源
- https://books.studygolang.com/The-Golang-Standard-Library-by-Example/
- https://github.com/the-benchmarker/web-frameworks
- https://github.com/derekparker/delve
- https://studygolang.com/pkgdoc
- https://github.com/astaxie/build-web-application-with-golang/blob/master/zh/preface.md
- https://github.com/StefanSchroeder/Golang-Regex-Tutorial (regex)
- https://studygolang.com/pkgdoc# 快捷键
## 文件相关快捷键:
CTRL+E,打开最近浏览过的文件。
CTRL+SHIFT+E,打开最近更改的文件。
CTRL+N,可以快速打开struct结构体。
CTRL+SHIFT+N,可以快速打开文件。## 代码格式化:
CTRL+ALT+T,可以把代码包在一个块内,例如if{…}else{…}。
CTRL+ALT+L,格式化代码。
CTRL+空格,代码提示。
CTRL+/,单行注释。CTRL+SHIFT+/,进行多行注释。
CTRL+B,快速打开光标处的结构体或方法(跳转到定义处)。
CTRL+“+/-”,可以将当前方法进行展开或折叠。## 查找和定位
CTRL+R,替换文本。
CTRL+F,查找文本。
CTRL+SHIFT+F,进行全局查找。
CTRL+G,快速定位到某行。## 代码编辑
ALT+Q,可以看到当前方法的声明。
CTRL+Backspace,按单词进行删除。
SHIFT+ENTER,可以向下插入新行,即使光标在当前行的中间。
CTRL+X,删除当前光标所在行。
CTRL+D,复制当前光标所在行。
ALT+SHIFT+UP/DOWN,可以将光标所在行的代码上下移动。
CTRL+SHIFT+U,可以将选中内容进行大小写转化。
CTRL+SHIFT+SPACE,自动补全代码
ALT+ENTER 检查并修复CTRL+O,实现接口的所有方法
## 界面切换
ALT+1,打开/关闭Project窗口
ALT+2,打开/关闭Favorites窗口
ALT+7,打开文件方法列表## command
```bash
go run crawler_distributed/main.go --itemsaver_host=":1234" --worker_hosts=":9000,:9001"
```