Welcome to my blog
I'm Abhinav, a web developer based in Banglore, India.
will be dumping blogs and wierd stuff here.
You can view all blogs by topic here
Yet another 4 JavaScript tips for shorter code
Seems like JavaScript never ceases to surprise me, perhaps that would explain why I’m writing another blog on JavaScript tips. This will be my continuation to my previous two blogs on the same topic...
Behold, React 18 !
A new version of React was released on the 29th of March this year. The latest version, React 18, includes some out-of-the-box improvements, including concurrent rending, new APIs, and much more. In t...
I made a portfolio website using only HTML without any Styles. This is what I learned
I made a portfolio website using only HTML without any styles. The intention was to push the limits of pure HTML and see its capabilities, and it was worth it. These are some of the things I’ve learne...
Why You Should Use Error Boundaries in React
React Error Boundaries were introduced in React version 16 to generate a fallback UI in case a component were to crash. This was to ensure that a JavaScript error in a single component should not cras...
Another 4 JavaScript Tips for Shorter Code
4 more javascript tricks. This is continuation to my older acrticle on javascript...
4 JavaScript Tips for Shorter Code
There are plenty of tips which can be followed to make the JavaScript code shorter as well less complicated. I will share four of such tips which have reduced the effort and development time for me a ...
How React Rethinks Best Practices
React is currently the most popular front-end JavaScript library for building Web applications. It is an open-source JavaScript library that is used for building user interfaces. It renders the UI as ...
React Explained and Made Simple
As per the landing page of React , it is a JavaScript library to build user interfaces. Its not a framework, but a library. Angular, Vue, Next.js, Gatsby, Redwood.js etc are examples for frameworks. A...
Using Clamp() for Responsiveness
Clamp is one of the most useful yet underrated functions in CSS to ensure responsiveness in web design. Web pages can be viewed from multiple platforms, and you will have to ensure that the design won...