The instructions are based on this answers.ros.org thread.
You may need the latest pip, follow the official instructions.
Install bloom:
The instructions are based on this answers.ros.org thread.
You may need the latest pip, follow the official instructions.
Install bloom:
$ ssh remote-host "epmd -names"
epmd: up and running on port 4369 with data:
name some_node at port 58769
Note the running on port for epmd itself and the port of the node you're interested in debugging. Reconnect to the remote host with these ports forwarded:
$ ssh -L 4369:localhost:4369 -L 58769:localhost:58769 remote-host
| Create and join the docker group. | |
| $ sudo addgroup --system docker | |
| $ sudo adduser $USER docker | |
| $ newgrp docker | |
| You will also need to disable and re-enable the docker snap if you added the group while it was running. | |
| $ sudo snap disable docker | |
| $ sudo snap enable docker |
| defmodule MyApp.Application do | |
| # See https://hexdocs.pm/elixir/Application.html | |
| # for more information on OTP Applications | |
| @moduledoc false | |
| use Application | |
| def start(_type, _args) do | |
| # List all child processes to be supervised | |
| children = [ |
| defmodule MyBlog.Repo.Migrations.CreatePost do | |
| use Ecto.Migration | |
| def change do | |
| create table(:posts, primary_key: false) do | |
| add :id, :uuid, primary_key: true | |
| add :body, :string | |
| add :word_count, :integer | |
| timestamps |
For any randos that stumble on this gist, you should consider buying Machine Learning in Elixir. Despite any notes I add here, it's an exceptional book that's worth your time and money.
I can't get the code snippet to work as written:
cols = ~w(sepal_width sepal_length petal_length petal_width)