Skip to content

Instantly share code, notes, and snippets.

@schadeck
schadeck / exampleRecipe.md
Created June 20, 2022 17:16
Testing if this works with google hub

Zuppa Toscana

Ingredients

  • 6 oz bacon, chopped
  • 1 lb Italian Sausage, The "Hot" variety
  • 1 medium head garlic, 10 large cloves, peeled and minced or pressed
  • 1 medium finely diced
  • 4 cups chicken broth/stock, (32 oz)
  • 6 cups water, (48 oz)
@schadeck
schadeck / connectHTMLelements_SVG.png
Created May 31, 2022 20:15 — forked from alojzije/connectHTMLelements_SVG.png
Connect two elements / draw a path between two elements with SVG path (using jQuery)
connectHTMLelements_SVG.png
@schadeck
schadeck / checkdEl.js
Last active July 9, 2020 19:01
checkElement #js #promise
/**
* rafAsync
* using requestAnimationFrame to recheck for element
*/
const rafAsync = () => {
return new Promise(resolve => {
requestAnimationFrame(resolve);
});
}
Verifying my Blockstack ID is secured with the address 1NTZV9nrbSYfrabuPdMT5wMSEQiQQEssRh https://explorer.blockstack.org/address/1NTZV9nrbSYfrabuPdMT5wMSEQiQQEssRh
@schadeck
schadeck / keybase.md
Created February 4, 2019 14:47
keybase.md

Keybase proof

I hereby claim:

  • I am schadeck on github.
  • I am schadeck (https://keybase.io/schadeck) on keybase.
  • I have a public key ASChQoPhfutezItIHQ2FoKvxCLclT9B17xI5Yn0IlH4rTAo

To claim this, I am signing this object:

@schadeck
schadeck / dabblet.css
Created April 4, 2017 18:23 — forked from anonymous/dabblet.css
(C)Leanest CSS spinner ever
/**
* (C)Leanest CSS spinner ever
*/
@keyframes spin {
to { transform: rotate(1turn); }
}
.progress {
position: relative;
@schadeck
schadeck / coordinates.js
Created November 28, 2016 18:04 — forked from jonathantneal/coordinates.js
Exposing more coordinates to the DOM
(function () {
function define(object, properties) {
for (var property in properties) !(property in object) && Object.defineProperty(object, property, { get: properties[property], enumerable: true });
}
define(Element.prototype, {
width: function () {
return this.getBoundingClientRect().width;
},
height: function () {
@schadeck
schadeck / Sticky-Scroll.markdown
Created October 27, 2014 01:18
A Pen by Dennis Gaebel.
@schadeck
schadeck / dabblet.css
Created October 21, 2013 14:42 — forked from LeaVerou/dabblet.css
Easy trapezoids with 3D transforms
/**
* Easy trapezoids with 3D transforms
*/
p {
position: relative;
display: inline-block;
padding: 1em;
margin: 2em;
}
@schadeck
schadeck / dabblet.css
Created October 21, 2013 14:39 — forked from LeaVerou/dabblet.css
Slanted tabs with CSS 3D transforms
/**
* Slanted tabs with CSS 3D transforms
* See http://lea.verou.me/2013/10/slanted-tabs-with-css-3d-transforms/
*/
body { padding: 50px; }
nav {
position: relative;
z-index: 1;