I hereby claim:
- I am SidIcarus on github.
- I am sidicarus (https://keybase.io/sidicarus) on keybase.
- I have a public key whose fingerprint is 5ABC 3931 D5A8 B2FE 6716 5BF4 FD62 4C69 7A63 61FE
To claim this, I am signing this object:
<p class="qualifyClassname-p"> | |
Hello. I am a p tag; | |
</p> |
<p class="qualifyClassname-p"> | |
Hello. I am a p tag; | |
</p> |
// ---- | |
// Sass (v3.4.12) | |
// Compass (v1.0.3) | |
// ---- | |
$td-font-size-base: 16; | |
@function contains($list, $value) { @return if(index($list, $value), true, false); } | |
@function strip-unit($num) { @return $num / ($num * 0 + 1); } | |
@function is-unit-type($a, $unit) { | |
$valid-units: 'deg', 'grad', 'turn', 'rad', 'px', 'em', 'rem', 'vh', 'vw', |
// ---- | |
// Sass (v3.4.12) | |
// Compass (v1.0.3) | |
// ---- | |
$black: #000; | |
$white: #fff; | |
// Base Colors Variations Map | |
$tint-shade-perc: 80%; |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
# shellcheck disable=1090,1091,2059 | |
# set ENV default value to 'dev'' | |
ENV="${1:-dev}" | |
# import (source) utility variables and functions | |
. "$DIR/bootstrap/utils" | |
# Terminal output to illustrate progress |
/** | |
* Supports IE9+, FF, Webkit | |
* @param callback | |
*/ | |
function watchElementState(callback) { | |
var MutationObserver = | |
window.MutationObserver || window.WebKitMutationObserver, | |
eventListenerSupported = window.addEventListener; | |
// callback.bind(this); |
((root, factory, has, name) => { | |
if (!has.call(root, name)) root[name] = factory(); | |
})(this || window, () => { | |
const consoleColors = { | |
default: "rgb(189, 198, 207)", | |
alert: "rgb(210, 70, 70)", | |
background: "rgb(64, 64, 64)", | |
info: "rgb(70, 140, 210)", | |
success: "rgb(35, 140, 35)", | |
warn: "rgb(225, 180, 110)" |
#!/bin/bash | |
# | |
# Copyright 2017-2018 Martin Goellnitz | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# This program is distributed in the hope that it will be useful, |