Blog

My blog contains some of my projects and articles about software development, programming, and other topics.

Posts

(2)
REACTFebruary 5, 2023

How to implement your own React internationalization with no dependencies

In today's globalised world, it's essential to build applications that can serve users speaking different languages. That's why having a robust translation solution is crucial. While there are several libraries available to handle translation and internationalization, building your own i18n hook in React using TypeScript can give you greater control and understanding of how translation is handled in your application.

Learn More
NODE.JSNovember 21, 2022

Advanced Web Crawler with Playwright

Web crawling has become more challenging with the rise of dynamic websites that rely heavily on JavaScript. To create a powerful web crawler that can handle JavaScript-rendered pages, we need a solution that can execute JavaScript code. In this tutorial, we'll explore how to build a JavaScript-enabled web crawler using Node.js, TypeScript, and the Playwright library. Playwright provides a high-level API for automating web browsers, making it an excellent choice for our project.

Learn More