Skip to main content

Iterating over local IP addresses in Go

While developing an application for local network communication and file transfer, I stumbled upon a simple approach for iterating over valid IP address subsets in Go. The brilliance of this method lies in its simplicity and conciseness. If you’d like to jump straight to the code used during the preliminary design phase to establish a local network connection, it’s available here.

SQLite Pitfalls

SQLite is the world’s most widely used database, powering the backends of countless applications. For most software, it offers a reliable solution for embedded data storage, eliminating the need to reinvent the wheel. Its broad adoption means developers benefit from a well-documented, dependable tool with a familiar SQL dialect.