Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joanlopez/golang-snippets
https://github.com/joanlopez/golang-snippets
Last synced: about 8 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/joanlopez/golang-snippets
- Owner: joanlopez
- Created: 2020-12-05T22:10:07.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-01-29T22:13:53.000Z (almost 4 years ago)
- Last Synced: 2024-06-19T04:27:02.674Z (5 months ago)
- Language: Go
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Go Snippets
Collection of useful Go snippets.
### Files
Read
- [Line by line](./files/read/read.go#L9-L23)
- [Word by word](./files/read/read.go#L25-L40)
- [Rune by rune](./files/read/read.go#L42-L65)
- [Byte by byte](./files/read/read.go#L67-L90)### TCP
HTTP
- [Custom request type](./tcp/http/request.go#L3-L9)
- [Read request from net.Conn](./tcp/http/http.go#L11-L63)