Instructor — Instructor v0.0.4
Bridging Elixir and Python for Efficient Programming Solutions | Curiosum
Explore how ErlPort can seamlessly connect Elixir with Python and Ruby, overcoming common programming language limitations. Discover practical examples.
Elixir Streams | Debugging tip! One quick way to find out which functions you're executing.
Elixir and Phoenix tips, courses, and more.
How to Build a Memory-efficient Elixir App with Streams | AppSignal Blog
Let's create a memory-efficient Elixir application using the lazy processing approach with streams.
A video that appears to show David Attenborough narrating a programmer's life shows Hollywood actors are right to be afraid of AI
If you've ever wanted acclaimed broadcaster and documentary filmmaker Sir David Attenborough to narrate your life, you're not alone — and you don't have to keep merely wishing for it anymore.
Discover the Power of AI Apps Built with Elixir - ElixirConf 2023
Join Charlie Holtz at ElixirConf 2023 as he unveils the secrets of building cutting-edge AI applications using Elixir - a language built for maximum performance and scalability.
Building AI Apps with Elixir: ElixirConf 2023 Discussions - The Gnar Company
Discussion around "Building AI Apps with Elixir" an intriguing presentation from Charlie Holtz at ElixirConf 2023.
Building AI Apps with Elixir - Charlie Holtz
Elixir's Quantum Leap: Crafting Intelligent Agents for AI Applications - Dycoders
Elixir, a functional and concurrent programming language built on the robust Erlang VM, has been making waves in the development community.
Elixir Drops 0.2.0 with support for custom types was released!
Since the previous release in October, my intermittent efforts have been dedicated to developing version 0.2.0 of Elixir Drops, concentrating primarily on enhancing its type system. The main objective has been to introduce the functionality for users...
Efficient Phoenix App Deployment with Mix Releases: check the complex guide | Curiosum
Explore the transition from Distillery to Mix, configure releases, and handle production deployment with ease in our step-by-step guide.
Elevate Your Elixir With Sigils
Adding support for real-valued intervals implementing the Enumerable Protocol in Elixir.
Making Phoenix LiveView Sing!
Documentation and guides from the team at Fly.io.
Build A Simple Tracing System in Elixir | AppSignal Blog
Let's add tracing to an Elixir application using OpenTelemetry and streamline the process.
Data Structures and Algorithms In C (DSA Masterclass)
Data Structures and Algorithms In C (DSA Masterclass). Learn Data Structures and Algorithms In C (DSA Masterclass) to provide efficient solution to complex problems.
Elixir programming language guide | Curiosum
Learn about Elixir - a productive, scalable, functional programming language that consistently ranks as one of the most loved programming languages in the world
Unpacking Elixir: Phoenix
In this series I've been unpacking various facets of Elixir. Mostly this has meant trying to explain Erlang and the BEAM through the lens of Elixir. Now we are moving into the domain of the web framework. This is where I dare say that Elixir has much more to say than Erlang. Erlang has to my understanding never landed fully on a canonical preferred web framework. Elixir has Phoenix and this post will be unpacking Phoenix. The Elixir web framework.
gen_statem in context
My personal notes and opinions on :gen_statem in Elixir.
You might not need gradual typing in Elixir
Elixir's lack of static typing doesn't have to be a dealbreaker. Discover how the functional paradigm avoids the usual pitfalls of dynamic typing.
Extracting and Depositing Bits | orlp.net
Oh, the API Clients You’ll Build (in Elixir)
Today we are going explore how to write API clients in the Elixir language. This is a follow-up article to my presentation at OpenCamps…
Watchdog — watchdog 0.8.2 documentation
Testing Event Based APIs
When writing Unit Tests or Integration Tests for an API that exposes events, we need a way to validate that the events are called. The simplest approach would be to set a variable when the event is called. In the test itself we can sleep for a certain duration and check the variable:
- Adding Magic Links to phx.gen.auth: a comprehensive guide
How I Handle Static Assets in my Phoenix apps
Serving static assets on a subpath in Phoenix
Phoenix serves static files with a Plug.Static defined in the endpoint. But what if we want to serve additional static files from subpaths?
Today I Learned
TIL is an open-source project by Hashrocket that exists to catalogue the sharing & accumulation of knowledge as it happens day-to-day.
How to build a flexible API client in Elixir
A brief guide to build an extensible API client
All Elixir coders should autoformat on save (here’s how)
Formating automatically each time a file is saved improves legibility and consistency, making it easier to spot mistakes.
Persistent connections with gen_statem
How we can use the gen_statem behaviour to implement a resilient state machine that holds a connection to an external service.