Skip to content

Instantly share code, notes, and snippets.

View eylonshm's full-sized avatar
πŸ”
Coding, DO NOT DISTURB

Eylon Shmilovich eylonshm

πŸ”
Coding, DO NOT DISTURB
View GitHub Profile
@basham
basham / css-units-best-practices.md
Last active March 10, 2025 20:57
CSS Units Best Practices

CSS units

Recommendations of unit types per media type:

Media Recommended Occasional use Infrequent use Not recommended
Screen em, rem, % px ch, ex, vw, vh, vmin, vmax cm, mm, in, pt, pc
Print em, rem, % cm, mm, in, pt, pc ch, ex px, vw, vh, vmin, vmax

Relative units

Relative units

@miguelmota
miguelmota / nodejs-directory-structure.md
Last active December 2, 2023 08:47
Node.js MVC directory structure example.
Node.js MVC directory structure example.
β”œβ”€β”€ app
β”‚   β”œβ”€β”€ controllers
β”‚   β”‚   β”œβ”€β”€ admin
β”‚   β”‚   β”‚   β”œβ”€β”€ posts.js
β”‚   β”‚   β”‚   └── users.js
β”‚   β”‚   β”œβ”€β”€ posts.js
β”‚ β”‚ β”œβ”€β”€ session.js