Mastering API Design: Best Practices for Seamless Integration
In today’s interconnected digital landscape, Application Programming Interfaces (APIs) serve as the glue that holds the web together. They enable…
Difference between spread and rest operators
Explanation: examples as follows: Spread Operator (...) used to spread the elements of an iterable (for example an array, string,…
regex basic example explained
Let’s say, need a character string like this “64d3ab4de4bae1091e5de441” wiht only digitnumbers, lowercase and Upper case letters from a to…
[run] and [stop] a docker container in windows from powershell
the step of sintalling docker, is the same for everyone, navigate to “https://www.docker.com/products/docker-desktop/” and install. Once installed, log out and…
Working with digits of an integer in javascript (no array iterators).
Given an integer n, how to identify each of the digits that are are part of n. (Example, n =…
Permutation algorithm
Returns an array that actually represents the permutation algorithm. It receives an array, and has to return an array of…
python plot – using numpy and matplotlib
Using numpy and matplotlib, a sequence of sinusoids can be created, like a piece of art. In this case, a…
How to install cygwin in windows
Download from here https://www.cygwin.com/ The setup file Install in c:/ Done! Questions: What is Cygwin? Cygwin is “a large collection…