Programming

Programming

1512 bookmarks
Custom sorting
Typing lists and tuples in Elixir
Typing lists and tuples in Elixir
This article explores the design decisions of typing lists and tuples in Elixir within a sound gradual type system
·elixir-lang.org·
Typing lists and tuples in Elixir
Building custom Hex repositories - Dashbit Blog
Building custom Hex repositories - Dashbit Blog
Learn how to build custom Hex repositories using codemix hex.registry build/code that ships with Hex since version 0.21
·dashbit.co·
Building custom Hex repositories - Dashbit Blog
How we verify webhooks - Dashbit Blog
How we verify webhooks - Dashbit Blog
Shows how to sign and verify HTTP requests with Elixir. This is useful for webhooks and communications between servers on the Web.
·dashbit.co·
How we verify webhooks - Dashbit Blog
Cuckoo_filter - A high-performance, concurrent, and mutable Cuckoo Filter for Erlang and Elixir - Your Libraries & OS Mentoring / Libraries - Elixir Programming Language Forum
Cuckoo_filter - A high-performance, concurrent, and mutable Cuckoo Filter for Erlang and Elixir - Your Libraries & OS Mentoring / Libraries - Elixir Programming Language Forum
cuckoo_filter is a high-performance, concurrent, and mutable Cuckoo Filter implemented using atomics for Erlang and Elixir. A Cuckoo Filter is a space-efficient probabilistic data structure for approximated set-membership queries. It can be used to test whether an element is a member of a set in constant time with a low rate of false positives. By using erlang atomics we have fast and concurrent access for read and write operations. It is implemented in erlang so you can use it in both erlang...
·elixirforum.com·
Cuckoo_filter - A high-performance, concurrent, and mutable Cuckoo Filter for Erlang and Elixir - Your Libraries & OS Mentoring / Libraries - Elixir Programming Language Forum
Unix Domain Sockets (IPC) with Elixir
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…
·medium.com·
Unix Domain Sockets (IPC) with Elixir
Connecting to Multiple Databases with Ecto
Connecting to Multiple Databases with Ecto
Now that we’ve explored some simple Ecto setups, let’s get a littlebit exotic. Did you know that you can set up your application in sucha way that you can connect to multiple databases with Ecto? Ecto actually makesit super simple to do so. Let’s take a look.
·geoffreylessel.com·
Connecting to Multiple Databases with Ecto
Connecting Two Databases using Ecto in elixir
Connecting Two Databases using Ecto in elixir
Imagine for a second that you are building a brand new Phoenix application, but you need to make use of some data stored in a different…
·medium.com·
Connecting Two Databases using Ecto in elixir
Introducing Wallaby – Concurrent Feature Tests for Elixir and Phoenix
Introducing Wallaby – Concurrent Feature Tests for Elixir and Phoenix
Feature tests are one of the best ways to ensure reliability and consistency for web applications. But, as we’ve discussed previously feature tests can become a performance bottleneck for a large t…
·blog.carbonfive.com·
Introducing Wallaby – Concurrent Feature Tests for Elixir and Phoenix