Skip to content

Instantly share code, notes, and snippets.

View redolivedev's full-sized avatar

Red Olive Dev redolivedev

View GitHub Profile
@BrynM
BrynM / Sublime Snippets - PHP Documentor
Last active July 14, 2018 00:17
Sublime Snippets - PHP Documentor
# naming gists is dumb...
@michaelbonner
michaelbonner / terminal-change-perms
Created October 14, 2014 14:50
Terminal | change all files' and folders' permissions in directory
find ./ -type d -exec chmod 755 {} \;
find ./ -type f -exec chmod 644 {} \;