DiegoC.

I’m a Engineering Manager passionate about the intersection between technology and people. My goal is to help technology teams achieve their full potential.

I have a great interest in engineering leadership, people management, software engineering, as well as inclusion and diversity. Currently, I am an Engineering Manager at Nubank and I am always open to sharing my ideas and experiences on these topics.

If you’d like to learn more about me, check out the links below!

Diferentes papeis nos times de produto digital no NuLab Meetup 4

Confira o bate-papo que participei pela NuLab Salvador do Nubank falando sobre papéis e responsabilidades dentro de um time de produto digital.

Produtos digitais ganharam força nos últimos anos no cenário global. Sabemos que por trás deles existem tecnologias, ferramentas e inovações envolvidas, assim como times multifuncionais com diferentes papeis e responsabilidades, dedicados a construir e escalar cada vez mais tais produtos, que vem facilitando a vida das pessoas.

Updating all your casks via Homebrew on macOS

I’m addicted to maintaining all my programs updated, and the best way to do this in macOS is with the help of dependency managers like Homebrew, when using it to install our software you can write small scripts to automate this process.

In Homebrew the command to update all software is brew upgrade --cask but it’s not always successful to find updates for all applications, to fix this problem we must execute this upgrade command for every installed software.

Here’s the tip! To avoid having to run upgrade to each item manually, run this command in your terminal:

brew list --cask | xargs brew upgrade --cask