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
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="https://cdn.tailwindcss.com"></script> | |
</head> | |
<body> | |
<div class="max-w-lg mx-auto mt-12"> | |
<h1 class="text-xl mb-2">Frontend challenge!</h1> | |
<p class="mb-8"> | |
Complete the functionality (<a |
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 | |
# Totally c&p from various places all accross Internet | |
# [JohnMosesman]: Even MORE c&p from http://codegists.com/snippet/shell/codeship-elixirsh_paulgoetze_shell & http://www.codegists.com/snippet/shell/elixirsh_lessless_shell | |
# | |
# Erlang | |
ERLANG_VERSION=${ERLANG_VERSION:-19.0} | |
ERLANG_CACHED_DOWNLOAD="${HOME}/cache/OTP-${ERLANG_VERSION}.tar.gz" | |
ERLANG_DIR=${ERLANG_DIR:="$HOME/erlang"} | |
# Elixir | |
ELIXIR_VERSION=${ELIXIR_VERSION:-1.3.4} |