提交 30db0f9c 编写于 作者: eryajf's avatar eryajf

[新增第27周内容]

上级 93be8b6b
......@@ -891,8 +891,118 @@
<!-- tabs:end -->
## 11,第27周-7月05–7月12
<!-- tabs:start -->
### **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,热衷分享
<!-- tabs:end -->
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册