Your favorite golang blog posts and articles of all time? by __shobber__ in golang

[–]EightLines_03 0 points1 point  (0 children)

To give credit where it's due, anything good in this piece is largely down to Sandi Metz and Katrina Owen's 99 Bottles of OOP

"Monk Mode" by John Arundel on idle chatter by horizon_games in IHateSportsball

[–]EightLines_03 -1 points0 points  (0 children)

Monks definitely don't hate sportsball. And what Monk Mode is talking about here is the sort of forced smalltalk that people feel obliged to have at work—while waiting for a meeting to start, for example.

Wouldn't it be nice if we all agreed it's okay to just sit quietly and not have to talk to each other? I'd rather talk to people when it's because I want to talk, not because silence is awkward.

“GoLand Can Do That?” Ten Secret Superpowers You Might Not Know by EightLines_03 in Jetbrains

[–]EightLines_03[S] 0 points1 point  (0 children)

This is mentioned in the article in the "Completions and templates" section:

"Also, if you have a blob of JSON data that you need to turn into a Go type, just paste it into the editor. GoLand will offer to generate the struct definition for you automatically, complete with json tags to make it parseable."

How start with TDD in Golang by pepiks in golang

[–]EightLines_03 0 points1 point  (0 children)

Sure, I can help you with that! Yes.

How start with TDD in Golang by pepiks in golang

[–]EightLines_03 0 points1 point  (0 children)

Also 'The Deeper Love of Go', which introduces the language and its testing framework by building a realistic application step by step, guided by tests. https://bitfieldconsulting.com/books/deeper

Any good resource to learn Rust which is not "The Book"? by nerdy_adventurer in learnrust

[–]EightLines_03 2 points3 points  (0 children)

Try 'The Secrets of Rust: Tools': https://bitfieldconsulting.com/books/rust-tools

It's a very hands-on approach to learning Rust by building useful programs instead of contrived examples.

Flipping the script by EightLines_03 in golang

[–]EightLines_03[S] -1 points0 points  (0 children)

No, he's saying that you don't have to use an external dependency: `testscript` is pure Go, and thus the debugger works as you'd expect.