IN4IT provides cloud and DevOps consulting, infrastructure management, and support services specializing in AWS environments.
IN4IT specializes in building and maintaining cloud environments with DevOps practices that improve scalability and availability, backed by round-the-clock support. The company offers services including cloud support, consultancy, AWS Well-Architected Reviews, and fractional CTO services. They work with clients across energy management, logistics, mobility, fintech, and other sectors to optimize and secure AWS infrastructure.
Edward Viaene - Managing Director

Edward Viaene demonstrates how to build HTTP servers and clients in Go, starting with the net/http package library and then showing how to construct HTTP requests manually using raw TCP sockets to understand the underlying protocol mechanics. He walks through examining the HTTP RFC specification, creating a basic Go HTTP server that listens on a port with request handlers, and then manually crafting HTTP GET requests using telnet to show how HTTP requests work at the protocol level.

Edward Viaene discusses Go 1.22's new routing enhancements to the net/http package, which now supports wildcard routing using syntax like `{id}` to capture path segments, whereas previous versions required third-party packages like Gorilla Mux or Gin for this functionality. He explains that developers can now extract wildcard values using `request.PathValue()` and demonstrates practical examples of how to implement simple wildcard routes without external dependencies.