
5 tips to become a better developer
In some cases, the problem is not in your current skills or even in your habits, but in how you see things in life.
Search for a command to run...

In some cases, the problem is not in your current skills or even in your habits, but in how you see things in life.

How I am understanding my limits and trying to focus on what really matters.

Recently, I read an article that inspired me to write this one. That story was about an amazing library that allows you to add a theme switcher into your application with just one line of JavaScript. Therefore, today I will be sharing with you a repo...

Lately, I realized that I was using the same functionalities in different projects, so I decided to create an npm package to boost my development and make it easy for me to apply those utilities in my applications. In this article, I will be sharing ...

You can find the same content written in Portuguese here. In this article, I will show you the fundamentals of object-oriented programming (OOP) in the JavaScript language. Of course, it is supposed to be just an introduction to this subject, but y...

Perhaps after some time writing your HTML and style codes, you realized that it would be necessary to programmatically control some changes in the layout and appearance of your application, in addition to some actions that would respond to user inter...

You may have already found a decorator in some Python code. For example, the following is commonly used to create static methods within a class: class Person: @staticmethod def some_static_method(): pass But what does really do a dec...

Introduction Angular is a front-end framework developed by the Google team and it allows you to create amazing multiplatform applications writing less code and using more organization. Currently, it is written in TypeScript, which is a superset of Ja...

Currently, I've been developing a TypeScript framework for creating single-page applications (SPAs). I decided to do it because I want to improve my knowledge of TypeScript language, create a nice open-source project, and learn how to apply some conc...