Skip to content

Instantly share code, notes, and snippets.

View mnagy's full-sized avatar

Martin Nagy mnagy

  • Brno, Czech Republic
View GitHub Profile
@steven2358
steven2358 / ffmpeg.md
Last active May 10, 2024 20:57
FFmpeg cheat sheet
@mchirico
mchirico / channelPipe.go
Created February 6, 2016 19:07
Go (Golang) Fan-out example
// Ref: https://blog.golang.org/pipelines
package main
import (
"fmt"
"sync"
)
func gen(done <-chan struct{}, nums ...int) <-chan int {