Skip to content

Instantly share code, notes, and snippets.

View asif31iqbal's full-sized avatar
🙂

Asif Iqbal asif31iqbal

🙂
View GitHub Profile

Keybase proof

I hereby claim:

  • I am asif31iqbal on github.
  • I am asif31iqbal (https://keybase.io/asif31iqbal) on keybase.
  • I have a public key ASBm0K2uHWDp4Dxr2u1-2m2hdd15llI0IitAI013_cp07Qo

To claim this, I am signing this object:

@asif31iqbal
asif31iqbal / limitConcurrentGoroutines.go
Created March 1, 2021 16:08 — forked from AntoineAugusti/limitConcurrentGoroutines.go
Limit the maximum number of goroutines running at the same time
package main
import (
"flag"
"fmt"
"time"
)
// Fake a long and difficult work.
func DoWork() {