Skip to content

Instantly share code, notes, and snippets.

View taylor-jones's full-sized avatar

Taylor Jones taylor-jones

View GitHub Profile
// 2nd version of Atom settings
Atom Sync-Settings
@taylor-jones
taylor-jones / md-colors.scss
Last active April 13, 2016 12:15
md-colors.scss
/* --------------------------------------------------
Globally available color variables using
Google's Material Design color palette
https://www.google.com/design/spec/style/color.html
--------------------------------------------------
All color variable names are in the following format:
$md-{color}-[a][level]
@taylor-jones
taylor-jones / bulk_change_filenames
Last active October 16, 2016 17:10
bulk change filenames in folder
REM :: USING THE COMMAND PROMPT:
REM :: Snippet to change all the filenames in a directory (non-recusive)
REM :: The example below prepends all filenames with an underscore:
for %a in (*.*) do ren "%a" "_%a"
@taylor-jones
taylor-jones / recursive_change_ext
Last active October 16, 2016 17:09
Recursively change file extension w/ cmd
REM :: USING THE COMMAND PROMPT:
REM :: Recursively change file extensions in a directory.
REM :: The example below changes all .css files to .scss files:
for /R %x in (*.css) do ren "%x" *.scss
@taylor-jones
taylor-jones / hamburger-svg-snippet
Created March 20, 2016 22:54
hamburger menu svg
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path d="M2 6h20v3H2zm0 5h20v3H2zm0 5h20v3H2z" />
</svg>