Skip to content

Instantly share code, notes, and snippets.

View codigoinerte's full-sized avatar
🏠
Working from home

Fredy Jhoel codigoinerte

🏠
Working from home
View GitHub Profile
@Klerith
Klerith / testing-configuration.md
Last active November 9, 2025 21:26
Configuración de Vitest + React Testing Library
@Klerith
Klerith / Instalaciones-React.md
Last active September 19, 2025 22:54
Instalaciones recomendadas para mi curso de React de cero a experto
@danielalvarenga
danielalvarenga / terminal-colors-branch.sh
Last active November 9, 2025 20:07
Show branch in terminal Ubuntu
# Add in ~/.bashrc or ~/.bash_profile
function parse_git_branch () {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
}
RED="\[\033[01;31m\]"
YELLOW="\[\033[01;33m\]"
GREEN="\[\033[01;32m\]"
BLUE="\[\033[01;34m\]"
NO_COLOR="\[\033[00m\]"