gst
git status
gd
git diff
gdc
git diff --cached
gl
| xf-fan-feeds-development-local | |
| xfactor-poll | |
| txt-social-scene | |
| txf-social-hub |
gst
git status
gd
git diff
gdc
git diff --cached
gl
| // https://github.com/ariya/phantomjs/issues/10522 | |
| // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/bind | |
| if (!Function.prototype.bind) { | |
| Function.prototype.bind = function(oThis) { | |
| if (typeof this !== "function") { | |
| // closest thing possible to the ECMAScript 5 | |
| // internal IsCallable function | |
| throw new TypeError( | |
| "Function.prototype.bind what is trying to be bound is not callable"); |
| #/usr/bin/env bash | |
| # MIT © Sindre Sorhus - sindresorhus.com | |
| # git hook to run a command after `git pull` if a specified file was changed | |
| # Run `chmod +x post-merge` to make it executable then put it into `.git/hooks/`. | |
| changed_files="$(git diff-tree -r --name-only --no-commit-id ORIG_HEAD HEAD)" | |
| check_run() { | |
| echo "$changed_files" | grep --quiet "$1" && eval "$2" |
| @css { | |
| /* mobile only */ | |
| @media (max-width: 500px) {} | |
| /* retina */ | |
| @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {} | |
| /* smalltablet */ |
breakpoint()
@media (min-width: 1024px)
{block}
retina()
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx)
{block}
+breakpoint()