Skip to content

Instantly share code, notes, and snippets.

View samuelsilvati's full-sized avatar

Samuel Silva samuelsilvati

View GitHub Profile
@luizomf
luizomf / ambiente-dev-ubuntu.sh
Last active September 29, 2025 00:02
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
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active November 2, 2025 10:36
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@leocomelli
leocomelli / git.md
Last active October 30, 2025 12:41
Lista de comandos úteis do GIT

GIT

Estados

  • Modificado (modified);
  • Preparado (staged/index)
  • Consolidado (comitted);

Ajuda