© 2023 Hashnode
#performance
While optimizing React performance is often a matter of breaking down complex data structures or using memoization and useCallback, there are some cases very specific use cases where performance becom…
If you haven't read the previous blog post on this series, you can read it here To give you a recap, here's what we are required to build for our "hypothetical" application Assume you are tasked to b…
Observability is a crucial aspect of modern software development, especially in the realm of DevOps. It involves monitoring and gaining insights into the behaviour of applications and infrastructure t…
Introduction: In a React application, components are rendered…usually a lot. Improving performance includes preventing unnecessary renders and reducing the time a render takes. React comes with tools …
If you haven't read it already, do check out my article Introducing Polars, which goes over what is Polars, who it is for and the differences from Pandas in detail. This article only briefly touches u…
LocalStorage is a handy feature that web developers can use to store small amounts of data on a user's computer. However, there are several reasons why you should stop using LocalStorage in your web d…
React is a popular framework for building dynamic and interactive web applications. However, with large codebases, building and deploying these applications can take a long time. In this post, we'll e…
Introduction Setting up a project from scratch can be a daunting task, especially if you are new to the world of web development. But fear not, with the right tools and guidance, you can create a prod…
Background So at the enterprise I’m working with, we are consuming messages from Confluent Cloud topics. These messages should end up in S3 to be available for further processing. Due to enterprise re…
Hello Android-ers 🫡, after developing an application, we are mostly invested in improving the performance of the application and finding out the issues in the existing application that might be causi…