Skip to content

Instantly share code, notes, and snippets.

View akshaybharambe14's full-sized avatar
🎯
Focusing

Akshay Bharambe akshaybharambe14

🎯
Focusing
View GitHub Profile
// https://play.golang.org/p/6SRS2KScnuu
package main
import (
"fmt"
"sync"
"time"
)
@akshaybharambe14
akshaybharambe14 / expire_workers.go
Created July 3, 2021 06:05
Expire the IDLE worker routines if they don't receive work in specified time/ https://play.golang.org/p/UN-1GGGMfzi
// https://play.golang.org/p/hkAZVC2-H3S
package main
import (
"fmt"
"time"
)
func main() {
@akshaybharambe14
akshaybharambe14 / GitCommitEmoji.md
Created July 10, 2021 12:56 — forked from parmentf/GitCommitEmoji.md
Git Commit message Emoji
@akshaybharambe14
akshaybharambe14 / go-stdlib-interface-selected.md
Created July 14, 2021 09:43 — forked from asukakenji/go-stdlib-interface-selected.md
Go (Golang) Standard Library Interfaces (Selected)

Go (Golang) Standard Library Interfaces (Selected)

This is not an exhaustive list of all interfaces in Go's standard library. I only list those I think are important. Interfaces defined in frequently used packages (like io, fmt) are included. Interfaces that have significant importance are also included.

All of the following information is based on go version go1.8.3 darwin/amd64.