This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 2nd version of Atom settings |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Atom Sync-Settings |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* -------------------------------------------------- | |
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] | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> | |
<path d="M2 6h20v3H2zm0 5h20v3H2zm0 5h20v3H2z" /> | |
</svg> |
NewerOlder