Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/joanlopez/golang-snippets


https://github.com/joanlopez/golang-snippets

Last synced: about 8 hours ago
JSON representation

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)