Skip to content

Instantly share code, notes, and snippets.

@jeffmatts
jeffmatts / remove-node_modules.sh
Last active November 21, 2025 19:04
Remove all node_modules directories on Mac OS
# Exclude the ~/dev/github directory
# Preview
find "$HOME/dev" \
-type d -name node_modules \
-prune \
-not -path "$HOME/dev/github/*" \
-print
# Remove
/**
* MCG
*/
body {
color: #333;
font-size: 14px;
font-family:'Radley', serif;
font-weight: 400;
}
/**
* MCG
*/
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
/**MCG*/
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
@jeffmatts
jeffmatts / dabblet.css
Created August 9, 2012 17:45
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;