Skip to content

Instantly share code, notes, and snippets.

View mmarrow's full-sized avatar
🏠
Working from home

Mike mmarrow

🏠
Working from home
View GitHub Profile
@mmarrow
mmarrow / Show-Hide OSX HIdden Files
Last active August 29, 2015 14:16
View hidden files in OSX
//In terminal copy > paste > click return the code below. Then hold down the alt key, right click the finder and then relaunch)
//Use below code in terminal to show hidden files
defaults write com.apple.finder AppleShowAllFiles YES
//Use below code in terminal to hide hidden files
defaults write com.apple.finder AppleShowAllFiles NO
@mmarrow
mmarrow / .gitignore
Last active August 29, 2015 14:16 — forked from octocat/.gitignore
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
# Packages #
@mmarrow
mmarrow / Addy-CSS-Debugger
Last active August 29, 2015 14:13
Addy Osmani One-Liner CSS debugger tool
[].forEach.call($$("*"),function(a){
a.style.outline="1px solid #"+(~~(Math.random()*(1<<24))).toString(16)
})