DEV Community

Cover image for 12 Personal Go Tricks That Transformed My Productivity

12 Personal Go Tricks That Transformed My Productivity

Phuong Le on October 03, 2023

Photo by Lucas Santos on Unsplash Author I typically share insights on System Design & Go at Devtrovert. Feel free to check out ...
Collapse
 
teivah profile image
Teiva Harsanyi

Thanks for your post.

About 1., a slight variation that I even prefer if you don't need to return time.Duration: go.dev/play/p/D0qkU5zB1Co

Collapse
 
func25 profile image
Phuong Le

Hmm... that's a good one but just thinking, the "()()" might trip some folks up if they miss the second "()". Still, it's an excellent trick that I'd never thought of.

Collapse
 
teivah profile image
Teiva Harsanyi

You're right, that's something to consider before submitting such a code.

But yeah as it was a "tricks" post I thought that might be interesting :)

I also use it when in a function, I need to do a pre and post action: go.dev/play/p/J31oyRhJzQ-
It's pretty handy during testing, for example.

Thread Thread
 
func25 profile image
Phuong Le • Edited

Oh shoot, I see the benefit of this Teiva, it's really great for handling actions both before and after a function, could I possibly include this tip in the post?

By the way, do you think this trick can be safely applied in production?

Thread Thread
 
teivah profile image
Teiva Harsanyi

could I possibly include this tip in the post?

Sure, please

do you think this trick can be safely applied in production

Yes, there's nothing unsafe. The only caveat is that Go devs might be slightly confused at first when reading the code.

Collapse
 
soulsbane profile image
Paul Crane

Great post!

Collapse
 
mikeschinkel profile image
Mike Schinkel

When have you found a need to use arrays vs. slices?

I have been coding in Go for half a decade now and still have yet to come across a single time I felt I needed one. I am sure they exist, but I do not yet know of an example. Can you elaborate?

Also, for naked parameter avoidance, I far prefer to great an "args" type, e.g:

printInfo("foo", InfoArgs{
   IsLocal: true,
   Done: true,
})
Enter fullscreen mode Exit fullscreen mode

The beauty of the above is that if you need to add a 3rd parameter — or a 4th, 5th, etc. — it does not break your function signature. And in some IDEs, it autocompletes better.

Collapse
 
func25 profile image
Phuong Le

Arrays are more suitable for fixed sizes when the size is already known, like hashing (where the SHA-256 algorithm operates on 512-bit blocks) or ID:

var hash [32]byte 

type ObjectID [12]byte // MongoDB
Enter fullscreen mode Exit fullscreen mode

Using a slice for these types is possible, no problem. But it lacks clarity and readability, expressing that explicitly is preferable.

About the naked trick, like in your example, I typically use structs for functions > 3 arguments. Yet, IMO, break a function's signature is better, it serves as a compile-time noti for us, unless the added argument is optional.

Collapse
 
mikeschinkel profile image
Mike Schinkel • Edited

Hi Phuong,

Thank you for the answer.

Yes, that makes perfect sense regarding arrays; not sure why that did not occur to me before.

As for using structs, I should have explicitly stated that I meant them only for optional parameters. I guess I have gotten so accustomed to using them like that over the years I forget to point out that detail. And in hindsight, I guess the your commenting is still applicable for required parameters.

Lastly, and I will admit that I probably care more about this than other developers given my experience in team projects, but I actively hate it when code requires function signatures to be changed over time. Changing signatures can be disruptive in PRs and for other developers, and they can cause untold heartache when 3rd parties used packages which contain signatures you've broken.

I guess there is one caveat and that being I guess it is okay if only one developer is going to be working on the code at any one time and nobody else is going to depend on it, although I still think it is a good idea to keep in practice even on solo projects.

I do appreciate that some languages do not do a good job of making this practice practical, but whenever possible I would argue it is a best practice to code your functions with your best intention that they would never need to change their signature. BTW, I will point out that Go does a poor job of enabling this best practice given how context.Context and error are idiomatically used.

If a function has even just one optional parameter, unless by its very nature it could never need an additional optional parameter then IMO it is best to implement those parameters with a signature that won't break, be it an args struct, or (IMO, less preferable) a variadic of set funcs.

And if you need to add a new required parameter, I argue you should add an additional function with a new name to include that new parameter and leave the old function around for backward compatibility, if at all possible.

#fwiw

-Mike

P.S. One more thing. I recently came across your blog posts and subscribed. I commend you for your excellent articles, which IMO are a cut well above that which most developers are writing about programming topics. Kudos, and keep up the great work!

Thread Thread
 
func25 profile image
Phuong Le

One thing I'd like to point out is that, you can use a single struct as an argument for a function with the "required" tag from the validator/v10 package. This approach is kinda handy for functions with numerous arguments.

Your hashtag #fwiw (for what it's worth) sums it up well. We all bring our unique experiences and biases to the table, and I appreciate you sharing yours.

Regarding my blog, thank you, Mike. I'm truly honored by your kind words. Feedback like yours motivates me to continue writing and sharing my insights with the community.

Thread Thread
 
mikeschinkel profile image
Mike Schinkel • Edited

Interesting idea about the "required" tag. I can see where that would be useful for ensuring that types have required values, although I do like to minimize dependencies so unless I felt the need to use a lot of its functionality I would likely still shy away.

OTOH, it would not be hard to implement a required tag of my own and not require a dependency, so thanks; that is something for me to consider.

As for args, I have used the strategy of positional required args and optional args as structs for over well more than a decade and across numerous languages and have found it to be easy to be consistent and have never found it to fail me, so I doubt I personally would want to change to using all parameters in structs.

I do wish that Go and other languages had more bespoke functionality for dealing with required and optional parameters such as an automatic struct optional args, as well as multiple stacks for things like context.Context and error that might not be added initially but that could be discovered to be needed later. However, we do have to live in the world we've got and not in the one we only envision.

But we as both agreed on these topics, #fwiw. 🙂

Collapse
 
jan_semmelink_98d129f0c34 profile image
Jan Semmelink

Nice. Knew some of those, some are new to me and really useful.