Posts

2025/03/25 | Open Source Licenses: A Deep Dive into Their Meaning | licenses open-source

This post aims to provide a deeper understanding of the meaning of licenses, both permissive and copyleft, and their implications for developers and users.

2024/08/10 | Exploiting Finite State Automata for Efficient Lexical Analysis: A Rust Implementation | compilers rust

An implementation of a lexical analyzer using non-deterministic finite automata (NFA) in Rust.

2023/05/08 | Prototype - Class Creational | design-pattern java

Specify the kinds of objects to create using a prototypical instance, and create new objects by copying this prototype.

2023/04/26 | Make Vim as your C/C++ IDE | Vim C C++

In this blog post you will find a simple guide to configure Vim as your C/C++ IDE. This procedure can be very similar for VSCode and Fleet editors.

2023/02/03 | Factory Method - Class Creational | design-pattern java

Define an interface for creating an object, but let subclasses decide which class to instantiate. Factory Method lets a class defer instantiation to subclasses.

2023/01/13 | Builder - Object Creational | design-pattern java

Separate the construction of a complex object from its representation so that the same construction process can create different representation.

2022/12/19 | Abstract Factory - Object Creational | design-pattern java

Provide an interface for creating families of related or dependent objects without specifying their concrete class.

2022/12/19 | Design Pattern - Introduction | design-pattern java

Design patterns are typical solutions to common problems in software design. Each pattern is like a blueprint that you can customize to solve a particular design problem in your code.