A Pen by Coty Beasley on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="import" href="../components/polymer/polymer.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For http://www.destinylfg.com | |
// Execute to trigger update button every 3 seconds | |
// Refresh page to stop | |
setInterval(function(){ $('#updateMeForm').click(); }, 3000); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
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 |
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:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var https = require('https'); | |
// CONFIGURATION ####################################################################################################### | |
var token = 'SLACK TOKEN'; | |
var channel = 'CHANNEL ID'; | |
var privateChannel = false; | |
var delay = 300; // delay between delete operations in millisecond | |
// GLOBALS ############################################################################################################# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="container"></div> |