A Queue is just a Q with 4 silent letters

A Queue is a collection data structure, which uses the FIFO (First In, First Out) method. This means that when you add items to a queue, often called enqueuing, the item takes its place at the end of the queue. When you dequeue an item, we remove the item…


Debugging Elixir Dependencies

I’m fairly new to Elixir, and still learning the ins and outs of the language and related frameworks, but a way to contribute back to the community is to share things I learn. So, I’m sharing something I learnt about Elixir recently.