👍
👎
💯
🔢
🥇
🥈
🥉
🎱
This file contains hidden or 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 createNode( html ) { | |
return new DOMParser().parseFromString( html, "text/html" ).body.firstChild | |
} | |
var foo = createNode("<p>Texto<span>Olá</span></p>"); |
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Building a router</title> | |
<script> | |
var Router = { | |
routes: [], | |
mode: null, | |
root: '/', |
This file contains hidden or 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
%YAML 1.2 | |
--- | |
# http://www.sublimetext.com/docs/3/syntax.html | |
name: JavaScript (Babel) | |
file_extensions: [js, jsx, babel, es6] | |
first_line_match: ^#!\s*/.*\b(node|js)$\n? | |
scope: source.js | |
variables: | |
ident: '[_$a-zA-Z][$\w]*' |
This file contains hidden or 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
import { configure } from '@storybook/react' | |
import './style.css' | |
const req = require.context('../src/', true, /stories\.js$/) | |
function loadStories() { | |
req.keys().forEach(req) | |
} | |
configure(loadStories, module) |
This file contains hidden or 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
git branch --merged | grep -v -e "master" -e "\*" | xargs -n 1 git branch -d |
This file contains hidden or 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
@media (pointer: coarse) and (hover: none) { } | |
/* https://css-tricks.com/touch-devices-not-judged-size/ */ |
This file contains hidden or 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
# .gitconfig | |
[user] | |
email = [email protected] | |
[alias] | |
st = status | |
ci = commit | |
br = branch | |
co = checkout | |
up = "!git remote update -p; git merge --ff-only @{u}" | |
emenda = commit --amend --no-edit |
This file contains hidden or 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
import React, { Component } from "react" | |
import VisibilitySensor from "react-visibility-sensor" | |
const optsVisibily = { | |
minTopValue: 400, | |
partialVisibility: true, | |
scrollDelay: 100 | |
} | |
const WithScroll = WrapComponent => |
This file contains hidden or 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
import React from "react"; | |
import Provider, { Consumer } from "./Context"; | |
const App = () => ( | |
<Provider> | |
<Consumer> | |
{({ count }) => { | |
return ( | |
<div> |
OlderNewer