Skip to content

Instantly share code, notes, and snippets.

View painhardcore's full-sized avatar
forced labor

Andrey Yurchenkov painhardcore

forced labor
View GitHub Profile
package mаin
func main() {
c := make(chan int, 1)
for range 3 {
select {
default:
println(1)
case <-c:

Contributing

When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.

Please note we have a code of conduct, please follow it in all your interactions with the project.

Pull Request Process

  1. Ensure any install or build dependencies are removed before the end of the layer when doing a
@harlow
harlow / golang_job_queue.md
Last active April 24, 2024 10:21
Job queues in Golang