[hugo] 使用 Hugo 和 Github Pages 搭建属于自己的博客 2022-08-06 hugo 2380 words 5 mins read 记录使用Hugo和Github Pages 搭建博客的过程和方法 Hugo介绍 Hugo是什么,下面是来自官网的介绍: Hugo is one of the most popular open-source static site generators. With its amazing speed and flexibility, Hugo makes Read more...
[Go] Handle 'broken pipe' error in Go 2022-07-31 golang 726 words 2 mins read Handle ‘broken pipe’ error in Go 向一个异常关闭并发送过RST包的TCP连接写入数据时,会发生broken pipe错误。第一次向异常关闭的连接 发送数据时,对端会回 Read more...
[Go] Handle 'connection reset by peer' error in Go 2022-07-31 golang 589 words 2 mins read Handle ‘connection reset by peer’ error in Go TCP连接在对端异常关闭,并发送RST包过来重建连接时,连接会报connection reset by peer错误,正常关闭连接会发送FI Read more...
[Go] time.Time 时间格式处理 2022-07-30 golang 1145 words 3 mins read golang中对时间和日期格式处理 date format in Go golang 时间格式化文档time constants 1 2 3 4 5 6 7 time.Now().UTC().Format("2006-01-02") time.Now().UTC().Format("02/01/2006") time.Now().UTC().Format("2006-01-02 15:04:05") time.Now().UTC().Format(time.RFC3339) Parse date with a timezone 1 2 3 4 s := "2022-07-30T19:12:00+01:00" loc, _ := time.LoadLocation("Europe/Berlin") t, _ := time.ParseInLocation(time.RFC3339, s, loc) fmt.Println(t) 计 Read more...
[Databend] 使用 hyperfine 通过 MySQL 客户端执行基准测试 2022-07-24 databend 461 words 1 min read Databend 是一款开源、弹性、低成本,基于对象存储也可以做实时分析的新式数仓。 部署Databend 参照 Docs - Deploy Databend 完成部署。 安装 hyperfine 根据 hyperfine - installation 的提示安装 hy Read more...