A few months ago I got a new computer and I have been very intentional about deciding what I install on it. From past experience I know that computers that are used as a development environment tend to get messy in no time since one might install all kinds of libraries, frameworks, dependencies, you name … Continue reading Developing inside a Docker container
Tag: JavaScript
5 razões pra começar a aprender JavaScript
Se você já programa há algum tempo e não sabe JavaScript ou se está pensando em aprender a programar e não sabe por onde começar, aqui está a minha lista de motivos porque eu acho que você deveria aprender JavaScript (ou simplesmente "JS" no resto desse post): JS é o que faz a internet ser … Continue reading 5 razões pra começar a aprender JavaScript
Getting started with gRPC – part II: the code
In a previous post I wrote a summary of the things I learned about gRPC. Here I will talk about the prototype app I wrote to test gRPC and gRPC-Web. About my prototype As I mentioned before, I wrote a prototype app that tests if the string that the user typed in the browser is … Continue reading Getting started with gRPC – part II: the code
Getting started with gRPC – part I: the what
I recently spent some time researching gRPC and this post is a summary of what I learned. I also wrote a prototype application to test gRPC and gRPC-Web with Python and JS. The JS client takes a string from user input and test if it's a palindrome. The code can be found on GitHub and … Continue reading Getting started with gRPC – part I: the what