AstonJ
Nerves can run on tiny devices and I’m thinking of ways to use it - and I wondered how would YOU use it if you had the chance/time? ![]()
Trending in Discussions
As the title says, please share what you’ve been up to with Elixir. Whether that’s been learning it, looking into it, making stuff with i...
New
Hey there,
It’s been more than a year since we started using LiveView as our main UI library and building a whole library of UI componen...
New
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Quite interesting article Google brought me. Didn’t find any mentions about it here.
What do you think in general? Would you use togethe...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
Since we have deprecated our Erlang sections (as we have dedicated Erlang Forums now) let’s add this thread for those who’d like to post ...
New
What IDE or editor are you using for Elixir development?
Personally, I use Zed, and I really like it, but sometimes I wish there were a ...
New
Other Trending Topics
Edit: 2026 May 15 - This post is archived.
Mob is alive!!
Main docs: mob v0.7.11 — Documentation
A bit of explanation for the slightly c...
New
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #elixirconf-eu
- #metaprogramming
- #hex










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
AstonJ
My current thinking is some sort of smart camera that is activated by movement or sound - ideal for security or even wildlife observation. Could even be used for mega long time-lapse photography perhaps
I also love @Qqwy’s idea of a photo-booth! A friend and I were addicted to these last time we went on holiday and it’s a shame our local clubs and pubs don’t have them around here - they are a good laugh
tmbb
Knowing nothing about how medical devices qre usually coded, I wonder if Elixir would be reliable enough for medical devices such as pacemakers, prosthetics with engines, insulin pumps, deep brain simulation, etc.
Elixir is not capable of real time performance, of course (scheduling is implicit and you can’t predict how many instructions will execute per second, etc). Actually, for most medical devices which don’t (or shouldn’t) accept a network connection, I don’t see how useful elixir would be.
But it would be fun.
blatyo
I think it would cool to control an LED array to show system stats like build status on a bunch of projects or represent memory usage on a host.
frigidcode
I have the hardware sitting next to me for monitoring CI/CD statuses, it’s next on my list
I was going to have it done next month but my nerves talk was accepted for ElixirConf, so that’s where my time is now going.
dimitarvp
Any kind of home automation! Like monitoring and collecting a database of power consumption, automatically turn lights on and off, maybe manually accept a wireless command to arm the security system when going out, maybe even plant irrigation.
The BEAM being rock-solid should be a selling point in such scenarios.
(And yes, maybe medical devices.)
ryanwinchester
I’d love to make a zwave controller
which would also play well with this
CharlesO
I just got my solar system setup! 4-300watt mono-crystaline panels and 4 150ah deep cycle batteries.
The controller unit comes with an RJ54 port labeled RS232 and an rj45 to rs232 cable… quite usles as i dont have any laptop with an rs232 port… and i wont want to stand in front of the controller each time just to view readings…
I have Raspberry-Pi 3.0 (or 2.0 not too sure)
I would like to build a setup where readings can be collected continuously and uploaded to my online SQL Server from where I can have a proper real-time display of power consumption charts on the go, as well as alerts when the mains power goes off or on.
Too much?
Nicd
I’m working (very slowly, a couple of days per year) on a game called DuckTag. It’s basically laser tag but with RFID tags instead of lasers, you’d have a tag reader on your back that you are trying to protect and an RFID tag on your hand that you try to tag others with. When tagged, you’ll have to go to a respawn point to get back into the game.
Currently it’s at the point where the RFID reading works, the devices boot and network with each other, and start an Mnesia database that handles all the data updates. Very rudimentary game logic has been added, mainly to test things. There’s issues with reliability though, it feels like sometimes the devices aren’t running their supervisors or get stuck on something and I have to boot them up many times.
Next step would probably be to modify it so that I can just start all the nodes on my laptop in terminal screens instead of the actual hardware, to make it easier to develop. It’s too much work to set up all the boards and chargers and memory cards every time (since it’s 5 boards minimum: 2 players, 2 respawn points, 1 “judge” that coordinates things).
The pretty horrible code is available here: Mikko Ahlroth / duck-tag · GitLab
OvermindDL1
It would actually be awesome to program in something nerves-like for my propeller board, it has 8 (though 1 dedicated to handle message passing) cores of a pure message passing arch with no shared memory, but it is significantly not powerful enough for something like nerves, so I use my own homegrown coroutine C++ setup. ^.^;
However, it’s great for controlling lights and automation and such. I can dedicate a core or so to specific polling purposes with ease.
AndyL
I want a USB/Bluetooth bridge for my wired keyboard. Can’t find a good commercial solution. Rpi0W ought to work great - small and cheap.