Skip to content

Instantly share code, notes, and snippets.

View danilowoz's full-sized avatar

Danilo Woznica danilowoz

View GitHub Profile
@danilowoz
danilowoz / createNode.js
Created February 24, 2017 12:33
Convert String to Dom element
function createNode( html ) {
return new DOMParser().parseFromString( html, "text/html" ).body.firstChild
}
var foo = createNode("<p>Texto<span>Olá</span></p>");
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Building a router</title>
<script>
var Router = {
routes: [],
mode: null,
root: '/',
%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]*'
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)
@danilowoz
danilowoz / Delete merged branches from local.txt
Created December 18, 2017 12:03
Delete merged branches from local
git branch --merged | grep -v -e "master" -e "\*" | xargs -n 1 git branch -d
@media (pointer: coarse) and (hover: none) { }
/* https://css-tricks.com/touch-devices-not-judged-size/ */

👍 👎 💯 🔢 🥇 🥈 🥉 🎱 🅰️ 🆎

// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
// choose either `'stable'` for receiving highly polished,
// or `'canary'` for less polished but more frequent updates
updateChannel: "stable",
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
// choose either `'stable'` for receiving highly polished,
// or `'canary'` for less polished but more frequent updates
updateChannel: "stable",