Parsing from scratch - Part 1
Parsing from scratch is a powerful technique that allows you to build custom parsers for your specific needs. In this series, we will explore the basics of parsing and how to implement a simple parser …
Read more →Blog posts on tech, engineering, and more.
Parsing from scratch is a powerful technique that allows you to build custom parsers for your specific needs. In this series, we will explore the basics of parsing and how to implement a simple parser …
Read more →
Some astute readers of the previous post on builder pattern highlighted the verbosity of the pattern. The builder pattern is a powerful pattern but comes with the baggage of boilerplate code. One even …
Read more →
Bahul and I gave a talk about a PII logging library solution in the Bay Area Scala meetup.
Read more →
This is a post-credits bonus post that shows the complete and finished builder code.
Read more →
While the builder pattern is a powerful tool for creating complex objects in a type-safe manner, it is easy to discard it given its complexity and boilerplate. This post details the situations where …
Read more →