darkmarmot
Healthcare companies using Elixir?
At HCA Healthcare (500k employees and contractors), we’re currently experimenting with Elixir for both data integration (to handle parsing, routing and manipulating millions of messages to tens of thousands of connections) and also using it in our data science department.
I know that another Nashville healthcare company, Aspire, is using Elixir heavily in production.
With increased demand for realtime IoT data and predictive analytics, Elixir seems like a great fit for the coming needs in our industry.
We are trying to drive adoption by releasing open source projects in the language. Our first release recently went live for HL7 (the old international standard for healthcare messages).
We should hopefully be releasing an MLLP library (an old streaming protocol used heavily healthcare) and we are currently working on an Elixir FHIR library (the new international healthcare messaging standard).
I’m curious if other healthcare companies are working in Elixir right now? I’d love to connect and help push the language into our industry as I believe it could be incredibly beneficial (and save lives through better healthcare for everyone!).
Trending in Discussions
Other Trending Topics
Chat & Discussions>Discussions
Latest on Elixir Forum
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #websockets
- #elixirconf-us
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










First 10 of 49 Posts!
al2o3cr
I work at a healthcare-related company, ScriptDrop that runs on Elixir. We coordinate couriers & pharmacies to get prescriptions delivered to patients. We don’t have a ton of open-source stuff at the moment, but there is this little library:
https://github.com/ScriptDrop/elixir_signed_overpunch
We use it to handle the “signed overpunch” format that NCPDP D.0 transmissions use for some fields.
We started out using Phoenix + Elixir as “fast Rails” with some extra binary-protocol-handling goodness for D.0. We’re now getting into more Elixir-y things with GenStateMachine.
darkmarmot
I’ve never even heard of NCPDP! Will have to read up on it! Awesome!
blatyo
I know Iora Health uses Elixir and Pill Pack was seriously considering it, but I don’t know if they eventually did.
yurko
They actually have a huge Elixir project in Ukraine, it was used to reform and digitalise the healthcare system.
It’s also open source https://github.com/edenlabllc/ehealth.api
Here’s a talk about it:
hauleth
I have been working on EMR system Helium Health and whole application is written in Elixir. I also have been working on FHIR implementation in Elixir, but since then I have switched the job.
sribe
Cool. I had to do a little HL7 once, but so little that I could use very simple template strings. Nice to know this exists for more sophisticated needs.
darkmarmot
Wow, an Elixir EMR! that rocks!
chauhonglinh
It seems that you guys have green wide eyes WOW about Elixir
I have used Elixir about 5 years, in which I use 2 years of Elixir and Phoenix in production for a Pharmacy-related company.
Good things I can say about Elixir:
Other than that, I wish I would have chosen Ruby or Python to implement my current production system all the time, all day, every day. Because of the nature of immutable languages, it is a super pain to implement complex business logics that require keeping states and passing states around.
Things I would have finished within one day in Ruby or Python take me about a week in Elixir. And trust me, I write Elixir nearly as well as I write Ruby, and much better than I write Python. Still Elixir productivity is nothing to write home about.
And despite whatever other people say that Elixir is close to Ruby, there is nothing further from the truth. I have worked with Elixir for 5 years, write Elixir code for production system everyday, and I still have to look in docs for function references. Elixir’s syntax is very counter-intuitive. Its syntax is just better than Erlang
tmbb
This is an interesting perspective. For me it’s the opposite way around.
For low-level details of the code, mutability and direct pointer references make some things much easier (for example, everything having to do with graph algorithms, DOM manipulations, etc). I know because I’ve tried to do these things in Elixir and they are a pain.
However, for higher level program logic, elixir’s immutability seems like a positive thing, although probably less performant.
hubertlepicki
I know Nedap Healthcare from Netherlands is using Elixir extensively, which is a public knowledge as they posted ads and been hiring Elixir people and also have published open source Elixir code (so so am not breaching any NDA I may or may not have doing so ;)).
Last Post!
christhekeele
I’ve worked in healthcare for a while and have one project I keep on meaning to build–based on my prior work at a company years ago.
I built a background job scraper with a RESTful API interface in rails, which was far heavier than I’dve wanted.
The API aggregated and correlated the FDC’s NDC, rxcui, and other datasets around the US’s prescription drug databases. It’s a little bit of a chore to cross-reference them, I feel like it’d be valuable to a range of med tech orgs.
The stack would be Phoenix for client docs, Oban for the big processing, and Absinthe for graphql. Maybe REST too.
Deployed onto RapidAPI for quick licensing with free limited access for evaluation. Open sourcing id parsing libraries and NDC API clients along the way.
Obviously I have a pretty clear vision for this, but of course time is the issue. Open to work with others and divide any revenue weighted by contributions! Just DM me!