Sending daily food menu to Whatsapp with Go

My wife and I are always checking the daily food menu on the kindergarten website to inform our child what she is going to eat today. Let’s automate it!
Switching from interface{} to any in Go 1.18

Since Go 1.18, any is an alias for interface{} and is equivalent to interface{} in all ways
Using make() in go

A common mistake pattern using make() in go and how to fix, optimize and make yourself a better go developer :)
Stack - data type implementation in go

A stack is an abstract data type and it’s used everywhere. In this post, let’s dive into details and implementation in golang
Binary Search in Go

Binary Search is a beginner-friendly algoritham that is easy to implement once you fully understand how it works. This post will try to explain how it works and provide an implementation in golang