Skip to content

Instantly share code, notes, and snippets.

View imtwod's full-sized avatar
💨
alias cd='rm -rf'

Alexander Chumakov imtwod

💨
alias cd='rm -rf'
View GitHub Profile
@imtwod
imtwod / gist:ecf03690ca93fa5e180b3d2d9aa350d7
Created March 11, 2026 11:26
Worker Pool (KPSN Live Coding)
package main
import (
"errors"
"sync"
)
var (
ErrQueueFull = errors.New("task queue is full")
ErrStopped = errors.New("worker pool is stopped")