13.学习周刊-总第100期-2023年第13周.md 3.8 KB
Newer Older
E
eryajf 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
---
title: 学习周刊-总第100期-2023年第13周
date: 2023-03-31 08:35:17
permalink: /pages/6a3264/
categories:
  - 周刊
  - 学习周刊
  - 2023年
tags:
  -
feed:
  enable: true
description: 学习周刊-总第100期-go语言版本的elasticsearch与Mac上传歌曲到网易云盘的插件
---


### 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/) 查看汇总周刊。


### 1,优秀项目

---
- 项目地址:[zincsearch](https://github.com/zinclabs/zincsearch)
- 项目说明:一款对标 ElasticSearch 搜索的 go 语言版本,目前查询界面等还比较简陋。
  ![](http://t.eryajf.net/imgs/2023/02/666a8875045c530c.jpg)
- 相关文章:[README](https://github.com/zinclabs/zincsearch#readme)
---
- 项目地址:[netease-cloud-disk-music-upload](https://github.com/ydq/netease-cloud-disk-music-upload)
- 项目说明:Mac 电脑的网易云音乐一直无法上传本地音乐到云盘,这个插件完美支持了这个功能,目前很好用,大赞开发者。
  ![](http://t.eryajf.net/imgs/2023/02/0f3f100028f0f618.jpg)
- 相关文章:[README](https://github.com/ydq/netease-cloud-disk-music-upload#readme)
---
- 项目地址:[ship](https://github.com/xgfone/ship)
- 项目说明:一个灵活、强大、高性能和极简主义的 Go Web HTTP 路由器框架。看了下示例,感觉预发很清晰简洁,可以一式。
41
```go
E
eryajf 已提交
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
  // example.go
package main

import (
	"github.com/xgfone/ship/v5"
	"github.com/xgfone/ship/v5/middleware"
)

func main() {
	router := ship.New()
	router.Use(middleware.Logger(), middleware.Recover()) // Use the middlewares.

	router.Route("/ping").GET(func(c *ship.Context) error {
		return c.JSON(200, map[string]interface{}{"message": "pong"})
	})

	group := router.Group("/group")
	group.Route("/ping").GET(func(c *ship.Context) error {
		return c.Text(200, "group")
	})

	subgroup := group.Group("/subgroup")
	subgroup.Route("/ping").GET(func(c *ship.Context) error {
		return c.Text(200, "subgroup")
	})

	// Start the HTTP server.
	ship.StartServer(":8080", router)
	// or
	// http.ListenAndServe(":8080", router)
}
```
- 相关文章:[README](https://github.com/xgfone/ship#readme)
---
- 项目地址:[localsend](https://github.com/localsend/localsend)
- 项目说明:Air Drop 的开源跨平台替代品。
  ![](http://t.eryajf.net/imgs/2023/02/1dd9e1b65e2068c7.png)
- 相关文章:[README](https://github.com/localsend/localsend#readme)
---
- 项目地址:[MusicFree](https://github.com/maotoumao/MusicFree)
- 项目说明:一个插件化、定制化、无广告的免费音乐播放器,目前只支持 Android 和 Harmony OS。
- 相关文章:[README](https://github.com/maotoumao/MusicFree#readme)
---

### 2,优秀文章

---
- [视频生产大镜像优化实践](https://mp.weixin.qq.com/s/ygVck9LsQWVFQcnsxRSsqw)
- 如题
---
- [教你如何像专家一样使用console](https://mp.weixin.qq.com/s/oIpfW1Klu9Z5CWjxoflTsA)
- 如题
---

### 3,优秀博客

---
- 博客地址:[Verne in GitHub](https://blog.einverne.info/)
- 简单说明:博客坚持时间真长,内容涉猎广泛
---
- 博客地址:[陶小桃 北航在读硕士,Python爱好者](https://www.52txr.cn/)
- 简单说明:博客内容涉猎广泛,很优秀
---
- 博客地址:[workspace](https://www.workspaces.xyz/)
  ![](http://t.eryajf.net/imgs/2023/03/4a5c64f48780da00.png)
- 简单说明:这个站点记录了各种桌面,可以参考。
---