Introducing Python interpreter embedded in Elixir and a Fine way to write your NIFs. | Continue reading
Dashbit announces expansion of its subscription team and their open source goals for 2025 | Continue reading
We explore how set-theoretic types could address how many statically typed languages do not allow libraries to evolve their public data definitions in a backwards compatible manner. The proposed solution aims to be automatically verified by the compiler and type safe. | Continue reading
In this article we discuss the complexity of introducing concurrent operations on the client wuthout causal ordering on the server. | Continue reading
This article details how to implement soft-delete in Ecto using PostgreSQL rules and views | Continue reading
Let's build a Stripe "SDK" with Req! | Continue reading
Introduction to Phoenix Playground, the easiest way to run single-file Phoenix apps. | Continue reading
Web applications have client and server state, let's see some examples and learn how LiveView, in particular, deals with state and realtime | Continue reading
An update on the latest advancements of Elixir, data, and Machine Learning. | Continue reading
Req v0.5 is out with testing enhancements, standardized errors, response streaming additions and other improvements. | Continue reading
A guide through different testing approaches with Req-based API clients. | Continue reading
LiveView’s unique integration between server and client allows it to drastically optimize both latency and bandwidth, leading to user experiences that are faster and smoother than any other client-server combo out there. This weekend we have merged a pull request that goes one st … | Continue reading
Back in 2021, the Elixir community started an effort to bring Elixir and Machine Learning together. Over the last three months, the community has released new versions of several key projects as well as the announcement of new libraries that build upon the existing foundation. Th … | Continue reading
In this article, I will explain why Elixir has a dot when calling anonymous functions. I have explained this elsewhere in forums and mailing lists but I guess an article makes it more official. In other words, Elixir has this: some_fun = fn x, y -> x + y end some_fun.(1, 2) #=> 3 … | Continue reading
We welcome Alex Koutmos as a guest writer on our blog, to share his experiences on using Livebook as a learning tool for Elixir. For the past few months, Hugo Baraúna and I (Alex Koutmos) have been working on a new book for Elixir called Elixir Patterns. When we started brainstor … | Continue reading
We are glad to announce Nx (Numerical Elixir) v0.1 has been released! For those unfamiliar, Elixir is a dynamic, functional language for building scalable and maintainable applications. Elixir leverages the Erlang VM, known for running low-latency, distributed, and fault-tolerant … | Continue reading
Phoenix LiveDashboard is helping teams to quickly visualize and identify problems in systems running in production. It has a beautiful interface and can be plugged to any Phoenix application out there. Until recently you could only install LiveDashboard within Phoenix apps. Now t … | Continue reading
We are glad to announce Livebook, an open source web application for writing interactive and collaborative code notebooks in Elixir and implemented with Phoenix LiveView. Livebook is an important step in our journey to enable the Erlang VM and its ecosystem to be suitable for num … | Continue reading
UPDATE: In the previous version of the article we were using :persistent_term but we’ve replaced it with an ETS table that is more suitable for data that periodically changes. Thanks to readers for pointing this out. While working on Bytepack last year, we needed to authenticate … | Continue reading
In order to better understand Broadway and GenStage I wrote a custom producer that reads tweets from the Twitter stream API and produces event messages. The experience was pretty fun and this article describes in more details how it went. What is Broadway? Think of Broadway as a … | Continue reading
Elixir developers have a few options when it comes to using private packages. What you’ll end up choosing usually comes down to whether you want (and/or need!) to fully own the infrastructure. If you don’t, Hex.pm has a hosted private packages offering and it’s a great option for … | Continue reading
Recently someone opened up an issue on Gettext saying compilation of Gettext modules got slower in Erlang/OTP 23. In this article, we are going to explore how I have debugged this problem and the three separate pull requests sent to the Erlang/OTP repository to improve compiler p … | Continue reading
Suppose we have this Elixir code: # lib/foo.ex defmodule Foo do def foo() do a = 42 end end when we compile it, we’ll see this helpful warning: $ mix compile Compiling 1 file (.ex) warning: variable "a" is unused (if the variable is not meant to be used, prefix it with an und … | Continue reading
Webhooks are widely used as a tool to communicate changes of state, to notify events and to trigger actions between HTTP services. But there is gap in the security side: if there is a proxy between the server and the client, it is possible that this proxy gets the request and cha … | Continue reading
Ecto ships with built-in support for database migrations via Mix tasks and the Ecto.Migrator module. Migrations are most commonly used for database schema changes like creating tables, columns, etc. In fact, migrations are often so convenient to use that developers use them even … | Continue reading
We have already talked about authentication in an earlier article about mix phx.gen.auth. This short post follows up on the topic by describing the general idea behind Two-factor Authentication and how to use our recently released NimbleTOTP library to generate and validate Time- … | Continue reading
Over the last months we have been working on a LiveView app and we have decided to use Bootstrap with it. While Bootstrap is mostly focused on CSS, it does have some components that rely on JavaScript. In this article, we will cover how to make Bootstrap and LiveView work side by … | Continue reading
This article will explore how we used compilation tracers to implement a tool that automatically rewrote imports to aliases on the Hex.pm codebase, called import2alias. For example, to replace HexpmWeb.ViewHelpers imported calls with ViewHelpers, we used the script like this: cd … | Continue reading
UPDATE #1: We have updated this article to mirror Elixir v1.11+’s best practices. Recently, one of our Elixir Development Subscription clients noticed their development feedback cycle felt a bit sluggish, they sometimes had to wait seconds, or tens of seconds, for a code change … | Continue reading
If you look at the features listed by Kubernetes (K8s) and compare it to languages that run on the Erlang VM, such as Erlang and Elixir, the impression is that they share many keywords, such as “self-healing”, “horizontal scaling”, “distribution”, etc. This sharing often leads to … | Continue reading
This is a quick blog post about our experience replacing Hexdocs.pm’s GenStage pipeline with Broadway. To give some background information, Hexdocs.pm started out as basically just static file hosting for documentation. With the introduction of private Hexdocs it became a distinc … | Continue reading
n 2017 Hex.pm got support for Private packages and organizations, a way for teams to publish and manage packages without making them public. While this works great for many organizations, some have stricter compliance requirements and need to host packages on their own infrastruc … | Continue reading
Elixir v1.9 will ship with releases support and in this blog post we want to show how we have used this exciting new feature on the Hex.pm project. Installing Elixir master (Update: This section is no longer relevant since v1.9 is already out!) Since Elixir v1.9 is not out yet, w … | Continue reading
Hi everyone, we are back with another edition of What’s new in Elixir! Let’s get started. mix release has been added! Besides basic releases support, it supports runtime configuration, customization via templates files, custom steps, and more. A huge thank you to both Distiller … | Continue reading
ExDoc v0.20 has been released with many exciting new features: keyboard shortcuts, search improvements, and more! Let’s take a look at some of the new capabilities. You can see them live at hexdocs.pm/elixir/master/ too! Keyboard shortcuts You can now press s to focus the search … | Continue reading
Today, we are glad to announce the first official release of this tool: Broadway v0.1. Broadway was mainly designed to help developers build concurrent, multi-stage data ingestion and data processing pipelines. It allows developers to consume data efficiently from different sourc … | Continue reading