# Elixir [docker-environment][nextjournal#docker-environment#f00dc296-74c8-4508-860e-a9425ddd241c] ```bash id=859ef006-fe77-40b3-8349-327ec927e925 bash_path="$(which bash)" cp "$bash_path" /usr/local/bin/real-bash echo "#!/usr/local/bin/real-bash" > "$bash_path" echo "shift; shift; shift" >> "$bash_path" echo "$(which elixir) -e \"\$@\" " >> "$bash_path" ``` Replacing the bash binary with the elixir binary, a common bash cell can be used as elixir interpreter: ```bash id=ccb74431-1db1-465b-a6e0-e2ac2be7c24a IO.puts "hello elixir" ``` Replacing a python next-repl interpreter with an elixir repl, which loads the repl code from a (transcluded) cell, we can upgrade an elixir interpreter to a next repl, opening a port on 9999 and reading code from it and responding with transit events. ```bash id=723f3bb4-c3e0-43b8-b146-f137142ebcd9 python_path="$(which python)" echo "#!/usr/bin/env bash" > "$python_path" echo "$(which elixir) -e \"\$(cat <> "$python_path" cat $python_path ``` This is the basic nextrepl code: ```bash id=5e2dd663-7073-494d-b50f-e79e4ba7afb1 {:ok, socket} = :gen_tcp.listen(_port = 9999, [:binary, active: false, reuseaddr: true, ip: {0,0,0,0}]) {:ok, client} = :gen_tcp.accept(socket) tag_write = fn(tag, data) -> line = "[\"~:#{tag}\",{}]" :gen_tcp.send(client, line) end tag_write.('nextrepl/hello', {}) tag_write.('prompt', {}) loop = fn(loop, bindings) -> {:ok, data} = :gen_tcp.recv(client, 0) IO.puts "received " IO.puts inspect(data) [reference][nextjournal#reference#130387ec-9535-4752-9765-d0755b50dcfa] loop.(loop, bindings) end loop.(loop, []) ``` This would be a stateful elixir repl. It does not finish booting yet, ```python id=19a3147c-9d44-4118-b4a1-dbe9ef27e6f8 1 ``` because the eval step is missing, but that would be only some few more lines... ```bash id=6ff15b12-4031-4573-b40e-a2ad04341837 # eval code (to be done) {result, bindings} = Code.eval_string(data, bindings) ``` [nextjournal#docker-environment#f00dc296-74c8-4508-860e-a9425ddd241c]: [nextjournal#reference#df9569ca-f29e-4772-bb92-8b350fa87a1f]: <#nextjournal#reference#df9569ca-f29e-4772-bb92-8b350fa87a1f> [nextjournal#reference#130387ec-9535-4752-9765-d0755b50dcfa]: <#nextjournal#reference#130387ec-9535-4752-9765-d0755b50dcfa>
This notebook was exported from https://nextjournal.com/a/CEx27r4BJ5SAUrNTJyo8cg?change-id=CFeSa5pDE3BRzoREwZkfPE ```edn nextjournal-metadata {:article {:settings nil, :nodes {"130387ec-9535-4752-9765-d0755b50dcfa" {:id "130387ec-9535-4752-9765-d0755b50dcfa", :kind "reference", :link [:output "6ff15b12-4031-4573-b40e-a2ad04341837" nil]}, "19a3147c-9d44-4118-b4a1-dbe9ef27e6f8" {:compute-ref #uuid "85075940-62c9-11e8-9a0e-c2f5409f8bf3", :exec-duration 37425, :id "19a3147c-9d44-4118-b4a1-dbe9ef27e6f8", :kind "code", :runtime [:runtime "68e159df-fb7e-4a9a-89db-3e7978e028dc"]}, "453434dd-6760-4e9e-8869-3c069ff6000a" {:environment [:environment "f00dc296-74c8-4508-860e-a9425ddd241c"], :environment? true, :id "453434dd-6760-4e9e-8869-3c069ff6000a", :kind "runtime", :language "python", :name "elixir-repl-creation", :type :nextjournal, :docker/environment-image "eu.gcr.io/nextjournal-com/environment@sha256:b8d15ea52980f22b966eb659857a3ca990f74f4af2cfd553e71984aa40c5624d"}, "5e2dd663-7073-494d-b50f-e79e4ba7afb1" {:compute-ref #uuid "debf2650-62b2-11e8-9a0e-c2f5409f8bf3", :exec-duration 1283, :id "5e2dd663-7073-494d-b50f-e79e4ba7afb1", :kind "code", :runtime [:runtime "697150f8-41e2-4c73-9a24-c50f5e81a5cd"]}, "68e159df-fb7e-4a9a-89db-3e7978e028dc" {:environment [:environment "453434dd-6760-4e9e-8869-3c069ff6000a"], :id "68e159df-fb7e-4a9a-89db-3e7978e028dc", :kind "runtime", :language "python", :name "elixir-repl", :type :nextjournal}, "697150f8-41e2-4c73-9a24-c50f5e81a5cd" {:environment [:environment "f00dc296-74c8-4508-860e-a9425ddd241c"], :environment? true, :id "697150f8-41e2-4c73-9a24-c50f5e81a5cd", :kind "runtime", :language "bash", :name "elixir-rt", :type :nextjournal, :docker/environment-image "eu.gcr.io/nextjournal-com/environment@sha256:af23f214246e314ff2d31c1f4e42a16b8659427b419c13d0956c0871a7c450ee", :environment/name "elixir-rt"}, "6ff15b12-4031-4573-b40e-a2ad04341837" {:compute-ref #uuid "30486310-6e66-11e8-ac36-e6bc3f105025", :id "6ff15b12-4031-4573-b40e-a2ad04341837", :kind "code", :runtime [:runtime "697150f8-41e2-4c73-9a24-c50f5e81a5cd"]}, "723f3bb4-c3e0-43b8-b146-f137142ebcd9" {:compute-ref #uuid "a75e8c20-62c9-11e8-9a0e-c2f5409f8bf3", :exec-duration 729, :id "723f3bb4-c3e0-43b8-b146-f137142ebcd9", :kind "code", :output-log-lines {:stdout 20}, :runtime [:runtime "453434dd-6760-4e9e-8869-3c069ff6000a"]}, "859ef006-fe77-40b3-8349-327ec927e925" {:compute-ref #uuid "f4468150-62c9-11e8-9a0e-c2f5409f8bf3", :exec-duration 116, :id "859ef006-fe77-40b3-8349-327ec927e925", :kind "code", :output-log-lines {}, :runtime [:runtime "697150f8-41e2-4c73-9a24-c50f5e81a5cd"]}, "b9879985-b38d-41d4-b861-4fc156dbc9fb" {:environment [:environment "697150f8-41e2-4c73-9a24-c50f5e81a5cd"], :id "b9879985-b38d-41d4-b861-4fc156dbc9fb", :kind "runtime", :language "bash", :name "elixir", :type :nextjournal}, "ccb74431-1db1-465b-a6e0-e2ac2be7c24a" {:compute-ref #uuid "0d166f10-62ca-11e8-9a0e-c2f5409f8bf3", :exec-duration 1278, :id "ccb74431-1db1-465b-a6e0-e2ac2be7c24a", :kind "code", :output-log-lines {:stdout 1}, :runtime [:runtime "b9879985-b38d-41d4-b861-4fc156dbc9fb"]}, "df9569ca-f29e-4772-bb92-8b350fa87a1f" {:id "df9569ca-f29e-4772-bb92-8b350fa87a1f", :kind "reference", :link [:output "5e2dd663-7073-494d-b50f-e79e4ba7afb1" nil]}, "f00dc296-74c8-4508-860e-a9425ddd241c" {:id "f00dc296-74c8-4508-860e-a9425ddd241c", :kind "docker-environment", :docker/environment-image "eu.gcr.io/nextjournal-com/environment@sha256:0669ed293a95835fa1300a50fedd06d270b670d1fc17d10c4a7a06e04c50bee0", :docker/import-image "elixir", :environment/name "elixir"}}, :nextjournal/id #uuid "5b0719e1-ee60-44db-93e2-532ff1fbdc61", :article/change {:nextjournal/id #uuid "5b200305-0214-48e8-94fd-66ad7c19a419"}}} ```