Skip to content

Instantly share code, notes, and snippets.

View jhenry02's full-sized avatar

Joshua Henry jhenry02

View GitHub Profile
@jhenry02
jhenry02 / list-of-hacking-games.md
Created June 1, 2023 22:38 — forked from fakhrullah/list-of-hacking-games.md
List of hacking game, wargame or capture the flag (CTF) for some one who want to learn hacking.
@jhenry02
jhenry02 / 55-bytes-of-css.md
Created September 26, 2022 02:24 — 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;
}