Skip to content

Instantly share code, notes, and snippets.

View aotarola's full-sized avatar
🎯
Focusing

Andres Otarola aotarola

🎯
Focusing
View GitHub Profile
@aotarola
aotarola / README-Template.md
Created April 3, 2019 02:15 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@aotarola
aotarola / Component.elm
Created May 29, 2016 15:38 — forked from pdamoc/Component.elm
Counter through JS
module Component exposing (..)
import Html exposing (..)
import Html.Attributes exposing (style)
import Html.Events exposing (onClick)
import Ports exposing (..)
-- MODEL
@aotarola
aotarola / Counter.elm
Created May 19, 2016 20:37 — forked from pdamoc/Counter.elm
Widget Union
module Counter exposing (..)
import Html exposing (..)
import Html.Attributes exposing (style)
import Html.Events exposing (onClick)
-- MODEL
type alias Model = Int
@aotarola
aotarola / First.elm
Created February 2, 2016 04:01 — forked from shamrin/First.elm
Multiple Elm main modules
module First where
import Html exposing (span, text)
main = span [ ] [text "Hello First!"]