Skip to content

Instantly share code, notes, and snippets.

Avatar

Hassan Hayat TheSeamau5

  • Entrepreneur
  • Austin, TX
View GitHub Profile
View functionmusings.elm
type alias Function a b = a -> b
const : b -> Function a b
const b _ = b
compose : Function a b -> Function b c -> Function a c
compose =
(>>)
View listcompalt.elm
import Signal exposing (Address)
import Html exposing (Html, div, ul, li)
type alias Component action state effect view
= state
-> (action -> (state, List effect), view)
type alias HtmlComponent action state effect
= Component action state effect (Address action -> Html)
View componentalt.elm
import Signal exposing (Address)
import Html exposing (Html, div, span, button, text)
import Html.Events exposing (onClick)
import Time
type alias Component action state effect view =
state -> (action -> (state, List effect), view)
View componentalt2.elm
import Signal exposing (Address)
import Html exposing (Html, div, button, span, text)
import Html.Events exposing (onClick)
type alias Component action state effect view
= action
-> state
-> (state, List effect, view)
View compaltcounterpair.elm
import Signal exposing (Address)
import Html exposing (Html, div, button, span, text)
import Html.Events exposing (onClick)
type alias Component action state effect view
= Maybe action -> state -> (state, view, List effect)
type alias HtmlComponent action state effect
View componentstandard.elm
import Signal exposing (Address)
import Html exposing (Html, div, button, text, span)
import Html.Events exposing (onClick)
type alias Init options state effect = options -> (state, List effect)
type alias Update action state effect = action -> state -> (state, List effect)
type alias View state view = state -> view
type alias Component options action state effect view =
@TheSeamau5
TheSeamau5 / HelloTriangle.elm
Created May 5, 2014 02:06
Hello Triangle in WebGL in Elm
View HelloTriangle.elm
import MJS (..)
import Graphics.WebGL (..)
main = webgl (400, 400) scene
type Point = {point : V3}
toPoint vector = { point = vector }
triangle : V3 -> V3 -> V3 -> Triangle Point
triangle p1 p2 p3 = (toPoint p1, toPoint p2, toPoint p3)
@TheSeamau5
TheSeamau5 / JuliaSets.elm
Created May 7, 2014 22:13
Julia Sets in Elm
View JuliaSets.elm
------------------------------------------------
-- GLOBAL VARIABLES TO PLAY WITH
------------------------------------------------
-- number of iterations of the Julia Set
maxIterations : Int
maxIterations = 100
-- The constant c used in the julia function
@TheSeamau5
TheSeamau5 / HexagonalGrid.elm
Last active August 29, 2015 14:10
How to make a simple hexagonal grid in Elm
View HexagonalGrid.elm
import List (..)
import Graphics.Collage (..)
import Graphics.Element (..)
import Color (..)
------------------------------------------
-- 2D Point Type
type alias Point = {
x : Float,
y : Float
@TheSeamau5
TheSeamau5 / RotatingCube.elm
Created December 3, 2014 16:50
Idea for making 3D objects
View RotatingCube.elm
import Graphics.WebGL as GL
import Math.Vector3 as GL
import Math.Matrix4 as GL
type Point = {
x : Float,
y : Float,
z : Float
}