I hereby claim:
- I am lukewestby on github.
- I am lukewestby (https://keybase.io/lukewestby) on keybase.
- I have a public key ASBijz155hgDB_gJeWcxikg6EVr2g7NztRja37w01uAXjwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
module Ellie.Ui.CodeEditor | |
exposing | |
( Attribute | |
, LinterMessage | |
, Position | |
, Severity(..) | |
, linterMessages | |
, mode | |
, onChange | |
, readOnly |
The following terms are used throughout this agreement:
You - the person or legal entity including its affiliates asked to accept this agreement. An affiliate is any entity that controls or is controlled by the legal entity, or is under common control with it.
Project - is an umbrella term that refers to any project owned by the Ellie maintainers that serves the operation of https://ellie-app.com.
Contribution - any type of work that is submitted to a Project, including any modifications or additions to existing work.
export ZSH=/Users/$(whoami)/.oh-my-zsh | |
ZSH_THEME="luke" | |
CASE_SENSITIVE="true" | |
HYPHEN_INSENSITIVE="true" | |
ENABLE_CORRECTION="true" | |
COMPLETION_WAITING_DOTS="true" | |
DISABLE_UNTRACKED_FILES_DIRTY="true" | |
plugins=(rails git ruby zeus bundler) |
#! env/bin/python | |
import subprocess | |
import json | |
from typing import Any, Optional, List, TypeVar, Tuple, Callable, Set | |
import os | |
import sys | |
T = TypeVar('T') | |
U = TypeVar('U') |
port module Main exposing (..) | |
import Html exposing (..) | |
import Html.App as Html | |
import Html.Attributes exposing (..) | |
import Html.Events exposing (..) | |
type LoginState | |
= Waiting |
port module Main exposing (..) | |
import Worker | |
{-| We'll receive messages from the world in the form of strings here -} | |
port messagesIn : (String -> msg) -> Sub msg | |
{-| This port will send our counter back out to the world -} | |
port modelOut : Model -> Cmd msg |
module JortSort exposing (jortSort) | |
jortSort : List comparable -> Bool | |
jortSort list = | |
let | |
-- sort the list | |
sortedList = | |
List.sort list | |
in | |
-- compare to see if it was originally sorted |
module Main exposing (..) | |
import Time | |
import Launchpad exposing (Node, button, group, Color, green, red) | |
type alias Model = | |
{ color : Color } | |