Skip to content

Instantly share code, notes, and snippets.

View caarlosdamian's full-sized avatar
🏰
Working from home

Carlos Damian caarlosdamian

🏰
Working from home
View GitHub Profile
@caarlosdamian
caarlosdamian / pasos-node-ts-jest.md
Last active February 26, 2026 03:13 — forked from Klerith/pasos-node-ts-jest.md
Note + TypeScript + Jest = Testing

Pasos para configurar Jest con TypeScript, en Node

Documentación oficial sobre Jest

  1. Instalaciones de desarrollo (super test es útil para probar Express)
npm install -D jest @types/jest ts-jest supertest
@caarlosdamian
caarlosdamian / css-media-queries-cheat-sheet.css
Created November 18, 2022 00:55 — forked from bartholomej/css-media-queries-cheat-sheet.css
CSS Media Query Cheat Sheet (with Foundation)
/*------------------------------------------
Responsive Grid Media Queries - 1280, 1024, 768, 480
1280-1024 - desktop (default grid)
1024-768 - tablet landscape
768-480 - tablet
480-less - phone landscape & smaller
--------------------------------------------*/
@media all and (min-width: 1024px) and (max-width: 1280px) { }
@media all and (min-width: 768px) and (max-width: 1024px) { }