Renan Moura

Renan Moura

I'm a Software Engineer working in the industry for a decade now. I like to solve problems with as little code as possible. I’m interested in solving all sorts of problems with technology in creative and innovative ways. From everyday shell scripts to machine learning models. I write about Software Development, Machine Learning, and Career in tech.

The Python Guide For Beginners

python guide

Python has become one of the fastest-growing programming languages over the past few years. Not only it is widely used, it is also an awesome language to tackle if you want to get into the world of programming. This Python…

Dictionary Union Operators in Python

dict union python

As of Python 3.9, the dict type will have two new union operators. The merge operator | and the update operator |=. The merge operator The merge operator | takes two dictionaries and returns a new one. Notice that all_brands…

SQL: Syntax

sql syntax

SQL is not case sensitive, so you can use the keywords in uppercase like SELECT or lowercase like select, both work the same. For the sake of clarity and readability, it is advised to use the reserved keywords in uppercase,…

Puzzle Solver

puzzle solver

A few weeks ago I sent an e-mail to my subscribers and ended it asking the following question: What’s your motivation for coding? What do you want to learn? I had many incredible replies and took my time going through…