├── .gitignore ├── .nvmrc ├── README.md ├── art ├── coin.svg ├── cover-art.svg ├── logo.svg ├── pop-can.svg └── pop-machine.svg ├── bower.json ├── package.json ├── src ├── Main.purs ├── index.css └── index.html └── web-images ├── coin-slot.svg ├── coin.svg ├── favicon.ico ├── functional-pop.svg ├── logo.svg ├── pop-machine-cutout-backgrounds.svg ├── pop-machine-graphics.svg ├── pop-machine-window.svg ├── pop-machine.svg ├── programming-pop.svg ├── reactive-pop.svg └── status-window-overlay.svg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lettier/purescript-pop/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v10.8.0 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lettier/purescript-pop/HEAD/README.md -------------------------------------------------------------------------------- /art/coin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lettier/purescript-pop/HEAD/art/coin.svg -------------------------------------------------------------------------------- /art/cover-art.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lettier/purescript-pop/HEAD/art/cover-art.svg -------------------------------------------------------------------------------- /art/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lettier/purescript-pop/HEAD/art/logo.svg -------------------------------------------------------------------------------- /art/pop-can.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lettier/purescript-pop/HEAD/art/pop-can.svg -------------------------------------------------------------------------------- /art/pop-machine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lettier/purescript-pop/HEAD/art/pop-machine.svg -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lettier/purescript-pop/HEAD/bower.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lettier/purescript-pop/HEAD/package.json -------------------------------------------------------------------------------- /src/Main.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lettier/purescript-pop/HEAD/src/Main.purs -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lettier/purescript-pop/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lettier/purescript-pop/HEAD/src/index.html -------------------------------------------------------------------------------- /web-images/coin-slot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lettier/purescript-pop/HEAD/web-images/coin-slot.svg -------------------------------------------------------------------------------- /web-images/coin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lettier/purescript-pop/HEAD/web-images/coin.svg -------------------------------------------------------------------------------- /web-images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lettier/purescript-pop/HEAD/web-images/favicon.ico -------------------------------------------------------------------------------- /web-images/functional-pop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lettier/purescript-pop/HEAD/web-images/functional-pop.svg -------------------------------------------------------------------------------- /web-images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lettier/purescript-pop/HEAD/web-images/logo.svg -------------------------------------------------------------------------------- /web-images/pop-machine-cutout-backgrounds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lettier/purescript-pop/HEAD/web-images/pop-machine-cutout-backgrounds.svg -------------------------------------------------------------------------------- /web-images/pop-machine-graphics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lettier/purescript-pop/HEAD/web-images/pop-machine-graphics.svg -------------------------------------------------------------------------------- /web-images/pop-machine-window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lettier/purescript-pop/HEAD/web-images/pop-machine-window.svg -------------------------------------------------------------------------------- /web-images/pop-machine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lettier/purescript-pop/HEAD/web-images/pop-machine.svg -------------------------------------------------------------------------------- /web-images/programming-pop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lettier/purescript-pop/HEAD/web-images/programming-pop.svg -------------------------------------------------------------------------------- /web-images/reactive-pop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lettier/purescript-pop/HEAD/web-images/reactive-pop.svg -------------------------------------------------------------------------------- /web-images/status-window-overlay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lettier/purescript-pop/HEAD/web-images/status-window-overlay.svg --------------------------------------------------------------------------------