AstonJ
Inspired by @dogweather’s thread about Active Record Doctor, have you seen any impressive or cool things in other non-BEAM languages or frameworks? If so please share!
When taking part please note…
- This is not a “I’d like to see X in Elixir or Phoenix" type thread.
- It is not even a thread about things that may or may not be a good fit for functional programming.
- It is just a thread to share cool things you’ve seen in other languages or frameworks

Why?
Who knows, it might spark someone’s imagination to do something cool in Elixir themselves ![]()
Please do not use this thread to criticise other languages or frameworks - let’s keep it focused on the positives.
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
:warning: Security advisory: Decimal DoS vulnerability
A vulnerability has been published for decimal where very large exponents can cau...
New
It would be helpful to have a list of companies worldwide that hire engineers without prior experience in Elixir. Often, it can be quite ...
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
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
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
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
Aludel - LLM Evaluation Workbench
Aludel is an embeddable Phoenix LiveView dashboard for evaluating and comparing LLM prompts across mult...
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
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
TwistingTwists
Perfect spot to come to get nerd sniped.
Watching this space
dogweather
Rust has a relational db library that connects to the db while you’re coding and uses the metadata to verify your code at compile-time.
https://github.com/launchbadge/sqlx
Kurisu
A bit off-topic since this isn’t about a specific language feature, but I recently discovered Campfire Write and I’m genuinely impressed by how they’ve tackled the worldbuilding/writing workflow problem for fiction authors.
What makes it stand out is the seamless integration between different creative phases: you can build your world (characters, locations, timeline, magic systems, etc.) and then jump straight into writing with all that context readily available. The UI manages to be both comprehensive and intuitive - no small feat given how complex worldbuilding can get.
The real clever bit is how they handle relationships between elements. Characters can be linked to locations, events to timelines, and it all feels organic rather than database-like. Plus the writing environment itself adapts to show relevant worldbuilding info contextually.
I know it’s probably not built with Elixir, but it’s got me thinking about how Phoenix LiveView could handle this kind of rich, interconnected content management. The real-time updates and stateful components seem like a natural fit for this domain.
Anyway, fascinating to see how they’ve solved the “creative chaos management” problem. Definitely sparking some weekend project ideas!
ausimian
The ‘backward’ pipe operator in F# (<|).
acrolink
Nothing. All cool things I have found in
Elixir.venkatd
I really love zod in typescript land that bridges the dynamic and static world:
What you do is you declare a schema and it auto-generates a parser that coerces untrusted json data to a type safe object.
The dream later would be that you have an Ecto-like DSL that generates a typesafe
cast(...)function similar to the parse function in zod (Basic usage | Zod). This might be worth exploring once types in Elixir landmatt-savvy
Elm’s time traveling debugger.
Step backwards or forwards through the state of your program.
cevado
Clojure’s Ifn and qualified keywords…
ifn:
basically any data type can “behave” as a function.
and qualified keywords:
when you call
thisit gonna return:cevado
Now that you mentioned Elm… I really like elm-ui it’s like “tailwind” but with functions and that compose as any other function, that tied with currying that Elm support is really awesome.
this is a talk by Richard Feldman on style-elements(first iteration of elm-ui)
Schultzer
I think we can do better