Create mac app from a shell script
Ever thought of having an application to run it directly instead of multiple shell commands? And won’t it be cool to just convert your shell… Read More »Create mac app from a shell script
Ever thought of having an application to run it directly instead of multiple shell commands? And won’t it be cool to just convert your shell… Read More »Create mac app from a shell script
Have you ever discovered a scenario wherever you probably did some arithmetic computation on decimal numbers in a computer and it returned an unexpected weird… Read More »why 0.1 + 0.2 does not equal to 0.3?
JavaScript supports Generator functions and Objects similar to Python Generators. Let’s see what is JavaScript Generators and how it works. What is Generator Generator in… Read More »JavaScript Generator and how it works.
JavaScript has many ways to handle asynchronous calls and Promise is one of the mostly used built-in object nowadays. so let’s understand what is Promise and… Read More »JavaScript promises and how it works.
Pay attention to the things first which are the most important. Distance yourself from negativity. Stop only when DONE not when TIRED. Wake up with… Read More »Just Start – The Motivation
Ever got into a trap of fraudulent transactions from your bank account? Do you have faith and believe in yourself and on the service provider that… Read More »How to secure your bank account and cards from fraud transactions.
Snippet: Snippets are small scripting feature that allows you to execute within the sources panel of Chrome Developer tools. It executes from the context of… Read More »Devtools Code Snippets and its benefit
Global object Array itself does not have any remove or delete method. But there are many other ways to remove array elements in JavaScript. Below… Read More »Different ways to delete Array elements in JavaScript
A useful mnemonic for Call() and Apply() is: a in apply() stands for array of arguments. c in  call() stands for comma separated arguments. The difference between apply() and call() is… Read More »Difference Between Call() and Apply() in JavaScript
Ever wondered how to save any data or a large object from Chrome browser console while debugging? Let’s talk about it and get the hands… Read More »Export data from the Chrome browser console