Skip to content

Instantly share code, notes, and snippets.

View MouraVocal's full-sized avatar
🎯
Focusing

Diego Moura da Silva MouraVocal

🎯
Focusing
View GitHub Profile
@MouraVocal
MouraVocal / README.md
Last active October 12, 2024 13:57
Como debugar React Native Expo Go com WSL2

Procedimentos

Configurando o arquivo ~/.zshrc

# Windows Android Studio
export ANDROID_HOME=/mnt/c/Users/SEU_USUARIO/AppData/Local/Android/Sdk
export PATH=$PATH:$ANDROID_HOME/emulator
export PATH=$PATH:$ANDROID_HOME/tools
export PATH=$PATH:$ANDROID_HOME/tools/bin
@MouraVocal
MouraVocal / zinit_shell.sh
Created January 16, 2024 18:34
WSL + Zsh + Zinit + Plugins on Distro Ubuntu 22.04
# Após instalar o wsl rode os seguintes comandos
# Instalar o zsh
sudo apt install zsh
# Alterando o shell padrão de bash para zsh
chsh -s $(which zsh)
# Instalando o Zinit
bash -c "$(curl --fail --show-error --silent --location https://raw.githubusercontent.com/zdharma-continuum/zinit/HEAD/scripts/install.sh)"
@MouraVocal
MouraVocal / tips.txt
Created December 29, 2023 22:26
Linux important commands
# change keyboard layout
loadkeys br-abnt2
@MouraVocal
MouraVocal / ambiente-dev-ubuntu-curso-python.sh
Created November 10, 2023 17:06 — forked from luizomf/ambiente-dev-ubuntu-curso-python.sh
Instalação ambiente dev Ubuntu 22 do curso de Python
#!/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
@MouraVocal
MouraVocal / ambiente-dev-ubuntu.sh
Created April 22, 2022 01:35 — forked from luizomf/ambiente-dev-ubuntu.sh
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
# Instalar pacotes a seguir
sudo apt install dkms make perl gcc build-essential git curl -y
# Instalar Python 3.10 (opcional)