Skip to content

Instantly share code, notes, and snippets.

View luandro's full-sized avatar

luandro luandro

View GitHub Profile
Hyperterm
@luandro
luandro / index.html
Created December 13, 2016 11:11
Location Loader
<svg class="locationSVG" viewBox="200 175 400 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<clipPath id="boxMask">
<rect x="290" y="190" class="boxMask" width="220" height="220"/>
</clipPath>
</defs>
<g clip-path="url(#boxMask)">
<path class="pin" fill-rule="evenodd" clip-rule="evenodd" d="M400,289c-11,0-20,9-20,20c0,15.4,17.6,42,18.3,43.1c0.4,0.6,1,0.9,1.7,0.9c0.7,0,1.3-0.3,1.7-0.9
c0.7-1.1,18.3-27.7,18.3-43.1C420,298,411,289,400,289z M400,301c-4.4,0-8,3.6-8,8s3.6,8,8,8c4.4,0,8-3.6,8-8S404.4,301,400,301z" fill="#FF5722"/>
<g class="track">
Verifying that +luandro is my blockchain ID. https://onename.com/luandro
@luandro
luandro / client.js
Last active November 7, 2015 12:36
Universal rendering redux-router
import React from "react";
import ReactDOM from "react-dom";
import { Provider } from 'react-redux';
import {ReduxRouter} from 'redux-router';
import configureStore from "./configureClientStore";
import DevTools from "./DevTools";
const store = configureStore(window.__INITIAL_STATE__);
const reactRoot = window.document.getElementById("react-root");
ReactDOM.render(