Skip to content

2020

Low Quality Image Placeholder

LQIP in the WEB

LQIP, aka Low Quality Image Placeholder. We use placeholders for text fields, videos and images which give a hint or indicate that some content is expected at a particular place on a web page. Why do we need placeholders? Images are heavy, a typical HTML page along with CSS, and… Read More »LQIP in the WEB

#30DaysofCode

#30DaysofCode

I had started the #30DaysofCode📚 challenge while I was revising the basic concepts, data structures, and solving easy problems on LeetCode. I documented this so that it helps both me and others to recall what we have learned. How to use this list📑 First, look at the given questions, if… Read More »#30DaysofCode

Indirect Recursion and direct recursion

Direct & Indirect Recursion

In programming, Recursion means a function calling itself. The best use of recursion is when we have a big/complex problem and is solved by breaking down the problem into smaller instances. In this post, we’ll see direct and indirect recursion. Types of Recursion Generally, there are two main types of… Read More »Direct & Indirect Recursion