摘要:
1、只克隆某个分支到本地git clone -b <branch> <remote_repo>例如:git clone -b xyz ssh://***@xxx.com:29418/aaa/bbb/ccc && scp -p -P 29418 ***@gerrit.xxx.com:hooks/com 阅读全文
摘要:
1、只克隆某个分支到本地git clone -b <branch> <remote_repo>例如:git clone -b xyz ssh://***@xxx.com:29418/aaa/bbb/ccc && scp -p -P 29418 ***@gerrit.xxx.com:hooks/com 阅读全文
摘要:
mvn compile -e 编译mvn package 打包mvn clean install 清除本地库并且重新从maven库中拉取jar包进行编译 阅读全文
摘要:
1、以指定时格式显示时间 2000-03-12 22:30:22 2、计算百分比 3、sed替换 4、shell中加法计算 阅读全文
摘要:
升级docker到1.12后,发现使用原来的/etc/sysconfig/docker文件中设置--insecure-registry的方式,访问registry失败,提示“http: server gave HTTP response to HTTPS client”。 多方搜索后,原来是dock 阅读全文
摘要:
.dockerignore file Before the docker CLI sends the context to the docker daemon, it looks for a file named .dockerignore in the root directory of the 阅读全文
摘要:
怎么在go语言中使用google protocol Buffer呢?1、下载相应的proto版本:https://github.com/google/protobuf/releases2、把bin下的protoc文件 copy到GOPATH目录和/usr/local/bin目录里3、下载protoc 阅读全文
摘要:
转自:http://www.kuqin.com/shuoit/20140303/338368.html山坡网需要能够每周给注册用户发送一封名为“本周最热书籍”的邮件,而之前一直使用的腾讯企业邮箱罢工了,提示说发送请求太多太密集。一番寻找之后发现了大家口碑不错的搜狐SendCloud服务,看了看文档,... 阅读全文
摘要:
go没有工程文件的概念,是通过目录结构来体现工程的结构关系。因此,在习惯了VC的那种工程文件组织形式的情况下,刚开始接触go有点不适应,一下子没有理解环境变量GOPATH的意义。最开始看go的教程时,学写代码时,只在GOPATH里设置了一个目录。该目录下有src、bin、pkg三个目录,不同应用的代... 阅读全文
摘要:
写一个简单的key-value数据库,实现下面几个接口。db:new() => Db.db:destroy(Db) => ok.db:write(Key, Element, Db) => NewDb.db:delete(Key, Db) => NewDb.db:read(Key, Db) =>{ok... 阅读全文
摘要:
一、服务器设计1. 注册端口;2. 监听端口 —— ListenTCP( );3. 接收请求 —— Accept( );4. 接收数据 或 发送数据 —— Read( ) 或 Write( );// Server.gopackage mainimport "fmt"import "os"import... 阅读全文
|