Skip to content

Instantly share code, notes, and snippets.

View SebastianQuis's full-sized avatar
💭
I may be slow to respond.

Sebastian Dev SebastianQuis

💭
I may be slow to respond.
View GitHub Profile
@Klerith
Klerith / instalaciones-patrones.md
Last active December 9, 2025 22:44
Instalaciones recomendadas para el curso de Patrones de diseño

Patrones de diseño

Soluciones prácticas y eficientes

Esta es la lista de instalaciones recomendadas, si encuentran enlaces adicionales o cambios en este Gist, pueden hacerlos.

@Klerith
Klerith / instalaciones-shadcn.md
Last active November 8, 2025 22:07
Instalaciones recomendadas para el curso de Shadcn/ui
@Klerith
Klerith / docker-compose.yml
Last active October 17, 2025 00:13
PostgreSQL + PgAdmin
version: '3'
services:
myDB:
image: postgres:15.3
container_name: my-database
restart: always
ports:
- 5432:5432
environment:
@Klerith
Klerith / instalaciones-database.md
Last active December 6, 2025 20:13
Instalaciones necesarias para el curso de base de datos
@Klerith
Klerith / docker-compose.yml
Created June 16, 2023 19:29
Postgres - Docker compose
version: '3'
services:
todosDB:
image: postgres:15.3
container_name: todos-db
restart: always
ports:
- 5432:5432
environment:
@Klerith
Klerith / instalaciones-next.md
Last active December 2, 2025 02:56
Instalaciones recomendadas para el curso de Next.js 13 >
@Klerith
Klerith / flutter-instalaciones.md
Last active December 9, 2025 01:32
Instalaciones del curso de Flutter - Móvil de cero a experto
@Klerith
Klerith / instalaciones-react-query.md
Last active November 30, 2025 18:29
Instalaciones recomendadas para el curso de React Query
@Klerith
Klerith / vite-testing-config.md
Last active November 28, 2025 13:56
Vite + Jest + React Testing Library - Configuraciones a seguir

Instalación y configuracion de Jest + React Testing Library

En proyectos de React + Vite

  1. Instalaciones:
yarn add --dev jest babel-jest @babel/preset-env @babel/preset-react 
yarn add --dev @testing-library/react @types/jest jest-environment-jsdom
  1. Opcional: Si usamos Fetch API en el proyecto:
@Klerith
Klerith / git-alias.md
Last active December 10, 2025 03:28
Useful Git Alias

Log

git config --global alias.lg "log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all"

Status

git config --global alias.s status --short

Alternativa útil de status

git config --global alias.s status -sb