Skip to content

Development

me-logo

Who am I ?

My name is Matheus Sandrini Rossi, I'm a data architect / data engineer and I'm passionate about technology and data.

What can you find here ?

Almost everything I use in my day to day, from tools, tips, tricks, studies, guides, etc.

Will it be useful to me ?

If you work with IT and the data universe, probably yes.

If you are not in this context, but you are curious, it may be useful to you too.

Pre-requisites

Basic knowledge of:

  • python
  • linux
  • git
  • docker
  • sql

If you dont know about it, don't worry, you can find some tips here.

Tools

Brew

TIP

If you are using Windows, you can use Windows Subsystem for Linux (WSL).

Windows Docs

Brew - Site

All steps here documented by default uses brew as a package manager. Brew is famous in macOS, but can also be installed on linux machines, and windows (WSL).

HomeBrew

Install Brew

bash
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

Install packages

bash
brew install package_name

Update packages

bash
# Upgrade one package
brew upgrade package_name

# Upgrade all packages
brew upgrade

Remove packages

bash
brew uninstall package_name

Feel free to use any content here.