Skip to content

Instantly share code, notes, and snippets.

View seliopou's full-sized avatar
💭
I may be slow to respond.

Spiros Eliopoulos seliopou

💭
I may be slow to respond.
View GitHub Profile
@seliopou
seliopou / static-voronoi.html
Last active August 29, 2015 13:57
Static Voronoi diagram example
<!DOCTYPE html>
<meta charset="utf-8">
<style>
/* taken from: http://bl.ocks.org/mbostock/4060366 */
path {
stroke: #fff;
}
@seliopou
seliopou / Video.elm
Created May 13, 2014 00:42
An example of using elm-d3 to embed a video.
-- This is how you embed a video in your Elm program using elm-d3. From the
-- root directory of the elm-d3 project, compile it using something like the
-- following command:
--
-- elm --make --src-dir=src `./scripts/build-flags` /path/to/Video.elm
--
-- Of course, replace /path/to/Video.elm with the path to this module.
--
module Video where
@seliopou
seliopou / FileInput.elm
Last active August 29, 2015 14:01
An example of using elm-d3 to create a form with a file input.
-- This is how you create a form that supports file upload, and drag-n-drop.
-- From the root directory of the elm-d3 project, compile it using something
-- like the following command:
--
-- elm --make --src-dir=src `./scripts/build-flags` /path/to/FileInput.elm
--
-- Of course, replace /path/to/FileInput.elm with the path to this module.
--
module FileInput where
@seliopou
seliopou / _.md
Last active August 29, 2015 14:05
test
@seliopou
seliopou / _.md
Last active August 29, 2015 14:05
Tributary inlet
@seliopou
seliopou / _.md
Last active August 29, 2015 14:05
Scale Solar System
@seliopou
seliopou / _.md
Last active August 29, 2015 14:05
Bar Chart
@seliopou
seliopou / _.md
Created September 3, 2014 00:15
Bar Chart - Solution
@seliopou
seliopou / _.md
Created September 3, 2014 10:18
Bar Chart - Solution
-- This is an Elm implementation of TodoMVC using elm-d3 to construct views.
-- For information about the TodoMVC project and the functionality that's
-- implemented below, go here:
--
-- http://todomvc.com
--
-- To build this app, from the root directory of the elm-d3 project, compile it
-- using the following commands:
--
-- make