Meraj Molla
Tech Musings

Tech Musings

Follow
Follow
homeSponsorbadgesnewsletter
Tag

Elixir

#elixir

More content

Read more stories on Hashnode


Articles with this tag

An Opinionated Way of Organizing GraphQL APIs using Absinthe and Phoenix

Aug 20, 202314 min read1.5K views

REST has been the predominant architectural choice for API development on the web. GraphQL being the new kid in town has been continually gaining...

An Opinionated Way of Organizing GraphQL APIs using Absinthe and Phoenix

Building Self-referential Associations in Elixir/Phoenix

Aug 12, 20238 min read1.1K views

Self-referential association is used to associate a model with itself. It's pretty common to have this kind of association to build relationships in...

Building Self-referential Associations in Elixir/Phoenix

A Collection of Tips for Elixir's Interactive Shell (IEx)

Aug 10, 20237 min read845 views

Something very fundamental and part of any Elixir developer's day-to-day workflow is Interactive Shell (IEx). The focus of this article is to present...

A Collection of Tips for Elixir's Interactive Shell (IEx)

State Machine in Elixir using Erlang’s gen_statem Behaviour

Aug 6, 20234 min read771 views

Finite state machine is a common phenomenon in programs that need to maintain multiple states and transition among them based on certain actions....

State Machine in Elixir using Erlang’s gen_statem Behaviour

Adding Elixir to Erlang via Rebar3

Aug 5, 20233 min read519 views

Elixir and Erlang are functional programming languages both running on BEAM virtual machines. Programs in both languages get compiled into BEAM byte...

Adding Elixir to Erlang via Rebar3