Skip to content

Instantly share code, notes, and snippets.

View ExtronOliver's full-sized avatar

Oliver Abreu ExtronOliver

  • Extron
  • Raleigh, NC
View GitHub Profile
@cancerberoSgx
cancerberoSgx / rmnodemodules.sh
Last active June 5, 2025 18:38
remove node_modules and package-lock.json recursively
find . -name "node_modules" -exec rm -rf '{}' +; find . -name "package-lock.json" -exec rm -rf '{}' +;
@ruvasik
ruvasik / radius.css
Last active May 19, 2022 20:51
Mobile devices corners display radius
/* https://css-tricks.com/snippets/css/media-queries-for-standard-devices/ */
/* ----------- iPhone 5, 5S, 5C and 5SE ----------- */
/* Portrait and Landscape */
@media only screen
and (min-device-width: 320px)
and (max-device-width: 568px)
and (-webkit-min-device-pixel-ratio: 2) {