A Pen by Captain Anonymous on CodePen.
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
| //[a-z0-9]{10} | |
| clean: { | |
| style: { | |
| src: [ | |
| '<%= project.path.images %>/{,*/}*-*.png' | |
| ] | |
| } | |
| }, |
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
| var docRef, docLayers, myFolder, myOutput, pngExportOptions; | |
| docRef = app.activeDocument; | |
| docLayers = docRef.artLayers; | |
| myOutput = { | |
| name: docRef.name.replace(/\.pdf/,''), | |
| path: docRef.path, | |
| fullPath: docRef.path + '/' + docRef.name.replace(/\.pdf/,'') | |
| } | |
| myFolder = new Folder (myOutput.fullPath); |
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
| // Include the selectors for the `$sprite` given the `$map` and the | |
| // `$full-sprite-name` | |
| // @private | |
| @mixin sprite-selectors($map, $sprite-name, $full-sprite-name) { | |
| @each $selector in $sprite-selectors { | |
| @if sprite_has_selector($map, $sprite-name, $selector) { | |
| @if $selector == [something normal]{ | |
| &:#{$selector}, &.is-#{$selector}{ | |
| @include sprite-background-position($map, "#{$sprite-name}_#{$selector}"); | |
| } |
- Login Screen ALT+CTRL+F1 To get Terminal
- Login with messed up user
~$ ls -a
~$ vi .xsession-errors
- Read the Error. Google.
- Check for a bad shell script in .profile
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
| https://npmjs.org/package/grunt-contrib-watch | |
| How do I fix the error EMFILE: Too many opened files.? | |
| This is because of your system's max opened file limit. For OSX the default is very low (256). Temporarily increase your limit with ulimit -n 10480, the number being the new max limit. |