--- title: 学习周刊-总第137期-2023年第50周 date: 2023-12-14 23:52:34 permalink: /pages/854f9d/ categories: - 周刊 - 学习周刊 - 2023年 tags: - feed: enable: true description: 学习周刊-总第137期-一个docker-compose管理面板和一个ldap认证库 --- ### 0 ,前言 周刊维护在:[https://github.com/eryajf/learning-weekly](https://github.com/eryajf/learning-weekly) 欢迎投稿,推荐或自荐项目 /文章 /博客,请提交 issue 。 周刊核心为运维周刊,还会侧重Go语言生态,Vue相关技术生态的项目,以及 GitHub 上优秀项目或经验。 你也可以在我的博客 [https://wiki.eryajf.net/learning-weekly/](https://wiki.eryajf.net/learning-weekly/) 查看汇总周刊。 🔥 有不少人想单独从博客通过 RSS 订阅周刊的更新,现在它来了,你可以使用这个[🔗 链接](https://wiki.eryajf.net/learning-weekly.xml)进行订阅。 ### 1,优秀项目 --- - 项目地址:[dockge](https://github.com/louislam/dockge) - 项目说明:一款精美的 docker-compose 管理控制台工具。 ![](https://t.eryajf.net/imgs/2023/12/1702130156068.png) - 相关文章:[README](https://github.com/louislam/dockge#readme) --- - 项目地址:[dappy](https://github.com/nerney/dappy) - 项目说明:一个可以让你快速将 go 项目对接 ldap 的库。示例代码如下: ```go func main() { var client dappy.Client var err error // create a new client if client, err = dappy.New(dappy.Config{ BaseDN: "dc=example,dc=com", Filter: "uid", ROUser: dappy.User{Name: "cn=read-only-admin,dc=example,dc=com", Pass: "password"}, Host: "ldap.forumsys.com:389", }); err != nil { panic(err) } // username and password to authenticate username := "tesla" password := "password" // attempt the authentication if err := client.Auth(username, password); err != nil { panic(err) } else { log.Println("Success!") } } ``` - 相关文章:[README](https://github.com/nerney/dappy#readme) --- - 项目地址:[hyperdx](https://github.com/hyperdxio/hyperdx) - 项目说明:一个开源可观察性平台,统一会话重放、日志、指标、跟踪和错误。 ![](https://t.eryajf.net/imgs/2023/11/1701105518370.png) - 相关文章:[README](https://github.com/hyperdxio/hyperdx#readme) --- - 项目地址:[vue-draggable-plus](https://github.com/Alfred-Skyblue/vue-draggable-plus) - 项目说明:支持 Vue 2 和 Vue 3 的拖拽组件 - 相关文章:[README](https://github.com/Alfred-Skyblue/vue-draggable-plus#readme) --- - 项目地址:[sun-panel](https://github.com/hslr-s/sun-panel) - 项目说明:一个 NAS 导航面板、Homepage、浏览器首页。 ![](https://t.eryajf.net/imgs/2023/11/1701149933180.jpg) - 相关文章:[README](https://github.com/hslr-s/sun-panel#readme) --- - 项目地址:[k8s-tutorial-cn](https://github.com/chaseSpace/k8s-tutorial-cn) - 项目说明:作者整理的中文 k8s 教程,适合初学者阅读 - 相关文章:[README](https://github.com/chaseSpace/k8s-tutorial-cn#readme) --- - 项目地址:[chaosblade](https://github.com/chaosblade-io/chaosblade) - 项目说明:阿里巴巴开源的一款简单易用、功能强大的混沌实验注入工具 ![](https://t.eryajf.net/imgs/2023/12/1701739533433.png) - 相关文章:[README](https://github.com/chaosblade-io/chaosblade/blob/master/README_CN.md) --- ### 2,优秀文章 --- - [基于sharedLibrary进行CICD流程的优化](https://www.iblog.zone/archives/%E5%9F%BA%E4%BA%8Esharedlibrary%E8%BF%9B%E8%A1%8Ccicd%E6%B5%81%E7%A8%8B%E7%9A%84%E4%BC%98%E5%8C%96/) - 质量很高的长文,值得学习研究 --- - [分享一些 Go 在全栈开发中的经验](https://v2ex.com/t/996257#reply33) - 如题 --- - [Jumpserver-v2无法连接 windows 主机的问题根因](https://github.com/jumpserver/jumpserver/issues/7892#issuecomment-1158383426) - 如题 --- ### 3,优秀博客 --- - 博客地址:[高哲技术博客](https://www.gaozhe.net/) - 简单说明:编程,爬虫以及硬件 --- - 博客地址:[慕雪的寒舍](https://blog.musnow.top/) - 简单说明:热爱记录 ---