This article comprises of two biggest changes of ExUnit.
- Arguments in the failure report
- Running mix test with the failed flag
This article comprises of two biggest changes of ExUnit.
This article is all about how to achieve the fault tolerance concept using the Supervisor in Elixir. This gonna be the lengthy reading as I tried to explain each line of code briefly.
This article is not about How the Supervisor or GenServer works.
What we gonna do here?
Here, we are going to implement Mini Banking System. Not a Production Grade Coding.
An article for beginners and who have started playing with GenServers
Enable tracing using the debug option.
This explains how to debug the messages and log to the console with a simple option.
This article is all about coding the implicit conditions in FizzBuzz Word Game. This makes you to walk over lines of code that gives similar output with different syntax. This for Beginners to enhance their coding style.
https://medium.com/@blackode/7-lines-to-code-fizz-buzz-game-principle-in-elixir-8aa6d02c30e8
Happy Coding ā¦
https://medium.com/blackode/10-killer-elixir-tips-7-62efc9c5aa14
https://medium.com/@blackode/the-rigid-code-behind-smooth-code-elixir-beginner-77eb0a32218c

This article shows you the rigid lines of code behind smooth lines you write in elixir.
As we know, the most of the Elixir programming language is written in Elixir itself with the power of Macros and also we all know why we love to code in Elixir because of its simplicity. But, today we are going to walk back to find the light in the dark.
Interesting articles, but I have to question whatās with the pictures, they seem to have nothing to do with their corresponding articles⦠^.^;
Sorry about that @OvermindDL1
Which picture you did not understand?. So, I can describe. The images are just to bring the idea of the article title.
Like I tried to match up nature with Elixir Coding. That is the only Idea.
Pretty much all of them, the wine glass, the animal with antlers, etc⦠I donāt get the references with the content, they seem random to me like OāReilyās book covers⦠^.^;
@OvermindDL1
The wine glass has two variants, what you see on camera and the other one is unfocused. Just to implant the idea of macros. What we see a simple line is not simple in its backdrop.
If you see the antler expression, It is in the state of fear. Watching something far from it like some carnivore is coming towards it. That article is 7 version of another set of elixir tips from daily experiences. To bring the atmosphere of another set of Killer Elixir Tips I just added that image.
Similarly, The two elephants its mother as Supervisor as it monitors its child GenServer just some kinda humor touchā¦
I know it is hard to figure out these until someone gives you a brief explanationā¦
The ultimate Goal is to match something with nature. And the Inspiration Oreily itself.
Heh, Iāve never gotten such pictures on things or understood the point⦠^.^;
Thanks for the descriptions though, definitely not even remotely what I thought of. ^.^;
Here is the Eighth version of 10 Killer Elixir Tips.
Article Link: https://medium.com/blackode/10-killer-elixir-tips-8-2e1bb7eba6e1

https://medium.com/@blackode/two-unique-ways-of-piping-data-in-elixir-f0b8766d6df6
Join our Telegram Channel. Just startedā¦
https://medium.com/@blackode/do-dont-length-of-range-elixir-a18b16135c61
https://medium.com/blackode/how-to-perform-hot-code-swapping-in-elixir-afc824860012
Hot code swapping is replacing or adding components without stopping or shutting down the system. It is frequently called as hot-plugging.
In software development, hot swapping is used to upgrade or update the system without interrupting the current running system. It helps us with less downtime at the time of upgrading.
OK! Stories are always good to hear. Letās dive into the code.
This article will guide you to perform hot code swapping in Elixir using the Elixir package distillery-2.0 (at the moment of writing this article).
A live demo on updating GenServer state will stand out as a good example.
#Donāt Do
new_status =
if status == "True" do
true
else
false
end
#Do
new_status = status == "True"
Thanks for these types of posts! I often find myself wondering how to better express myself in Elixir, and the ābestā approach isnāt always intuitive to me.