Elixir Blog Posts

How to create custom live dashboard page using ps aux output
live dashboard custom page

3 Likes

Announcing @newaperio’s latest expedition into open source territory—Mutiny!

4 Likes

I’ve started a new library called Tempo that has some lofty goals that may not work out:

  • Unify Date, Time, NaiveDateTime and DateTime into a single structure
  • Represent time as intervals and sets of intervals, not scalars
  • Make times composable, enumerable and comparable with interval algebra
  • Support discontinuous times and recurring times

A grand unifying theory of time :slight_smile:

I’ve started a blog to explain my reasoning at https://kipcole9.github.io/tempo

16 Likes

Hey there, just sharing my last Elixir post. It’s about my advent of code takeaways.

4 Likes

Hey there! Latest blog post about Elixir in 2021 at Curiosum written by @vincentvanbush:

5 Likes
2 Likes
15 Likes
5 Likes

I wrote something about locality of loading data and rendering templates with LiveComponents.

https://kobrakai.de/kolumne/data-fetching-using-livecomponents/

4 Likes

2nd part of the series on maintainable Elixir is out. This article focuses on web vs context separation.

12 Likes

Great article, thanks @sasajuric
I will keep an eye out for the rest of the related post!

1 Like

Same here @jordiee , no elixir mention, but it is an interesting read thanks for share.

Nx Tip of the Week #1 - Using Transforms

Hi everyone, I’m going to try to write some weekly tips for people wanting to get introduced to using Nx. They’ll generally be pretty short. Let me know if there’s anything you want to read about!

6 Likes

I’ve written about the awesome Ecto.Query.dynamic/3 and how to build complex APIs inspired by MongoDB with it:

4 Likes

Nx Tip of the Week #2 - Tensor Operations for Elixir Programmers

Hope you enjoy :smiley:

5 Likes
Enum.reduce(filter, nil, fn
    {k, v}, nil -> build_condition(k, v)
    {k, v}, conditions -> dynamic([c], ^build_condition(k, v) and ^conditions)

that’s just beautiful. Thank you for the great post!

2 Likes

Thank you, I’m glad you found it useful :slight_smile:

8 Likes

How I sped up one of our test suites by 17.5x by explicitly defining Elixir protocol implementations | Synopsys. Hope you enjoy!

Nx Tip of the Week #3 - Many Ways to Make Arrays

3 Likes