Skip to content

Instantly share code, notes, and snippets.

View bhatiavivek's full-sized avatar
💭
जिन्हें नाज़ है...

Vivek Bhatia bhatiavivek

💭
जिन्हें नाज़ है...
  • 32.23174776879912, 76.3430913791296
View GitHub Profile
@JoeyBurzynski
JoeyBurzynski / 55-bytes-of-css.md
Last active August 16, 2024 12:19
58 bytes of css to look great nearly everywhere

58 bytes of CSS to look great nearly everywhere

When making this website, i wanted a simple, reasonable way to make it look good on most displays. Not counting any minimization techniques, the following 58 bytes worked well for me:

main {
  max-width: 38rem;
  padding: 2rem;
  margin: auto;
}
@bradtraversy
bradtraversy / pipenv_cheat_sheet.md
Last active August 4, 2024 13:48
Pipenv cheat sheet for common commands

Pipenv Cheat Sheet

Install pipenv

pip3 install pipenv

Activate

pipenv shell