Skip to content

Instantly share code, notes, and snippets.

View arecvlohe's full-sized avatar
🚫
End ASF Mascotry / Drop ICE

Adam Recvlohe arecvlohe

🚫
End ASF Mascotry / Drop ICE
View GitHub Profile
@arecvlohe
arecvlohe / Main.elm
Created May 6, 2017 03:50 — forked from anonymous/Main.elm
Elm Hex Clock
module Main exposing (..)
import Html exposing (Html, Attribute, div, text)
import Html.Attributes exposing (style)
import Time exposing (Time, every)
import List exposing (map)
import String exposing (join, length)
import Date exposing (fromTime, hour, minute, second)
@arecvlohe
arecvlohe / Main.elm
Created May 6, 2017 03:27 — forked from anonymous/Main.elm
Elm Hex Clock
module Main exposing (..)
import Html exposing (Html, Attribute, div, text)
import Html.Attributes exposing (style)
import Time exposing (Time, every, hour, minute, second, inHours, inMinutes, inSeconds)
import List exposing (map)
import String exposing (join, length)
-- STYLES
@arecvlohe
arecvlohe / Main.elm
Last active September 26, 2016 02:36 — forked from chrisbuttery/Main.elm
Elm 0.17 - Change Background Color Based on Mouse Position
import Html exposing (Html, text, div)
import Html.Attributes exposing (style)
import Html.App as Html
import Mouse exposing (..)
main =
Html.program
{ init = init
, view = view
, update = update

Widget Menagerie