Build a Website Using Only the Go Std Library
There are quite a few web frameworks available within the Go ecosystem. Yet the advice that is often stated is that the std lib net/http is more than capable and that it’s best to start with that library until you grow out of it. So how easy is the net/http library to use when building a website? Is it possible to use the standard library exclusively?
Oliver Jackman
2021-01-23
Creating Custom Character Encoding to Save Space
In this article, we’ll look at how we can encode (and decode) certain strings to save storage (and transmission) space, and the mathematics behind it.
2020-08-12
Use Custom and Third-Party React Form Components With Ant Design and Typescript
The React ecosystem has a vast amount of components and libraries that you can use to easily build web applications. The Ant Design library is one of those which provides a great range of ready to go React components, complete with styling for the whole site.
2020-07-25