Skip to content

Instantly share code, notes, and snippets.

View mixelectronico's full-sized avatar
馃憯
Looking for a job as a Developer 馃槂

David Mix Fuentes mixelectronico

馃憯
Looking for a job as a Developer 馃槂
View GitHub Profile
@dasdo
dasdo / GIT.md
Last active November 2, 2025 23:49
Lista de Comandos en GIT

Configuraci贸n B谩sica

Configurar Nombre que salen en los commits

	git config --global user.name "dasdo"

Configurar Email

	git config --global user.email dasdo1@gmail.com
@cferdinandi
cferdinandi / terminal-cheat-sheet.txt
Last active October 11, 2025 01:18
Terminal Cheat Sheet
# Terminal Cheat Sheet
pwd # print working directory
ls # list files in directory
cd # change directory
~ # home directory
.. # up one directory
- # previous working directory
help # get help
-h # get help
@bartholomej
bartholomej / css-media-queries-cheat-sheet.css
Last active November 7, 2025 08:43
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) { }