To leave the file in the repo but ignore future changes to it:
git update-index --assume-unchanged <file>
and to undo this:
git update-index --no-assume-unchanged
| /** | |
| * Roboto. | |
| */ | |
| /* (normal) */ | |
| @include font-face( | |
| "roboto", | |
| font-files( | |
| "Roboto-Regular-webfont.ttf", | |
| "Roboto-Regular-webfont.eot", |
To leave the file in the repo but ignore future changes to it:
git update-index --assume-unchanged <file>
and to undo this:
git update-index --no-assume-unchanged
| /** @define MediaEmbed */ | |
| /** | |
| * Media embeds | |
| * | |
| * For use with media embeds – such as videos, slideshows, or even images – | |
| * that need to retain a specific aspect ratio but adapt to the width of their | |
| * containing element. | |
| * | |
| * Based on: http://alistapart.com/article/creating-intrinsic-ratios-for-video |
| #!/bin/bash | |
| # Take a screenshot of an area of the screen, upload it to dropbox and put the url into the clipboard | |
| # Put file in any directory under your dropbox | |
| # If it is subfolder, than you need to make them manually | |
| FILENAME=~/Dropbox/Public/Screenshots/Screenshot_`date +%Y-%m-%d-%H:%M`.png | |
| # Select an area and save the screenshot | |
| # you need to instal gnome-screenshot |
CSS Coding Standards you must conform to when writing CSS in Xfive projects.
Search gist for keyword and by specific user
git user:el22or
| multipass: true | |
| plugins: | |
| - addAttributesToSVGElement: false | |
| - addClassesToSVGElement: false | |
| - cleanupAttrs: true | |
| - cleanupEnableBackground: true | |
| - cleanupIDs: true | |
| - cleanupListOfValues: true | |
| - cleanupNumericValues: |