Elixir#
- Definition bei Wikipedia: https://de.wikipedia.org/wiki/Elixir_(Programmiersprache)
- "[...]Elixir ist eine funktionale, nebenläufige Allzweck-Programmiersprache, die auf der virtuellen Maschine von Erlang (BEAM) läuft.[...]"
- Das Phoenix-Webframework: Skalierbare, robuste Webanwendungen mit Elixir und Phoenix
- Die Ash-Umgebung: https://ash-hq.org/
- verschiedene Vibe-Coding-Ansätze, neben Perl:
- https://perlhacks.com/2026/02/treating-github-copilot-as-a-contributor/
(Beitrag von Dave Cross zu Perl, Kommentar mit Elixir-Tipp)
- https://perlhacks.com/2026/02/treating-github-copilot-as-a-contributor/
- Beginner-Tutorial
- https://hexdocs.pm/elixir/introduction.html
(Beginner-Tutorials, Screencasts und Guides auf der Elixier-Homepage)
- https://alchemist.camp/episodes/guessing-game
und https://www.youtube.com/watch?v=G3JRv2dHU9A
, Sourcecode, VSCode-Setup
für Elixir
- https://hexdocs.pm/elixir/introduction.html
- mix
- https://elixirschool.com/de/lessons/basics/mix
- https://hexdocs.pm/elixir/introduction-to-mix.html
Aus dem Vorwort:
>>As an Elixir developer, you will most likely use one of the many existing frameworks when writing your Elixir code. Phoenix
covers web applications, Ecto
communicates with databases, you can craft embedded software with Nerves
, Nx
powers machine learning and AI projects, Membrane
assembles audio/video processing pipelines, Broadway
handles data ingestion and processing, and many more. These frameworks handle the lower level details of concurrency, distribution, and fault-tolerance, so you, as a user, can focus on your own needs and demands.<<
- https://elixirschool.com/de/lessons/basics/mix
- Elixir and Continuous Integration ("ci") in Gitlab and the like:
- Elixir und GUI
- https://www.erlang.org/docs/25/installation_guide/install
-> WxWidgets
im wx-package und OTP
- https://github.com/kerryb/wx_ex
-> Elixir wrappers for the Erlang macros and records in the wx-package.
- https://www.erlang.org/docs/25/installation_guide/install
- Elixir und Shellkommandos
- https://stackoverflow.com/questions/22594988/run-shell-commands-in-elixir
-> System.cmd("ls", ["-al"]) #works
System.cmd("whoami", []) # => {"lukas\n", 0}
- https://stackoverflow.com/questions/22594988/run-shell-commands-in-elixir
- Elixir und Executables
- https://elixirschool.com/en/lessons/intermediate/escripts
-> "To create an executable with escript [...]: implement a main/1 function and update our Mixfile."
- https://elixirschool.com/en/lessons/intermediate/escripts
Add new attachment
Only authorized users are allowed to upload new attachments.