- 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)
This file contains 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
/** | |
* rafAsync | |
* using requestAnimationFrame to recheck for element | |
*/ | |
const rafAsync = () => { | |
return new Promise(resolve => { | |
requestAnimationFrame(resolve); | |
}); | |
} |
This file contains 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
Verifying my Blockstack ID is secured with the address 1NTZV9nrbSYfrabuPdMT5wMSEQiQQEssRh https://explorer.blockstack.org/address/1NTZV9nrbSYfrabuPdMT5wMSEQiQQEssRh |
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:
This file contains 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
/** | |
* (C)Leanest CSS spinner ever | |
*/ | |
@keyframes spin { | |
to { transform: rotate(1turn); } | |
} | |
.progress { | |
position: relative; |
This file contains 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
(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 () { |
Demo using window.pageYOffset to detect scroll position and trigger point for the text to stick to the top of the viewport.
Article: http://blog.grayghostvisuals.com/js/detecting-scroll-position
A Pen by Dennis Gaebel on CodePen.
This file contains 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
/** | |
* Easy trapezoids with 3D transforms | |
*/ | |
p { | |
position: relative; | |
display: inline-block; | |
padding: 1em; | |
margin: 2em; | |
} |
This file contains 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
/** | |
* 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; |
NewerOlder