Norbert Klar

Results 14 issues of Norbert Klar

Hey! Would like to contribute this project, because I noticed that instead of the log package, this project uses the fmt package for printing error messages, and also, in many...

Can we get a contrast version of this theme? So the toolbars of VsCode, etc are more darker than the text editor window.

enhancement

I think it would make sense that `discordgo.Interaction` type would carry a context with itself, because according to Discord API docs "Interaction tokens are valid for 15 minutes, meaning you...

feature
feedback

Clean up dead or outdated tutorials. Feel free to make a PR.

help wanted
good first issue

Can we expect a Qt 6 upgrade? Arc KDE broke after qBittorrent started using Qt 6.

Can we expect a Qt 6 update?

Atomic package also could be mentioned in the Sync chapter, which provides an alternative to mutexes. https://pkg.go.dev/sync/atomic (Looks like there's already an open issue about it https://github.com/quii/learn-go-with-tests/issues/307 )

I done the complete book - ty @quii btw, it was awesome - and imo would nice to have a small chapter where it would list the most important parts...

Replaced usage of deprecated `ioutil` functions with their correct ones. More info why `ioutil` got deprecated: https://go.dev/doc/go1.16

Using atomics instead of mutexes can improve performance(just a small micro optimization). Also made a benchmark, so you can see the difference. I'd make a PR if interested @schollz ```go...