Skip to content

Instantly share code, notes, and snippets.

View andersonleite1's full-sized avatar
👨‍💻
Focusing

Anderson Leite andersonleite1

👨‍💻
Focusing
View GitHub Profile
@IagoPFerreira
IagoPFerreira / Supabase-checklist.md
Last active May 7, 2024 09:39
Checklist para configurar o Supabase

Checklist de adicionar um novo projeto ao Supabase

  • Login

    • Acessou o site do Supabase
    • Clicou em sign-in/entrar para fazer o login
    • Deu permissão ao Supabase à sua conta do Github (Somente para caso seja o primeiro acesso)
  • Criando um novo projeto

    • Clicar em New Project/Novo Projeto
    • Selecionar a organização com o nome do seu usuário do GitHub
@luizomf
luizomf / ambiente-dev-ubuntu.sh
Last active June 12, 2024 19:29
Ambiente de desenvolvimento Python no Ubuntu - Com VS Code, Google Chrome, ZSH, Oh-my-zsh, zsh-syntax-highlighting, zsh-autosuggestions e spaceship prompt.
#!/bin/bash
# Executar comandos a seguir para atualizar os pacotes
sudo apt update -y
sudo apt upgrade -y
# Só o Python
sudo apt install python3.10-full python3.10-dev -y
# Instalar pacotes a seguir
@tomsihap
tomsihap / gist:e703b9b063ecc101f5a4fc0b01a514c9
Created December 23, 2018 14:46
Install NVM in Ubuntu 18.04 with ZSH
# Find the latest version on https://github.com/creationix/nvm#install-script
$ curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash
# Add in your ~/.zshrc the following:
export NVM_DIR=~/.nvm
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
$ source ~/.zshrc