Contributions

Tutorial
We have been building a platform where using LiveView made a lot of sense, since we wanted some of our features to use an interface that could be updated in real-time. For example, we wanted administrators of the platform to be able to see, on a map, the sightings that the users of the app were reporting on certain places, as they happen. Let’s call it a live map.
Article
Bernardes shares his problem-solving process and how he reached the solution of how to secure application webhooks with Elixir.
Article
Have you ever wanted to retrieve all the results from a certain API endpoint but only received part of them?😕😢 Here's our approach on how to deal with cursor-based pagination in Elixir⚗️
Article
Cookie-based authentication has been the default method for handling user authentication. But how to it for WebSockets?
Article
Learn how to protect 🔒 your AWS S3 files in your #elixirlang project using Arc, in our latest blog post.
Article
Using Enum.sort on your Elixir project can cause problems, depending on your Elixir version. In this article, Nuno explains how to properly sort lists by date using Elixir.
Article
“First you find it strange. Then you can’t get enough of it.” - This was what our newest member Nuno, thought while learning about Elixir.
Article
Are you having problems with memory management while using GenServers? Then maybe you should take a look at our latest article for some tips!
Article
Just like in the documentary series “Big, Bigger, Biggest” we are going to show the different versions we developed on a real project, alongside the pitfalls and breakthroughs of each version, to increasingly scrape and aggregate bigger amounts of data from multiple sources and feed that data into a comprehensive dashboard.
Article
With Java it’s possible to use processes and parallelize them but it isn’t common and it’s always a struggle. With Elixir I found another world that, citing Bruce Williams, doesn’t treat concurrency and process management like afterthoughts or advanced features. A few months ago Elixir was updated to version 1.6 which introduced the DynamicSupervisor.
Article
How to handle many to many relationships with Ecto in Elixir.
Article
Learn from our example and check this quick tips and tools to analyse your crash dumps in this [blog post](https://medium.com/coletiv-stories/quick-tips-tools-for-analysing-erlang-elixir-crash-dumps-2ddf8abdf5f4).
Article
Many times when developing we use console log statements to help us debug a problem. Git hooks prevents them from ending up on our codebase.