PinnedByron Cabrera·Oct 17, 2024Optimizing Database Connections in Go: Improving Throughput by Managing Open Connections…A response icon7A response icon7
Byron Cabrera·May 12The Signal Infrastructure of Agentic CodingMost developers using AI coding tools eventually run into the same frustration. The agent makes a decision that contradicts an…
Byron Cabrera·Dec 26, 2024Error Handling in Go: Making the Most of As IsError handling in Go has evolved since the introduction of Go 1.13, bringing two essential functions to the standard library: errors.Is and…A response icon1A response icon1
Byron Cabrera·Nov 25, 2024Struct Tags in Go: Implementing Custom Tag FunctionalityGo’s struct tags offer a way to define metadata for struct fields allowing developers to specify how these fields should be handled during..
Byron Cabrera·Oct 29, 2024Using httptest.Server in Go to Mock and Test External API CallsWhen building applications that interact with external APIs, it’s crucial to verify that your code makes the correct requests and handles…
Byron Cabrera·Oct 26, 2024Building Reliable Workflows with Temporal in Go: Essential Best PracticesTemporal is an open-source platform designed to manage the execution of workflows in a reliable, fault-tolerant way. With features like…