The Craftsman's Blog
Andi Altendorfer, e-Matrix Innovations
A playground and sandbox for
Altex
Andi, 2018-10-17
I’m using Elixir as a scripting language for the shell
And it’s that easy …
Write a file, hello.exs for example.#!/usr/bin/env elixirdefmoduleGreeterdodefhello(name),do:IO.puts"Hello, #{name}!"end# MainGreeter.hello(hd(System.argv())
Don’t forget to chmod +x hello.exs and then use the script from
the terminal....
, 2018-09-03
After publishing Bucketier,
a simple KV store for Elixir as a Hex-package about a month ago, today
let me announce Datasource. Source on GithubHex-packageDatasource is a side project used in my Raspberry Experiments and as
a handler of client-activities in my work-project.
A continues stream of data from any source
The Datasource is a straightforward module providing one
function ....