Skip to content

Instantly share code, notes, and snippets.

View cristianofromagio's full-sized avatar
👨‍💻
Quit the talking

Cristiano Fromagio cristianofromagio

👨‍💻
Quit the talking
  • Brazil
View GitHub Profile
@nscipio
nscipio / visibility-classes.scss
Last active March 29, 2022 21:28
Mobile-first visibility helper classes in SASS.
// --------------------------------------------------
// Visibility Helper Classes
// --------------------------------------------------
$xs: 480px !default;
$sm: 768px !default;
$md: 992px !default;
$lg: 1200px !default;
.hide {
@taterbase
taterbase / system-beep.js
Created July 21, 2012 05:01
System Beep in Node.js
function alertTerminal(){
console.log("\007");
}