Skip to content

Instantly share code, notes, and snippets.

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

Alexander Chumakov Ichi-1

💨
alias cd='rm -rf'
View GitHub Profile
@Ichi-1
Ichi-1 / 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")