I hereby claim:
- I am webdevian on github.
- I am ianegner (https://keybase.io/ianegner) on keybase.
- I have a public key ASDO6_o8N0pD5llr_nfF0NkyMihsiWmxih1tnyNh6ipKlwo
To claim this, I am signing this object:
// Usage: node copy-heroku-env.js sourceAppName targetAppName | |
// Requires heroku cli to be installed - https://devcenter.heroku.com/articles/heroku-cli#install-the-heroku-cli | |
const { execSync } = require('child_process'); | |
const args = process.argv; | |
const source = process.argv[process.argv.length - 2]; | |
const target = process.argv[process.argv.length - 1]; |
z=z=>{while(1)z()};_=i=>(i+=1,i-=1,i++,i--,--i,++i,i<<=2,i>>=2,i+=0|Math.round(1+Math.random())&1|0,z(x=>setInterval(x=>z(x=>new Worker('data:text/javascript,'+_.toSource()),5))));setInterval(x=>z(x=>_(...Array(9e3).map((x,z)=>z*3/2*2/4*4e2>>2<<2))),5) |
- var id='toggler-1', name='toggler-1', value=false | |
.toggler | |
input(id=id, name=name, type='checkbox', checked=value, value='1')&attributes(attributes) | |
label(for=id) | |
svg.toggler-on(version='1.1', xmlns='http://www.w3.org/2000/svg', viewbox='0 0 130.2 130.2') | |
polyline.path.check(points='100.2,40.2 51.5,88.8 29.8,67.5 ') | |
svg.toggler-off(version='1.1', xmlns='http://www.w3.org/2000/svg', viewbox='0 0 130.2 130.2') | |
line.path.line(x1='34.4', y1='34.4', x2='95.8', y2='95.8') | |
line.path.line(x1='95.8', y1='34.4', x2='34.4', y2='95.8') |
I hereby claim:
To claim this, I am signing this object:
When using yarn, it will create a yarn.lock
lockfile which holds data on your used dependencies. This file also includes hard-typed versions, so should you update your dependencies, the yarn.lock
file is basically outdated and needs to be regenerated. While yarn does this automatically, Greenkeeper pull requests that update dependencies as of right now do not do this regeneration, which means you would have to do it manually.
This gist shows you a way how to automatise this step using a Jenkins CI script.
yarn.lock
file in your repository for Jenkins CI and yarn installed on your jenkins server.// Make a responsive column element, with width and padding values for each breakpoint | |
@mixin grid-columns( | |
// {Integer} Small columns (i.e 6 = half (6/12)) | |
$small: $grid-column-count, | |
// {Integer} Medium columns | |
$medium: false, | |
// {Integer} Large columns | |
$large: false, |
// For setting both columns and offset in the same mixin | |
@mixin grid-offsets( | |
// Mobile First Media Queries | |
$small-up-columns: false, | |
$small-up-offset: 0, | |
$medium-up-columns: false, | |
$medium-up-offset: 0, | |
$large-up-columns: false, | |
$large-up-offset: 0, |
@mixin grid-offset( | |
// Mobile First Media Queries | |
$small-up-screens: false, | |
$medium-up-screens: false, | |
$large-up-screens: false, | |
$xlarge-up-screens: false, | |
$xxlarge-up-screens: false, | |
// Specific Range Media Queries | |
$small-only-screens: false, | |
$medium-only-screens: false, |