Skip to content

Instantly share code, notes, and snippets.

View skovtunenko's full-sized avatar
🤠

Sergio Kovtunenko skovtunenko

🤠
View GitHub Profile
@asukakenji
asukakenji / go-stdlib-interface-selected.md
Last active May 19, 2024 18:37
Go (Golang) Standard Library Interfaces (Selected)

Go (Golang) Standard Library Interfaces (Selected)

This is not an exhaustive list of all interfaces in Go's standard library. I only list those I think are important. Interfaces defined in frequently used packages (like io, fmt) are included. Interfaces that have significant importance are also included.

All of the following information is based on go version go1.8.3 darwin/amd64.

@marianogappa
marianogappa / ordered_parallel.go
Last active February 12, 2024 09:27
Parallel processing with ordered output in Go
/*
Parallel processing with ordered output in Go
(you can use this pattern by importing https://github.com/MarianoGappa/parseq)
This example implementation is useful when the following 3 conditions are true:
1) the rate of input is higher than the rate of output on the system (i.e. it queues up)
2) the processing of input can be parallelised, and overall throughput increases by doing so
3) the order of output of the system needs to respect order of input
- if 1 is false, KISS!
@honkskillet
honkskillet / byte-sizetuts.md
Last active June 18, 2022 14:18
A series of golang tutorials with youtube videos.
@colinrymer
colinrymer / continuous_delivery_manifesto.md
Last active April 7, 2019 10:41
A manifesto on continuous delivery

When developing a process for deployment of production code, several key concepts should be held as critical:

Above all else, the most important thing is a working production system. This is where all business value is derived and therefore, it must be maintained in a suitable state.

The main working branch of the code base should always be ready to be deployed. Changes committed to this branch must not prevent the deployment of code. If they do, immediate priority should be directed at fixing the broken code. If