I hereby claim:
- I am beacrea on github.
- I am beacrea (https://keybase.io/beacrea) on keybase.
- I have a public key ASAjKztmg3CwyDdyHzWMHS8STl_H8c5cx4MPw0c_ewoW8wo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
/* | |
Example SKARSTA | |
Desk sit/stand, white | |
Article Number: 490.849.65 | |
Length: 47 1/4" | |
Width: 27 1/2" | |
http://www.ikea.com/us/en/catalog/availability/S49084965 | |
STORE LIST | |
209 - AZ, Tempe |
// For http://www.destinylfg.com | |
// Execute to trigger update button every 3 seconds | |
// Refresh page to stop | |
setInterval(function(){ $('#updateMeForm').click(); }, 3000); |
// go to https://designers.mx/mixes?page=50 | |
var soundcloud = 'this_has_soundcloud'; | |
var spotify = 'this_has_spotify'; | |
var rdio = 'this_has_rdio'; | |
/* Adds Classes To All Album Parents */ | |
$('.indicator--rdio').closest('.mix--preview').addClass(rdio); | |
$('.indicator--soundcloud').closest('.mix--preview').addClass(soundcloud); | |
$('.indicator--spotify').closest('.mix--preview').addClass(spotify); |
Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
A Pen by Coty Beasley on CodePen.
var situation = 'pigs'; | |
var conditionEnd = ' like it\'s hot.'; | |
switch (situation) { | |
case 'pigs': | |
alert('Park it' + conditionEnd); | |
break; | |
case 'pimps': | |
alert('Drop it' + conditionEnd); | |
break; |
<link rel="import" href="../components/polymer/polymer.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; |
I use sass and only I added image dist path to assetsDirs array. | |
usemin image css path works like so: | |
usemin: { | |
options: { | |
assetsDirs: ['<%= yeoman.dist %>', '<%= yeoman.dist %>/images'] | |
}, | |
html: ['<%= yeoman.dist %>/{,*/}*.html'], | |
css: ['<%= yeoman.dist %>/styles/{,*/}*.css'] | |
}, |
[ | |
'{{repeat(0, 100)}}', | |
{ | |
picture: 'http://placekitten.com/' + '{{numeric(200,600)}}' + '/' + '{{numeric(200,600)}}', | |
age: '{{numeric(1, 10)}}', | |
name: '{{firstName()}}', | |
gender: '{{gender()}}' | |
} | |
] |