From 30db0f9cf72aef122678f7ae9235dd4854e309a1 Mon Sep 17 00:00:00 2001 From: eryajf Date: Sat, 10 Jul 2021 17:34:40 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=96=B0=E5=A2=9E=E7=AC=AC27=E5=91=A8?= =?UTF-8?q?=E5=86=85=E5=AE=B9]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/learningweekly/2021.md | 110 ++++++++++++++++++++++++++++++++++++ 1 file changed, 110 insertions(+) diff --git a/docs/learningweekly/2021.md b/docs/learningweekly/2021.md index fda8c21..fefe342 100644 --- a/docs/learningweekly/2021.md +++ b/docs/learningweekly/2021.md @@ -891,8 +891,118 @@ +## 11,第27周-7月05–7月12 + + +### **1,开源项目** + +> - 项目地址:[excelize](https://github.com/360EntSecGroup-Skylar/excelize) +> - 项目说明:golang操作 Office Excel 文档类库,简单易用,很不错,主要是有全面的中文文档。 +> - 相关文章:[中文文档](https://xuri.me/excelize/zh-hans/) + +### **2,优秀文章** + +> - [vscode基本使用教程](https://www.xiebruce.top/1719.html) +>- 如题 + +---- + +> - [etcd 性能测试与调优](https://mp.weixin.qq.com/s/W7GzRMtVS6YWHP89bLUDpA) +> - 如果更换域名,需要注意的点 + +---- + +> - [Go语言中使用正则提取匹配的字符串](https://www.flysnow.org/2018/02/09/go-regexp-extract-text.html) +> - 有些场景中,使用正则提取字符串会更加方便 + +---- + +> - https://stackoverflow.com/questions/5518434/git-url-structure +> - 正则解析GitLab-HTTPURL + +---- + +> - [Go语言中使用正则提取匹配的字符串](https://www.flysnow.org/2018/02/09/go-regexp-extract-text.html) +> - 有些场景中,使用正则提取字符串会更加方便 + +--- + +> - [confluence api接口文档](https://developer.atlassian.com/cloud/confluence/rest/api-group-content---children-and-descendants/#api-api-content-pageid-move-position-targetid-put) +> - 如题 + +--- + +> - [golang获取重定向后的地址](https://www.cnblogs.com/xiaohunshi/p/12244962.html) +> +> - golang的http-client获取URL默认不会拿重定向后的内容,本文给了解决方案 +> +> ```go +> func GetPicUrl() string { +> url := "https://api.btstu.cn/sjbz/?lx=m_meizi" +> client := &http.Client{ +> CheckRedirect: func(req *http.Request, via []*http.Request) error { +> return http.ErrUseLastResponse +> }, +> } +> resp, err := client.Get(url) +> if err != nil { +> fmt.Printf("client get err:%v\n", err) +> } +> defer resp.Body.Close() +> +> return resp.Header.Get("Location") +> } +> ``` +> +> +--- + +> - [Golang中使用结构体切片指针的方法](https://www.perfcode.com/p/golang-struct-slice-pointer.html) +> - 如题 + +--- + +> - [Golang中[]byte与string转换](https://segmentfault.com/a/1190000037679588) +> - 如题 + +--- + +> - [gitlab-url正则](https://stackoverflow.com/questions/5518434/git-url-structure) +> - 通过正则,我们能够很方便的做一些字符串分割的操作,经过这几次写代码的运用,深有体会 + +### **3,优秀博客** + +> - 博客地址:https://hefollo.com/ +> +> - 简单说明:一个图片站点,可以通过api调用随机展示图片 +> +> ![image-20210704221459719](https://tva3.sinaimg.cn/large/008k1Yt0gy1gsbzkozb99j31vc19c4qp.jpg) +---- + +> - 博客地址:[前端开发规范](https://standard.zhangling.me/) +> - 简单说明:里边讲解了各种生产规范 + +---- + +> - 博客地址:[运维随笔](https://wandouduoduo.github.io/) +> - 简单说明:运维博客,作者分享了不少关于运维工作的思考 + +---- + +> - 博客地址:[秋染蒹葭](https://zhyjor.github.io/) +> - 简单说明:前端博主,内容质量高且深刻 + +---- + +> - 博客地址:[小楼一夜听春雨,深巷明朝卖杏花](https://blog.csdn.net/qq_34556414) +> - 简单说明:运维,Jenkins,K8S,作者文章深入运维本质,值得拜读 + +--- +> - 博客地址:[Debug客栈](https://www.debuginn.cn/) +> - 简单说明:go,热衷分享 + \ No newline at end of file -- GitLab