Skip to content

Instantly share code, notes, and snippets.

View skinnylatte's full-sized avatar

Adrianna Tan skinnylatte

View GitHub Profile
@skinnylatte
skinnylatte / playlist.md
Created March 1, 2022 23:14
Create playlist from folder of mp3s in cli

for f in *.mp3; do echo "$f" >> playlist.m3u; done

@skinnylatte
skinnylatte / 55-bytes-of-css.md
Created September 26, 2022 17:53 — forked from JoeyBurzynski/55-bytes-of-css.md
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;
}