- elm language support
- HTML to Elm convert html to elm
- elm-format format on save
- vscode-elm-jump jump to definition of function
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module Foo exposing (..) | |
| type Msg | |
| = Uno | |
| | Dos | |
| | Tres | |
| update msg foo = |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| port module Ports exposing (..) | |
| import Json.Encode | |
| type alias Key = | |
| String | |
| type alias Value = |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| port upload : ( String, String, String ) -> Cmd msg | |
| port status : (String -> msg) -> Sub msg |
- os, sys, and argparse
- re
- json, csv, and pprint
- datetime and time
- math, statistics, and random
text-shadow: 0 1px 2px rgba(0,0,0,0.20);
try, button hover state: 1px shift up with the increased drop shadow spread
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module Page.Login exposing (..) | |
| import Html exposing (..) | |
| import Html.Attributes exposing (..) | |
| import Html.Events exposing (..) | |
| import Route | |
| import Time exposing (Time) | |
| -- Model |
El Ten Eleven
Helios
Tortoise
The Octopus Project
Astronauts etc.
Stars Of The Lid
Elskavon
Solar Fields
Kye Kye
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| input:-webkit-autofill { | |
| -webkit-box-shadow: inset 0 0 0px 9999px white; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| worker_processes 1; | |
| events { | |
| worker_connections 1024; | |
| } | |
| http { | |
| include mime.types; | |
| default_type application/octet-stream; | |
| sendfile on; |