I hereby claim:
- I am elforastero on github.
- I am elforastero (https://keybase.io/elforastero) on keybase.
- I have a public key ASDZvjdIvO7ECgQcV2r4soLPHFfGDGsKNIl9TTVhDU_8Ywo
To claim this, I am signing this object:
https://blocks-ui.com/demo/ | |
https://pagedraw.io/tutorials/data-bindings | |
https://craft.js.org/ | |
https://www.plasmic.app/ | |
https://responsevault.com/demo/ | |
https://divjoy.com/build | |
https://webcodesk.com/ |
I hereby claim:
To claim this, I am signing this object:
.input:-webkit-autofill, | |
.input:-webkit-autofill:hover, | |
.input:-webkit-autofill:focus, | |
.input:-webkit-autofill:active { | |
-webkit-text-fill-color: var(--color-text-primary); | |
transition: background-color 999999999s ease-in-out 0s; | |
} |
body { | |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; | |
} |
// @see https://github.com/formium/tsdx/issues/270#issuecomment-571042920 | |
const { createJestConfig } = require('tsdx/dist/createJestConfig'); | |
const { paths } = require('tsdx/dist/constants'); | |
process.env.BABEL_ENV = 'test'; | |
process.env.NODE_ENV = 'test'; | |
module.exports = createJestConfig(undefined, paths.appRoot); |
class Frame extends Component { | |
componentDidMount() { | |
this.iframeHead = this.node.contentDocument.head | |
this.iframeRoot = this.node.contentDocument.body | |
this.forceUpdate() | |
} | |
render() { | |
const { children, head, ...rest } = this.props | |
return ( |
curl -sSL -D - example.com -o /dev/null |
var elements = document.querySelectorAll("div"), | |
callback = (el) => { console.log(el); }; | |
// Spread operator | |
[...elements].forEach(callback); | |
// Array.from() | |
Array.from(elements).forEach(callback); | |
// for...of statement |
# Title: Photos tag for Jekyll | |
# Authors: Devin Weaver | |
# Description: Allows photos tag to place photos as thumbnails and open in fancybox. Uses a CDN if needed. | |
# | |
# ** This only covers the markup. Not the integration of FancyBox ** | |
# | |
# To see an unabridged explination on integrating this with [FancyBox][1] | |
# Please read my [blog post about it][2]. | |
# | |
# [1]: http://fancyapps.com/fancybox/ |