Customizing Phoenix Generators

During a recent interview, I learned how easily the Phoenix generators can be customized for our projects. How did I not know this? Do others not know this? This post documents this invisible feature that’s easy to use and can be really powerful for teams with either new or mature projects.

https://fly.io/phoenix-files/customizing-phoenix-generators/

Choosing your tech stack guide

From understanding the anatomy of a tech stack to why it matters, and popular tech stacks to consider. Check this out ➡ https://curiosum.com/blog/choosing-your-tech-stack-guide

#techstack #elixir #reactnative

Unpacking Elixir: Real-time & Latency

Elixir was built on Erlang. Erlang was built to provide “consistently low latency” and a few other audacious goals.

This is the third part of my effort to unpack Elixir and we cover real-time and latency. https://underjord.io/unpacking-elixir-realtime-latency.html

Combining Elixir Gettext functions and macros

Gettext macros can sync PO files automatically but require compile time strings. Gettext functions allow runtime strings but cannot sync PO files automatically. What if there was a way to combine them and get the best of both worlds?

https://crbelaus.com/2023/09/08/combining-elixir-gettext-functions-macros.html

JSON API with Phoenix 1.7

In episode 170 we’ll learn how to use Phoenix 1.7 to build a JSON API.

https://elixircasts.io/json-api-with-phoenix-1.7

Thinking Elixir 167: Customizing mix phx.new?

Episode 167 of Thinking Elixir. We’ve all run “mix phx.new”, but have you ever thought to customize what that does? We talk with Victor Björklund who explains how we can create customized Phoenix project generators and why we might want to. We also discuss customizing the phoenix generators for our already generated projects. We explore the idea of supporting 3rd-party maintained generators and what that might look like. A fun discussion sure to “generate” ideas for your project!

https://podcast.thinkingelixir.com/167

Introducing Kanta - the ultimate open-source solution to translations in Elixir & Phoenix web apps

Handling translations in web applications can be a challenging and time-consuming task. The process entails managing various files, tracking modifications, and ensuring that translations remain current as the project progresses. These complexities can slow down development and introduce errors. That’s why Curiosum decided to create an open source solution called Kanta.

The Elixir Book Club is starting Genetic Algorithms in Elixir on September 17th.

📘👨‍💻💜 The Elixir Book Club has chosen our next book!

Genetic Algorithms in Elixir

We meet every two weeks on Sunday mornings via our Discord. The first meeting for the new book is on September 17th. Join us! #MyElixirStatus

https://elixirbookclub.com/

You can stop using `form_for`

The standard way to render a <form> in Phoenix used to be the form_for/4 helper, but recent versions of Phoenix added a new function component called <.form>, AKA Phoenix.Component.form/1.

I wasn’t sure when to use form_for/4 instead of <.form>, but it turns out that the answer is “never”. I wrote up my full findings here:

https://phoenixonrails.com/blog/you-can-stop-using-form-for-in-phoenix

Unpacking Elixir: Syntax

Time to cover Elixir syntax: https://underjord.io/unpacking-elixir-syntax.html

Liveview File Uploads to S3

How to add support for LiveView’s interactive file uploads, directly uploading to Amazon S3.

https://youtu.be/RMyJ3qo7gVg

Star-Crossed LiveView Processes

Elixir has many powerful runtime features: processes, monitors, links, supervisors, and more. Sometimes, the hardest part is knowing which building blocks are the best ones for what we want to do. In this post I explore linking processes, trapping exits and running an async Task from a LiveView to solve a different kind of problem.

There’s been a lot written about running an async Task from a LiveView, but I wanted to build a ChatGPT-style UI where the data flows in, not just the final computed result.

In fact, I only care about the series of messages sent as side effects from the running Task. This difference changes how we approach the problem. In the post we see ho process linking is like Romeo & Juliette. When Juliette dies, it causes Romeo to die as well, the two are linked. This is the same for linked processes. But if we trap exits, our LiveView will be “notified” of a Task processes’ death without being killed. Turns out it’s both really simple and really powerful! I ❤️ the BEAM!

https://fly.io/phoenix-files/star-cross-live-view-processes/

Writing a Custom Credo Check in Elixir

Let’s run through the process of creating a Credo check in Elixir: https://blog.appsignal.com/2023/08/29/writing-a-custom-credo-check-in-elixir.html

Thinking Elixir 166: Filtering, ordering and pagination via Flop

Episode 166 of Thinking Elixir. Most of us have created our own filtering, sorting and pagination code before in one project after the other. Mathias Polligkeit got tired of doing that too and created the flop library to wrap it all into a portable and reusable solution. We talk with Mathias to learn what it can do and are pleased to learn it’s surpassed our own solutions. He also created a flop_phoenix package with heex components to help build filter forms and tables. An fun look into an interesting library!

https://podcast.thinkingelixir.com/166

GigCityElixir Talks - Frank Hunleth

GigCityElixir 2023 talks - Frank Hunleth “Nerves Project Update” https://youtu.be/H6dSdiyacPs

Elixir Saves Pinterest $2 Million a Year In Server Costs

What are the business benefits of Elixir?

https://paraxial.io/blog/elixir-savings

Unpacking Elixir - Concurrency

Rather than writing yet another post trying to widely summarize what I think is beneficial about the language I want to try and go a bit deeper on one particular aspect I like. This time, concurrency.

https://underjord.io/unpacking-elixir-concurrency.html

Vio.com is hiring Senior Elixir Engineer

Vio.com is hiring a Senior Elixir Engineer to work at Amsterdam (relocation available) or Remote.

Experience with Elixir is a plus, but not a hard requirement as long as you are excited to learn it and you have experience with at least two programming languages such as Erlang, Ruby, Go, Rust, Python, Java or Scala.

Come to join my team at Vio.com and have fun writing Elixir applications to build our booking engine.

Find out more in here: https://grnh.se/1cdc4ab2teu

PhoenixStorybook

Episode 169 is in the books. In it, we’ll use PhoenixStorybook to create a storybook-like UI for our Phoenix Components.

https://elixircasts.io/phoenix-storybook

Oban Web v2.10-RC Released

The first Oban Web v2.10 release candidate is out! Oban Web v2.10 brings a few long awaited features like realtime charts, auto-complete powered filtering, keyboard shortcuts, and massive performance improvements for high throughput systems.

https://getoban.pro/articles/oban-web-2-10-rc-released

Previous page Next page