Andrew Ekstedt
Andrew Ekstedt
You can probably use `./-`.
Instead of removing `-Werror`, it would be better to add `-Wno-error=deprecated-declarations`.
> A property of openat is that it follows a file across renames: If you open a directory, rename the directory, and use openat on the still-open FD, access is...
The official pokedex is wrong. It also shows no evolution data for Obstagoon, Perserrker, Cursola, or Sirfetch'd.
@bonettboris That sounds unrelated. Please file a [new issue](https://github.com/PokeAPI/pokeapi/issues/new?assignees=&labels=&template=bug_report.md) and include the url of the page that gives you a 404.
Hi! Thanks for your interest in this project. I'm definitely interested in adding Argon2i. I actually played with an argon2i implementation a while ago, but i never pushed it because...
You can put more than one statement in an else if clause too, sort of... ``` if a, b := 1, 3; a == b { panic("error") } else if...
@jub0bs Looks like your latest DecodeRune solution would work for DecodeRuneInString too. ```go func DecodeRuneInString(s string) (r rune, size int) { for _, b := range []byte(s) { if b...
> > What does go doc do with one underscore and one non-underscore return? > We could say that all return parameters must start with an _ for this feature...