In the previous article we installed Go and compiled our first binary. Today we cover the raw material everything else is made of: Go data types, variables and constants. And at the end, iota, that word that shows up in every Go codebase and nobody explains right the first time. Static typing, minimal ceremony Go […]
READ MORE
Heads up This series is written with the help of artificial intelligence (Claude), cross-checking every technical claim against the official Go documentation (go.dev) and citing the source for every relevant statement. Even so, it doesn’t replace your own judgment: compile it, test it, and be suspicious of any paragraph with no link behind it. Spot […]
READ MORE
I asked my agent to generate the tests for a class with 12 methods. It took 40 seconds. I would’ve taken two hours, coffee breaks and all. That’s Copilot agent mode at full speed, once you let it run. That’s not magic. It’s a four-step process that loops until the task is done. Once you […]
READ MORE
APIs are everywhere in our daily lives. When you check the weather on your phone, book a ride, or order food, you are interacting with APIs. Websites that display maps, social media feeds, or shopping carts all rely on APIs to fetch and display data from different sources. They are so ubiquitous that we rarely […]
READ MORE