Go

Parsing PDF files in Go

Parsing PDF files in Go is useful when you need to extract text or metadata from PDF documents for analysis or transformation.

August 18, 2025
Go

Date parsing in Go

Date parsing in Go requires familiarity with the reference layout. Once the basic principle is understood, you can correctly parse almost any format.

August 17, 2025
Go

SCADA architecture and Go: a modern approach

With growing demands for scalability, security, and performance, modern SCADA solutions are adopting languages like Go (Golang) for their efficiency, native concurrency, and portability.

August 14, 2025
Go

Generating and managing a DOI in Go

Generating and managing a DOI in Go is relatively straightforward but requires attention when building metadata and interacting with official APIs.

August 14, 2025
Go

Generating dynamic PDFs in Go with Gin and gofpdf

Generating dynamic PDFs in Go can be straightforward when using libraries like gofpdf.

August 12, 2025
Go

Interfaces in Go: Decoupling Components for Flexible and Testable Web Apps

Interfaces in Go make web apps more modular, testable, and easier to evolve. Start concrete, then extract an interface when you need flexibility (new implementations or tests).

August 10, 2025