How to Profile a NestJS Application

When building a NestJS application, it’s not enough for it to just work, it needs to be fast, efficient, and stable. To achieve that, we must go through profiling, the process of understanding how o...
0 Read More

EXTRA: Fibonacci Sequence

The Fibonacci sequence is a series where each number is the sum of the two preceding ones: ⛶0, 1, 1, 2, 3, 5, 8, 13, 21, 34, ...The general formula is: ⛶F(n)=F(n−1)+F(n−2) Simple Fibon...
0 Read More