This file contains 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
-- https://ellie-app.com/npWNPSCdNa1/6 | |
module Main exposing (main) | |
import Element exposing (..) | |
import Element.Attributes exposing (..) | |
import Element.Events as Events | |
import Html | |
import Json.Decode as Json | |
import Style exposing (..) |
This file contains 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 Main exposing (main) | |
import Color | |
import Html exposing (Html) | |
import Element exposing (..) | |
import Element.Attributes exposing (center) | |
import Style exposing (..) | |
import Style.Color as Color | |
import Style.Font as Font |
This file contains 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
-- https://ellie-app.com/kbX7gy6LSa1/4 | |
module Main exposing (main) | |
import Dom.Scroll as S | |
import Html exposing (Html, div, text) | |
import Html.Attributes exposing (style) | |
import Html.Events exposing (..) | |
import Task | |
import Json.Decode as Json |
This file contains 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 Main exposing (..) | |
import TimeTravel.Html as TimeTravel | |
import Nav exposing (init, view, update, subscriptions) | |
main = | |
TimeTravel.program | |
{ init = init | |
, update = update |
This file contains 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
# Based on nico202's gist | |
# src: https://gist.github.com/nico202/9377b3b378eab950dc05566e733ea320#file-shell-nix-L1 | |
{ | |
packageOverrides = pkgs : with pkgs; rec { | |
# other env definitions | |
julia = pkgs.myEnvFun { | |
name = "julia"; | |
buildInputs = [ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
#!/bin/bash | |
set -euo pipefail | |
catch() { | |
echo "ERROR $1 occurred on $2" | |
} | |
trap 'catch $? $LINENO' ERR | |
pattern="${1? You must provide a search pattern}" |
This file contains 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
#!/bin/bash | |
set -euo pipefail | |
catch() { | |
echo "ERROR $1 occurred on $2" | |
} | |
trap 'catch $? $LINENO' ERR | |
pattern="${1? You must provide a search pattern}" |