Alguns cheat sheets do Docker
.
$ docker logs --tail 50 --follow --timestamps c3b8b3f5a77e
@import url(http://jsuol.com.br/g/uolfw/fonts/uol-text.css?type=bold,light&cache=11); | |
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ | |
/* Document | |
========================================================================== */ | |
/** | |
* 1. Correct the line height in all browsers. | |
* 2. Prevent adjustments of font size after orientation changes in iOS. | |
*/ |
!function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=4)}([function(e,t,n){var r;/*! jQuery v1.12.4 | (c) jQuery Foundation | jquery.org/license */!function(t,n){"object" |
git diff --stat | |
git diff --numstat | |
git diff --shortstat | |
git diff --dirstat | |
git diff --name-status |
function forceSSL(req, res, next) { | |
if (req.headers['x-forwarded-proto'] !== 'https') { | |
// console.log('FORCING SSL. Redirecting... ', [BASE_URL, req.url].join('')) | |
return res.redirect(301, [BASE_URL, req.url].join('')) | |
} |
https://getgrav.org/blog/macos-mojave-apache-multiple-php-versions |
/* From Modernizr */ | |
function whichTransitionEvent() { | |
var t; | |
var el = document.createElement('fakeelement'); | |
var transitions = { | |
'transition': 'transitionend', | |
'OTransition': 'oTransitionEnd', | |
'MozTransition': 'transitionend', | |
'WebkitTransition': 'webkitTransitionEnd' | |
} |
// https://davidwalsh.name/css-animation-callback | |
/* From Modernizr */ | |
function whichAnimationEvent() { | |
var t; | |
var el = document.createElement('fakeelement'); | |
var animations = { | |
'animation': 'animationend', | |
'WebkitAnimation': 'webkitTransitionEnd' | |
} |
"configurations": [ | |
{ | |
"type": "node", | |
"request": "launch", | |
"name": "Jest All", | |
"program": "${workspaceFolder}/node_modules/.bin/jest", | |
"args": ["--runInBand"], | |
"console": "integratedTerminal", | |
"internalConsoleOptions": "neverOpen", | |
"windows": { |
{ | |
// Use IntelliSense to learn about possible attributes. | |
// Hover to view descriptions of existing attributes. | |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "node", | |
"request": "launch", | |
"name": "Run Ava Tests", |