Create test.json:
cat << 'EOF' > ./test.json
[
{
"name": "First1 Last",
"email": "[email protected]",
"state": "A"
},
#Minecraft server properties | |
allow-cheats=true | |
allow-flight=true | |
allow-nether=true | |
broadcast-console-to-ops=true | |
broadcast-rcon-to-ops=true | |
difficulty=easy | |
enable-command-block=false | |
enable-jmx-monitoring=false | |
enable-query=false |
1 x 12 = _____ | 1 x 9 = _____ | |
2 x 4 = _____ | 2 x 5 = _____ | |
3 x 11 = _____ | 3 x 7 = _____ | |
4 x 8 = _____ | 4 x 5 = _____ | |
5 x 7 = _____ | 5 x 12 = _____ | |
6 x 3 = _____ | 6 x 11 = _____ | |
7 x 10 = _____ | 7 x 3 = _____ | |
8 x 8 = _____ | 8 x 11 = _____ | |
9 x 10 = _____ | 9 x 9 = _____ | |
10 x 11 = _____ | 10 x 11 = _____ |
Create test.json:
cat << 'EOF' > ./test.json
[
{
"name": "First1 Last",
"email": "[email protected]",
"state": "A"
},
I've had to install and configure these things a few times, and I always forget how to do it, so here it is for posterity:
Update brew and install pandoc:
brew update
brew install pandoc
Install mactex from https://www.tug.org/mactex/
1.11.1 vs 1.3.2 universe configs
diff --git a/repo/packages/M/marathon-lb/8/config.json b/repo/packages/M/marathon-lb/8/config.json
index aef8a4cc..6e25fe94 100644
--- a/repo/packages/M/marathon-lb/8/config.json
+++ b/repo/packages/M/marathon-lb/8/config.json
@@ -19,6 +19,11 @@
"minimum": 1,
"type": "number"
kerl build 19.1 19.1 && kerl install 19.1 ~/erlang/19.1 | |
kerl build 19.2 19.2 && kerl install 19.2 ~/erlang/19.2 | |
mkdir test | |
cat >test/test_SUITE.erl <<EOL | |
-module(test_SUITE). | |
-include_lib("common_test/include/ct.hrl"). | |
-compile([export_all]). | |
all() -> | |
[log_test]. |
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQChLWiHqtsxxrnrjL/kOksOzfQziQFw+dWyui+UcpKAz1tpKNP+pWAcowLamdu6pWq2XDT7RQZ+gulo94qs5VkV26DhkyUar2QKRbXIAH+lP0D/1IzOw/Al20l0lGScbuVrlAJUbjEzXIEKs/oDw8WA6af/U6b5AnHMMHzGibOxyozWgBhfBdRHjsuSzY28DZj/spnEMjd98stcG7fEa5r/lIy4QXswCNv6aWiFJtruTpm03TLTyK3tJsTMOw0ZqO9uYOrA1Fr3La68rA9SBP4bIMlgaxBrct7TEIFHHyD/NZynUmRE9NH3t9YncV4kC/Pt5/9wL5TZRZxAzgpUVt/MAkuv7CbKSOyR9nl0RwvtpOvfsJrX9O0dO8ILPvow2O96ziWPU0Z/VaGJGugiqPq2yzAEWVWm5ejgu0L/nJxtkbVhxYPvg6ncHrKkxaVYj/lxzxJHBmUdL9IFvyIxYrXeG6J1YT9Y1rdJjkq+8pl2gtdboRWYjARHRrLiEckwnwdQ+wCtVzoVoBA0+eEY3AhyxY44vvFJI0axdbOSYm0VWXKWxdOJ6FPBYivxLJGK0ozYPeOnPjS2+/6JoFiDPp59OvghcR3Bb2HsX5NgZM3TpmJPn3JwLXWyfmCZHFGTrDfWih1s2f9dF1wiYM4KLriJFMitj/FlrA2yGVVzP3Kbew== [email protected] |
Erlang only has a few primitives that you need to worry about. Here they are below with corresponding Elixir examples.
integer
: Erlang: 123
, Elixir: 123
float
: Erlang: 123.5
, Elixir: 123.5
atom
: Erlang: hello
, Elixir: :hello
binary
: Erlang: <<"hello">>
or <<10,20>>
, Elixir: "hello"
or <<10,20>>
{ | |
"riak": { | |
"framework-name": "riak", | |
"hostname": "riak.marathon.mesos", | |
"marathon": "m1.dcos:8080", | |
"master": "m1.dcos:5050", | |
"zk": "m1.dcos:2181", | |
"user": "root", | |
"role": "riak", | |
"auth-principal": "riak", |