It sounds like you need a language that supports stronger types and concurrency. There are many good programming languages that might work if neither Go nor Typescript individually would meet your needs. I recommend examining the following to see if they would work better for you: Ada: https://learn.adacore.com/courses/intro-to-ada/index.html Elixir: https://elixir-lang.org/ Java: ... - Source: Hacker News / 6 days ago
A code snippet showing a simple program right on the home page and "selling" whatever features makes it special would go a long way. It's quite off-putting to have to delve deep into a guide in order to get a feel for a language. Some examples done right: https://lfe.io https://elixir-lang.org https://imba.io https://ocaml.org. - Source: Hacker News / 14 days ago
Bit of advice when learning a language, go to their main website first (they usually have one, e.g. https://elixir-lang.org/ for Elixir) and go through their “Getting Started” section. - Source: Reddit / 29 days ago
Before getting started you need to have both Elixir, the Hex package manager, the PostgreSQL relational database server and Node.js installed on your local computer to be able to follow through this guide. - Source: dev.to / about 1 month ago
My common practice for evaluating new technology, framework, or programming approach is based on the first feeling I have from the code presented. What is the cognitive effort to understand “the idea”? Things have to “look nice and be polished” in some way to convince me. I can still remember that overall ‘wow effect’ when seeing my first Phoenix LiveView presentation a few years ago. Such a small amount of code... - Source: Reddit / about 2 months ago
Phoenix uses Elixir, but when dealing with LiveView Hooks it requires JavaScript. But how about using another functional language in that area?. - Source: dev.to / about 2 months ago
a few weeks a go I started to learn Elixir and Phoenix Framework. - Source: dev.to / 2 months ago
The pipe operator is used to chain function calls together in a more readable and concise way. The operator takes the output of one function as the input for the next function in the chain. Here's an example of pipes in Elixir. - Source: dev.to / 2 months ago
Ok so I previously toyed around with Elixir in Exercism and liked a lot the language. I found Phoenix framework but I did not understand it quite well. - Source: dev.to / 2 months ago
The unfortunate thing is, we all *know* that Linux packages are not the best way to install Erlang and Elixir, but even elixir-lang.org is recommending it: https://elixir-lang.org/install.html#gnulinux. - Source: Reddit / 3 months ago
For more information about installing and using Elixir, you can check out the official Elixir website at https://elixir-lang.org/. - Source: dev.to / 3 months ago
I wouldn't say that the actor model is going away. There are several new-ish projects built around it or retrofitting it in more common languages. - Elixir (and Erlang) https://elixir-lang.org/. - Source: Hacker News / 3 months ago
Pleroma is one of the fediverse implementations for microblogging like Twitter and Mastodon. It uses Elixir which "runs on Erlang VM known for creating low-latency, distributed, and fault-tolerant systems.". - Source: dev.to / 3 months ago
Then use Elixir. It's basically written in Erlang and resembles a functional programming equivalent of Python. The only drawback of it and Erlang is that they are purely functional, so there's no falling back to imperative programming if things get hairy. That was frustrating for me and it appeared entirely unnecessary simply because the Actor model really enforced isolation between processes anyway, but YMMV. - Source: Reddit / 3 months ago
I agree -- http://elixir-lang.org/ seems like the perfect URL. If you put that in the readme file, the problem is solved. - Source: Reddit / 4 months ago
I code in Elixir on a large-scale Web App for my day job. We use Phoenix as our backend framework. Elixir is a pure functional language, and yet Phoenix is basically the way to write a Web App in Elixir to the point that many companies choose Elixir because it gives them access to Phoenix and Live View rather than picking Elixir for its own merits as a language, then deciding architecture. - Source: Reddit / 4 months ago
Elixir is a functional and concurrent programming language built on top of Erlang. Like Erlang, Elixir works using the BEAM VM. This enables higher extensibility and productivity in the Erlang VM while remaining compatible with Erlang’s ecosystem. - Source: dev.to / 5 months ago
An interactive shell for Elixir or Erlang. Both languages allow the developer to run the program interactively in a "shell". Developers can then modify the code of the application while it is running and "hot-patch" it at runtime. The shell runs in OS shell, so there is not much integration that can be done with the editor. - Source: Reddit / 5 months ago
Can you tell Fleet to use a custom language server for languages it does not officially support yet? I use Elixir for my day job, and have yet to find an IDE experience I am happy with for it yet. The IntelliJ IDEA plugin for it works ok, but it's mostly maintained by a single developer (who does a great job, don't get me wrong!), and has a lot of rough edges. - Source: Reddit / 5 months ago
Elixir language: A dynamic, functional language for building scalable and maintainable applications. - Source: dev.to / 6 months ago
Http://elixir-lang.org/ is a really cool language and framework to learn. It really opened my eyes to some different-but-intuitive ways of programming. Then when I need to make some money I'll come back to PHP again. - Source: Reddit / 7 months ago
Do you know an article comparing Elixir to other products?
Suggest a link to a post with product alternatives.