Skip to content

Instantly share code, notes, and snippets.

@lucasnunesg
lucasnunesg / ssh.md
Created September 9, 2024 15:36 — forked from MatheusPoliCamilo/ssh.md
Multiple SSH keys for GitHub and GitLab

Multiple SSH keys for GitHub and GitLab

1. Generate SSH keys

ssh-keygen -t ed25519 -C "user@email.com" -f ~/.ssh/id_rsa_github
ssh-keygen -t ed25519 -C "user@email.com" -f ~/.ssh/id_rsa_gitlab

2. Copy keys to GitHub and GitLab

@lucasnunesg
lucasnunesg / ssh.md
Created September 9, 2024 15:36 — forked from MatheusPoliCamilo/ssh.md
Multiple SSH keys for GitHub and GitLab

Multiple SSH keys for GitHub and GitLab

1. Generate SSH keys

ssh-keygen -t ed25519 -C "user@email.com" -f ~/.ssh/id_rsa_github
ssh-keygen -t ed25519 -C "user@email.com" -f ~/.ssh/id_rsa_gitlab

2. Copy keys to GitHub and GitLab

@lucasnunesg
lucasnunesg / ambiente-dev-ubuntu.md
Last active July 4, 2024 00:41 — 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.

Ambiente de desenvolvimento Python no ubuntu

#!/bin/bash

Executar comandos a seguir para atualizar os pacotes

sudo apt update -y sudo apt upgrade -y

Instalações

Python

Python: sudo apt install python3.10-full python3.10-dev -y

@lucasnunesg
lucasnunesg / mac-monterey.md
Created October 18, 2023 16:44 — forked from luizomf/mac-monterey.md
Comandos para aula de criação de ambiente Python no Mac OS Monterey
@lucasnunesg
lucasnunesg / git.md
Last active March 8, 2023 22:09 — forked from leocomelli/git.md
Lista de comandos úteis do GIT

GIT

Estados

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

Ajuda