Skip to content

Instantly share code, notes, and snippets.

View SpongeBobSun's full-sized avatar
🤔
Whaaaat

bob.sun SpongeBobSun

🤔
Whaaaat
View GitHub Profile
{
"basics": {
"name": "Thomas Edison",
"label": "Inventor and Businessman",
"picture": "https://example.com/photo.jpg",
"email": "thomas.edison@example.com",
"phone": "(123) 456-7890",
"url": "https://thomasedison.com",
"summary": "Prolific inventor and businessman known for developing many devices that greatly influenced life around the world, including the phonograph, the motion picture camera, and the electric light bulb.",
"location": {
@SpongeBobSun
SpongeBobSun / gist:14831d03f3373302e146
Created January 15, 2016 03:37 — forked from bluefuton/gist:1468061
OS X: replace tabs with spaces in all files using expand
find . -name "*.php" | while read line; do expand -t 4 $line > $line.new; mv $line.new $line; done