I hereby claim:
- I am brodavi on github.
- I am brodavi (https://keybase.io/brodavi) on keybase.
- I have a public key ASBaLjJ2oJ3Dtxqq6Mg1CkQdEvktrheCeeqN6wsdjZk3Vgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| import isolate from '@cycle/isolate' | |
| import CycleDOM from '@cycle/dom' | |
| const {div, button, h1, h4, a} = CycleDOM | |
| function main (sources) { | |
| const click$ = sources.DOM.select('.get-random') | |
| .events('click') | |
| const USERS_URL = 'http://jsonplaceholder.typicode.com/users/' |
| import Cycle from '@cycle/core' | |
| import {Observable} from 'rx' | |
| import {div, ul, li, makeDOMDriver} from 'cycle-snabbdom' | |
| import {intersection, difference, sortBy} from 'lodash' | |
| function intent(keydownSource) { | |
| return keydownSource | |
| .map(ev => ev.code.replace('Key', '')) | |
| .filter(str => str.length === 1) | |
| } |
| module['exports'] = function echoHttp (hook) { | |
| hook.debug("Debug messages are sent to the debug console"); | |
| hook.debug(hook.params); | |
| hook.debug(hook.req.path); | |
| hook.debug(hook.req.method); | |
| <link rel="import" href="../paper-tabs/paper-tabs.html"> | |
| <link rel="import" href="../paper-tabs/paper-tab.html"> | |
| <link rel="import" href="../core-animated-pages/core-animated-pages.html"> | |
| <link rel="import" href="../core-animated-pages/transitions/hero-transition.html"> | |
| <link rel="import" href="../core-animated-pages/transitions/cross-fade.html"> | |
| <link rel="import" href="../core-animated-pages/transitions/slide-down.html"> | |
| <link rel="import" href="../core-animated-pages/transitions/slide-up.html"> | |
| <link rel="import" href="../core-animated-pages/transitions/tile-cascade.html"> | |
| <link rel="import" href="../paper-input/paper-input.html"> | |
| <link rel="import" href="../paper-button/paper-button.html"> |
| package; | |
| import nme.Lib; | |
| import nme.display.Bitmap; | |
| import nme.display.BitmapData; | |
| import nme.display.Sprite; | |
| import nme.events.MouseEvent; | |
| class TestScene extends Sprite | |
| { |