摘要: 转载 https://www.cnblogs.com/YaoDD/p/5504881.html 1、安装gRPC runtime 为了自动生成Golang的gRPC代码,需要安装protocal buffers compiler以及对应的GoLang插件 2、protocal buffer安装 从h 阅读全文
posted @ 2018-12-04 15:49 一沐春风 阅读(323) 评论(0) 推荐(0) 编辑
摘要: package main import ( "fmt" "sync" ) func print(idx int, wg *sync.WaitGroup) { fmt.Printf("index %d: \n", idx) wg.Done() } func main() { var wg sync.WaitGroup for i := 0; i... 阅读全文
posted @ 2018-12-04 10:08 一沐春风 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-12-04 10:00 一沐春风 阅读(162) 评论(0) 推荐(0) 编辑
摘要: apt-get install git 配置用户名及邮箱 git config --global user.name "yourName" git config --global user.email "yourAddress" 生成密钥: ssh-keygen -C 'yourAddress' - 阅读全文
posted @ 2018-12-04 09:57 一沐春风 阅读(106) 评论(0) 推荐(0) 编辑
摘要: apt-get update apt-get install openssh-server 修改配置文件 vim /etc/ssh/sshd_config -> PermitRootLogin without password 修改为PermitRootLogin yes 重启服务 service 阅读全文
posted @ 2018-12-04 09:52 一沐春风 阅读(223) 评论(0) 推荐(0) 编辑
摘要: [share] comment = Share Stuff path = /usr/work browseable = yes public = yes guest ok = yes security = share create mask = 0777 writable = yes directo 阅读全文
posted @ 2018-12-04 09:46 一沐春风 阅读(426) 评论(0) 推荐(0) 编辑
摘要: package main import "fmt" func main(){ fmt.Println("hello world") } 阅读全文
posted @ 2018-12-04 09:29 一沐春风 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 以下操作基于word2007,以及visio2003。 1. 也许你所不知道的 Office是微软公司开发的办公软件,包括Word,PPT,Excel等,但office≠办公软件 && 办公软件≠office 除了微软的office系列以外,还有苹果公司的iWork,谷歌的Docs,金山的WPS等 阅读全文
posted @ 2014-05-29 10:52 一沐春风 阅读(497) 评论(0) 推荐(0) 编辑
摘要: 所有资料来源于网络,老鸟请直接跳过。 命令是什么? 命令是一切程序启须途径,事实上,点击桌面图标就是启动命令 搜狗浏览器为例: 快捷方式→目标,目标里面就是双击图标时系统真正执行的命令,"D:\Program Files\SogouExplorer\SogouExplorer.exe",这个命令分为 阅读全文
posted @ 2014-05-28 19:46 一沐春风 阅读(1205) 评论(0) 推荐(0) 编辑
摘要: 第一个博客,权作试验 阅读全文
posted @ 2014-05-27 17:28 一沐春风 阅读(80) 评论(0) 推荐(0) 编辑