Skip to main content

DevFest Triângulo 2023

· 6 min read
Bruno Carneiro
Fundador da @TautornTech

On December 2nd, 2023, Dev Fest Triângulo 2023 took place — a global technology event organized by the Google Developer Group (GDG) community. This year's event was held in Uberlândia, Minas Gerais, and had more than 900 participants including students, professionals, and technology enthusiasts.

I had the pleasure of sharing a bit of my knowledge about Serverless and how AWS can help us create scalable and resilient applications at very low cost. I also demonstrated a migration case from Base39.

Serverless Days 2023

· 12 min read
Bruno Carneiro
Fundador da @TautornTech

On October 21, 2023, Serverless Days took place — the world's largest Serverless event, which this time was held in São Paulo.

I had the opportunity to participate in the panel where the topic was: "Serverless - When to use and when not to use." I shared some learnings and cases from Base39.

It was an incredible event; we had people from various parts of the country and even people from abroad.

We had a lot of knowledge and experience exchange — it was certainly an event that added a great deal of knowledge for all participants.

With that, I would like to share a bit of my experience and what was discussed in the panel.

Clean Code JavaScript

· 10 min read
Bruno Carneiro
Fundador da @TautornTech

In this article, I will present some good programming practices in JavaScript. However, these practices can be applied to any programming language, as they represent a set of recommended guidelines.

The central concept addressed here is "Clean Code," which refers to code that is easy to read and understand, as well as easy to maintain. The goal is to create clear and concise code.

Before proceeding, I would like to start with a quote from Bjarne Stroustrup, the creator of the C++ language:

"I like my code to be elegant and efficient. The logic should be straightforward to make it hard for bugs to hide, the dependencies minimal to ease maintenance, error handling complete according to an articulated strategy, and performance close to optimal so as not to tempt people to make the code messy with unprincipled optimizations. Clean code does one thing well."