#elixir
To use or not to use the ++ operator in elixir
https://dev.to/jmbejar/to-use-or-not-to-use-the--operator-in-elixir-2k6f
To use or not to use the ++ operator in elixir
https://dev.to/jmbejar/to-use-or-not-to-use-the--operator-in-elixir-2k6f
DEV Community
To use or not to use the ++ operator in Elixir
In this article, performance implications of using the ++ operator with lists in Elixir are discussed. Hope that people starting to use the language find it interesting!
#concurrency #elixir #erlang #parallelism #process
Spawning processes in elixir, a gentle introduction to concurrency
https://medium.com/@asusmel/spawning-processes-in-elixir-a-gentle-introduction-to-concurrency-e65a781cb12d
Spawning processes in elixir, a gentle introduction to concurrency
https://medium.com/@asusmel/spawning-processes-in-elixir-a-gentle-introduction-to-concurrency-e65a781cb12d
Medium
Spawning processes in Elixir, a gentle introduction to concurrency
Along with pattern matching, one of the coolest things in Erlang and Elixir is their concurrency implementation based on Actor model. In this article I introduce concurrency and show how we can start…
#elixir #code_quality #control_flow #discoverability #programming
Using control flow in elixir to improve discoverability
https://medium.com/podium-engineering/using-control-flow-in-elixir-to-improve-discoverability-21341b27d851
Using control flow in elixir to improve discoverability
https://medium.com/podium-engineering/using-control-flow-in-elixir-to-improve-discoverability-21341b27d851
Medium
Using Control Flow in Elixir to Improve Discoverability
At Podium we focus on writing discoverable code. Code is read many more times than it is written, so it is important to us that our code…
#elixir #engineering
Ecto techniques for elixir blockchain projects
https://dockyard.com/blog/2019/03/08/ecto-techniques-for-elixir-blockchain-projects
Ecto techniques for elixir blockchain projects
https://dockyard.com/blog/2019/03/08/ecto-techniques-for-elixir-blockchain-projects
#elixir #conference #phoenix_framework #embedded_systems #distributed_systems
Personal notes from lonestar elixir conf 2019
https://medium.com/@pedroassumpcao/personal-notes-from-lonestar-elixir-conf-2019-4ff464e01be5
Personal notes from lonestar elixir conf 2019
https://medium.com/@pedroassumpcao/personal-notes-from-lonestar-elixir-conf-2019-4ff464e01be5
Medium
Personal notes from Lonestar Elixir Conf 2019
I just came back from Lonestar Elixir Conf 2019 in Austin, Texas. The conference was a single track, 2 days, with an extra day for an…
#elixir #ecto #sql #phoenix_framework #where
What is “where(query, false)”? | Elixir / Phoenix
https://medium.com/codes-for-elixir-phoenix/what-is-where-query-false-elixir-phoenix-a7b4540d4a45
What is “where(query, false)”? | Elixir / Phoenix
https://medium.com/codes-for-elixir-phoenix/what-is-where-query-false-elixir-phoenix-a7b4540d4a45
Medium
Response to
Are you a good friend for SQL? Please say YES! I will tell you something about Ecto, but the essence of this post is SQL. I guess you…
#elixir #phoenix #caching
Caching in an elixir/phoenix app
https://medium.com/@toddresudek/caching-in-an-elixir-phoenix-app-a499cdf91046
Caching in an elixir/phoenix app
https://medium.com/@toddresudek/caching-in-an-elixir-phoenix-app-a499cdf91046
Medium
Caching in an Elixir/Phoenix app
An API project I have been working on recently uses a plug to get the current user and authenticate them. This is not uncommon, but as a…
#programming #elixir #gpu #machine_learning
Hastega: challenge for gpgpu on elixir (intend to apply it to machine learning)
https://medium.com/@zacky1972/hastega-challenge-for-gpgpu-on-elixir-intend-to-apply-it-to-machine-learning-691c3560d179
Hastega: challenge for gpgpu on elixir (intend to apply it to machine learning)
https://medium.com/@zacky1972/hastega-challenge-for-gpgpu-on-elixir-intend-to-apply-it-to-machine-learning-691c3560d179
Medium
Hastega: Challenge for GPGPU on Elixir (intend to apply it to machine learning)
Do you want to learn and use machine learning in Elixir / Phoenix / Nerves apps? Of course, you can, but the machine learning is written…
#programming #elixir #oop
Who said that elixir is not an oop language?
https://medium.com/@feymartynov/who-said-that-elixir-is-not-an-oop-language-32071dcdaac5
Who said that elixir is not an oop language?
https://medium.com/@feymartynov/who-said-that-elixir-is-not-an-oop-language-32071dcdaac5
Medium
Who said that Elixir is not an OOP language?
I think that the distinction between OOP and functional paradigms is murky. For example we can write in Ruby in functional style (check…
#development #elixir
Idea: genservers with map-based state
https://blog.carbonfive.com/2019/03/12/idea-genservers-with-map-based-state/
Idea: genservers with map-based state
https://blog.carbonfive.com/2019/03/12/idea-genservers-with-map-based-state/
Blog by Carbon Five
Idea: GenServers with Map-based state
I recently gave a talk at Empex LA in which I talked about my desire to see simplifications and enhancements to using some of the OTP behaviors offered in Elixir. In this post I’m going to explore …
#startup #train #junior_developer #elixir #onboarding
Onboarding our first jr. software engineer wk: 1
https://medium.com/@kimchibot64/onboarding-our-first-jr-software-engineer-wk-1-d382344bb681
Onboarding our first jr. software engineer wk: 1
https://medium.com/@kimchibot64/onboarding-our-first-jr-software-engineer-wk-1-d382344bb681
Medium
Onboarding the first Jr. Software Engineer at ScriptDrop wk: 1 recap
The Engineering team at work is growing and we just hired our first Jr. Welcome Izzy! Hmm Now what?
#concurrency #elixir #erlang #messages
Hey process, there is a message for you!
https://dev.to/alvisesus/hey-process-there-is-a-message-for-you-19a2
Hey process, there is a message for you!
https://dev.to/alvisesus/hey-process-there-is-a-message-for-you-19a2
The DEV Community
Hey Process, there is a Message for you!
Messages are a fundamental part of concurrency in Erlang and Elixir. In this article I introduce how messaging between processes works. We play with simple examples to see how a process sends and receives messages.
#elixir
Install elixir in debian/ubuntu using precompiled packages
https://dev.to/giovanni_cortes/install-elixir-in-debianubuntu-using-precompiled-packages-2k2b
Install elixir in debian/ubuntu using precompiled packages
https://dev.to/giovanni_cortes/install-elixir-in-debianubuntu-using-precompiled-packages-2k2b