tech.lgbt is one of the many independent Mastodon servers you can use to participate in the fediverse.
We welcome all marginalized identities. This Mastodon instance is generally for folks who are LGBTQIA+ and Allies with an interest in tech work, academics, or technology in general.

Server stats:

2.9K
active users

In response to @cadey's blog post about wanting retry loops in , I wrote terrible hack using using the proposed iterator syntax. go.dev/play/p/6N6CPeHuhrk?v=go

var err error
for range backoff(&err, 1 * time.Second) {
if err = something1(); err != nil {
continue
}
if err = something2() ; err != nil {
continue
}
}

go.devGo Playground - The Go Programming Language