Code Snippets

Language: Go

JSON Marshal and Unmarshal in Go

Encode and decode structs with the encoding/json stdlib.

Author: chris

HTTP GET in Go

Make an HTTP GET with net/http and read the body.

Author: chris

Write a File in Go

Atomically write bytes to disk with os.WriteFile.

Author: chris

Read a File to String in Go

Read an entire file into memory with os.ReadFile.

Author: chris