Skip to content

Instantly share code, notes, and snippets.

View ElForastero's full-sized avatar

Eugene Dzhumak ElForastero

View GitHub Profile
@ElForastero
ElForastero / react-visual-page-builders
Created April 19, 2022 12:04
Visual Page Builders using React.js
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/

Keybase proof

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:

@ElForastero
ElForastero / webkit-autofill.css
Last active March 30, 2022 11:27
How to remove autofill input background from chrome
.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;
}
@ElForastero
ElForastero / universal-font-family.css
Created May 21, 2021 16:29
Universal font-family
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
@ElForastero
ElForastero / jest.config.js
Created August 1, 2020 09:37
TSDX jest setup that works with WebStorm
// @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);
@ElForastero
ElForastero / Frame.js
Created April 24, 2018 11:21 — forked from robertgonzales/Frame.js
Use React portals to render inside shadow dom and iframes
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 (
@ElForastero
ElForastero / curl_headers.sh
Last active April 19, 2018 07:56
get only headers from curl
curl -sSL -D - example.com -o /dev/null
@ElForastero
ElForastero / nodelist-iteration.js
Created November 25, 2016 13:46 — forked from bendc/nodelist-iteration.js
ES6: Iterating over a NodeList
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
@ElForastero
ElForastero / photos_tag.rb
Last active May 22, 2016 07:03 — forked from sukima/photos_tag.rb
Jekyll Plugin for easy FancyBox usage
# 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/