Logo

Blog

Read my latest insights and articles on software development topics.

Basics in Golang

2022-01-02

ProgrammingGolang

Go (or golang) emphasizses clarity, explicitness, and predictable performances. If you are getting started, it is helpful to focus on a few foundational principles before moving on to advanced patterns.

How to build an HTTP client in Golang

2022-01-02

Backend DevelopmentGolangHTTPAPI Integration

Building an HTTP client in Go is straightforward once you understand the net/http package and a few reliability practices.

Nesting in CSS without a preprocessor

2022-01-02

Frontend developmentCSSWeb Development

For many years, nested styles in CSS required preprocessors such as Sass or Less. Today, modern CSS supports native nesting, which allows cleaner style organization without an additional compilation layer.