In some occasion you can’t work with only the master main branch. For example when working with open source, the upstream repository is not owned by you. So in order to add your contribution you’d likely need to fork it and make a pull request. ...
Let’s start from scratch on a macOS environment from the installation of ruby to actually running the theme. The jekyll theme that we will be running is Type-on-Strap. If you are on a different operating system and have issues check out the Jekyll...
iTerm2 is a terminal replacement that works for newer version of macOS. Since macOS X Catalina (10.15) the default shell uses Z shell aka zsh. The Z shell adds some cool functionalities compared to the traditional bash shell. One of them is the e...
JavaScript is a very permissive (some would say multi-paradigm) programmatic language and its syntax can be quite intriguing when you have never heard of the EcmaScript (ES) specification or certain programming style. So here I have compiled some...
React is a well known javascript library for building user interfaces. React is part of the Facebook Open source, and has a very good documentation to learn 📚! You can get started with your own React application using Create React App. It is a bo...
Big O, is a mathematical notation use in computer science to describe the behaviour of an algorithm. Usually either space (its memory footprint while running) or time complexity. Why Big O notation The Big O we’ll be looking at is a simplified ...
Prometheus is a titan in greek mythology that brought fire (hence the logo). Prometheus is also a modern monitoring system that has uses time series to display the data. It provides a query language for better exploiting your metrics compiled with...
Azure AKS (Azure Kubernetes Cluster) is a serverless Kubernetes offer. Deploy and manage containerized applications more easily with a fully managed Kubernetes service. Azure Kubernetes Service Create your cluster When you log into Azure Cloud ...
Mermaid.js is a js library that transforms text into diagrams (sequence, Gantt or class diagrams, flow charts, …). So far the ones that I am particularly keen on using are the sequence diagrams, you can find all the documentation, on the mermaid ...
What is LDAP More about the Concepts LDAP is the Lightweight Directory Access Protocol,also referred as X.500 (Which is a series of computer networking standards covering electronic directory services.)...