#elixir #ethereum
Unix domain sockets (ipc) with elixir
https://medium.com/@hdswick/unix-domain-sockets-ipc-with-elixir-ec027f83c511
Unix domain sockets (ipc) with elixir
https://medium.com/@hdswick/unix-domain-sockets-ipc-with-elixir-ec027f83c511
Medium
Unix Domain Sockets (IPC) with Elixir
Lately, I’ve been working on my Ethereum JSON RPC Client https://github.com/hswick/exw3. One of the dependencies it uses is…
#elixir #ecto
Getting started with ecto part 1: installing and configuring ecto
https://dev.to/edgar971/getting-started-with-ecto-part-1-installing-and-configuring-ecto-4b37
Getting started with ecto part 1: installing and configuring ecto
https://dev.to/edgar971/getting-started-with-ecto-part-1-installing-and-configuring-ecto-4b37
The Practical Dev
Getting Started with Ecto Part 1: Installing and Configuring Ecto
Learn how to install and configure Ecto in part 1 of this series.
#elixir #open_source #functional_programming #observability #statsd
Interceptor: easily intercept your elixir function calls
https://medium.com/onfido-tech/interceptor-easily-intercept-your-elixir-function-calls-3fb17ee18826
Interceptor: easily intercept your elixir function calls
https://medium.com/onfido-tech/interceptor-easily-intercept-your-elixir-function-calls-3fb17ee18826
Medium
Interceptor: easily intercept your Elixir function calls
It was a beautiful day in the Onfido Lisbon office, when we updated the dependencies of one of our Elixir projects and the dreaded RETIRED…
#erlang #elixir #programming
Hot code reloading in elixir
https://medium.com/@AppSignal/hot-code-reloading-in-elixir-47626e1f520f
Hot code reloading in elixir
https://medium.com/@AppSignal/hot-code-reloading-in-elixir-47626e1f520f
Medium
Hot Code Reloading in Elixir
Through its roots in Erlang, Elixir’s robustness and reliability are often mentioned as its greatest advantages. The ultimate example of…
#docker #azure #continous_integration #elixir #azure_container_service
Going functional part ii: our team is releasing an elixir microservice on azure
https://medium.com/asolvi/going-functional-part-ii-our-team-is-releasing-an-elixir-microservice-on-azure-7a39806638da
Going functional part ii: our team is releasing an elixir microservice on azure
https://medium.com/asolvi/going-functional-part-ii-our-team-is-releasing-an-elixir-microservice-on-azure-7a39806638da
Medium
Going Functional Part II: Our Team is Releasing an Elixir Microservice on Azure
TL;DR. We continue our Elixir experiment. In this article we tell the story of how we released our Elixir application as a microservice…
#database #elixir #couchdb #technology
Database technical decisions
https://medium.com/@rebhuinc/database-technical-decisions-6edbfd15e011
Database technical decisions
https://medium.com/@rebhuinc/database-technical-decisions-6edbfd15e011
Medium
Database technical decisions
Choosing a persistent store is a long and arduous process. The problems you encounter on the way govern which database you choose. This is…
#elixir #ruby #coding #tutorial
Ruby metaprogramming for beginners → elixir-like specs
https://dev.to/mudasobwa/ruby-metaprogramming-for-beginners--elixir-like-specs-34om
Ruby metaprogramming for beginners → elixir-like specs
https://dev.to/mudasobwa/ruby-metaprogramming-for-beginners--elixir-like-specs-34om
The Practical Dev
Ruby metaprogramming for beginners → Elixir-like specs
Typespecs
Erlang and hence Elixir are dynamically typed languages. They both h...
Erlang and hence Elixir are dynamically typed languages. They both h...
#elixir #phoenix_framework #tutorial
Learn elixir: top elixir tutorials recommended by the community
https://medium.com/@hackr.io/learn-elixir-top-elixir-tutorials-recommended-by-the-community-7506d534ad9a
Learn elixir: top elixir tutorials recommended by the community
https://medium.com/@hackr.io/learn-elixir-top-elixir-tutorials-recommended-by-the-community-7506d534ad9a
Medium
Learn Elixir: Top Elixir Tutorials Recommended by the Community
Elixir is a dynamic, functional language designed for building scalable & maintainable applications. Here is a list of top 10 tutorials to
#elixir
Improving your experience with iex (getting history to work)
https://medium.com/@rostevaux/improving-your-experience-with-iex-getting-history-to-work-2cec61537e3
Improving your experience with iex (getting history to work)
https://medium.com/@rostevaux/improving-your-experience-with-iex-getting-history-to-work-2cec61537e3
Medium
Improving your experience with IEx (getting history to work)
In most languages with a read-eval-print-loop (REPL, the prompt where you enter commands directly to the interpreter such as “irb” on Ruby…
#elixir #cizen
Asynchronous request and connection pooling in elixir with cizen
https://dev.to/ryo33/asynchronous-request-and-connection-pooling-in-elixir-with-cizen-16p
Asynchronous request and connection pooling in elixir with cizen
https://dev.to/ryo33/asynchronous-request-and-connection-pooling-in-elixir-with-cizen-16p
The DEV Community
Asynchronous Request and Connection Pooling in Elixir with Cizen
#elixir #ecto #postgres #json
Why ecto's way of storing embedded lists of maps makes querying hard
https://robots.thoughtbot.com/why-ecto-s-way-of-storing-embedded-lists-of-maps-makes-querying-hard
Why ecto's way of storing embedded lists of maps makes querying hard
https://robots.thoughtbot.com/why-ecto-s-way-of-storing-embedded-lists-of-maps-makes-querying-hard
Thoughtbot
Why Ecto's Way of Storing Embedded Lists of Maps Makes Querying Hard
You can use PostgreSQL’s JSON data types to store embedded data on Ecto models. But the way Ecto tells you to store it might not be the best way.