Skip to content

Instantly share code, notes, and snippets.

View maximilliangeorge's full-sized avatar

Maximillian George maximilliangeorge

  • Will and Max
  • Stockholm
View GitHub Profile
@maximilliangeorge
maximilliangeorge / layout.scss
Last active March 14, 2024 19:00
SCSS size interpolation
// strip unit utility function
@function strip-unit($n) {
@return math.div($n, ($n * 0 + 1));
}
/**
* @function interpolate
* interpolates the size of an element based on the size of the screen
*
@maximilliangeorge
maximilliangeorge / index.js
Last active July 8, 2023 04:14
How to use npx to run gist based scripts
#!/usr/bin/env node
console.log("I was executed from a gist inside the terminal with npx!");
@maximilliangeorge
maximilliangeorge / index.js
Last active July 8, 2023 04:04 — forked from Tynael/README.md
How to use npx to run gist based scripts
#!/usr/bin/env node
console.log("I was executed from a gist inside the terminal with npx!");