Skip to content

Instantly share code, notes, and snippets.

View u0421793's full-sized avatar

Ian Tindale u0421793

  • London
View GitHub Profile
@coverboy
coverboy / index.html
Last active September 16, 2018 14:51
html5 skeleton template
<!doctype html>
<html lang="en">
<!--한글은 lang="ko" Learn more : https://www.w3.org/International/questions/qa-html-language-declarations-->
<head>
<meta charset="utf-8">
<title></title>
<meta name="description" content="">
<meta name="author" content="">
<meta name="keywords" content="">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0">
@hipertracker
hipertracker / Language.elm
Created November 19, 2016 17:08
Elm decoders for nested JSON structures
module Models.Language exposing (..)
import Json.Decode exposing (int, string, decodeString, Decoder)
import Json.Decode.Pipeline exposing (decode, required)
type alias Language =
{ id : Int
, name : String
, label : String