Here is a guide to create a self signed SSL certificate on a windows development environment. Note that Self Signed Certificate are not as secure as they are not always trusted so use them carefully and keep them safely.
Published: Saturday, September 11th, 2021
Here is a guide to create a self signed SSL certificate on a windows development environment. Note that Self Signed Certificate are not as secure as they ar...
Here is a guide to elixir release. A robust way to package and ship your applications. This post is a guide to mix releases setup, packaging, updates, upgra...
I recently found myself using AWS glue to export some datasets for analytics. Because I had never used Apache Spark before then, I have documented here all ...
I have been enjoying functional programming using Elixir for some time now. I have since gained a huge interest in Functional Programming. In this post, I a...
One of the main advantages of Elixir is concurrency that is super easy to use. In Elixir concurrency ships with the most basic components of the runtime sys...
ETS (Erlang Term Storage) is an in-memory storage engine that is built inside OTP and accessible to Elixir. It is known for its speed and efficiency. In thi...
Here is a simple stateful session-based authentication on a NextJS app using the PassportJS local-strategy approach. I hope you learn something.
Pattern matching is one of the most amazing and useful features in Elixir. It brings so much clarity and power in functional programming that Elixir is. The...
Here is a tutorial on how to implement authorization using OAuth on a Nextjs application. Nextjs is an awesome Server Side Rendering Framework for Reactjs ...
Patterns that make Reactjs components testable. In this post, I share how to make React components ready for testing. I cover testing render, component acti...