Elixir Tracing Function Calls in Elixir In this post, we'll talk about tracing a function to know its input arguments and return value. For demonstrations of the principles, we'll be using Erlang's dbg module then later on we will use a library called SmartTracer.
Elixir The Many Ways to Hold a Token A common way of authenticating to an external platform is by using tokens. Most of these tokens are not forever. Let's look into how we can deal with this kind of tokens.
personal Events That Made My 2019 2019 was a real rollercoaster ride for me. A lot of fortunate and unfortunate events that happened. This is a compilation of those happy moments.
Tutorials CreateML: Train an Image Classification Model In this mini-tutorial/blog, we're going to build an image classifier that can differentiate a cat from a dog. Typical examples... ðŸ¤
Tutorials Glimpse of Docker in 2 Minutes Docker is a containerization platform that has been around since 2013. It tries to eliminate the it-works-on-my-machine problem. In this mini-tutorial, we'll discuss what are containers and images in a very simple way. We'll also try to run a PHP file via Docker.
Today I Learned TIL: Handling Default "config" Maps in Elixir Sometimes we want to pass config maps to certain functions. Handling default config values in Elixir is a breeze with the use of Map.merge/2.
Elixir How and Why I Fell In Love With Elixir Elixir uses def-do-end for defining a code block instead of the curly braces found in Java and PHP. Finding a missing endis sometimes easier to find than the elusive } closing bracket.