Repo: https://github.com/veltman/clmystery git clone https://github.com/veltman/clmystery.git cd clmystery less instructions # based on it, we need to collect all CLUE from crimescene file cd mystery ls # crimescene interviews memberships peopl...
Question details: https://sadservers.com/scenario/saskatoon # inspect logs less /home/admin/access.log # print first word of each line (space is separator) awk '{print $1}' /home/admin/access.log # we need count of all IPs which we'll get with uniq...
What gets measured, gets fixed. If you're not tracking the state of something, you won't know what to improve or fix. Monitoring is the collection of the performance metrics of a system like, latency, user requests, error rates, etc, and then analysi...
Motivation Do you have a front-end app ready and running well on your local host? And, now you want to host it somewhere for the world to access it? In this article, we are going to use Google Cloud Platform (GCP) to host our app and expose it to the...
For starters, let us understand what ES6 and CommonJS are, as well as their history. ES6 stands for ECMAScript 6. ECMAScript was created to standardize JavaScript. CommonJS is a project with the goal to establish conventions on the module ecosystem...
The following is a framework for SaaS startups as explained by Bhavin Turakhia (serial entrepreneur, investor, billionaire) on a podcast with Sanjay Swamy where he discusses his four-point framework that he has established after working on SaaS start...
In most sorting algorithms that use the divide and conquer approach, you'd need to find the middle index between two indices. If l is the left index and r is the right index, then our most obvious approach towards finding the half or middle of the tw...