Jemima AbuforJemima Abu's Blogjemimaabu.hashnode.net·Mar 31, 2021FeaturedHow I Built My Perfect Score Portfolio WebsiteI recently published the fourth version of my portfolio jemimaabu.com. With this version, I tried to make the code as performant and accessible as possible but still have an interactive site, so this article will be about how I managed to achieve th...Discuss·293 likes·19.6K readsportfolio
Abdallah HemdanforAbdallah Hemdanhemdan.hashnode.net·Jan 11, 2022Actions On VisibilitySo a couple of months ago I come across Intersection Observer API which helped me a lot in lazy loading multiple BE requests on different pages on my work at @Instabug which affected the first-time load of these pages significantly. After that, I tho...Discuss·249 likes·9.5K readsWeb PerformanceWeb Development
Victoria LoforArticles by Victoria Lovictoria.hashnode.net·Jun 24, 2022FeaturedIntroduction to Vite: The Next Generation Frontend ToolingAs a React developer, using Create React App to start new projects and run them can be a pain. Firstly, it is slow to install all the 140MB dependencies when creating a new app. Next, it uses Webpack to bundle the code each time new changes are made....Discuss·214 likes·8.7K readsviteAmazing read! Thanks for sharing this 👍 I was just thinking about reading on Vite and this helps! Another great and clear article Victoria Lo! 🤗 12
Jakub Andrzejewskijacobandrewsky.hashnode.net·Apr 25, 2023Improving the Performance of Nuxt with Delayed HydrationThe first time I heard about lazy/delayed hydration was three years ago when I joined my previous company. At first, I wasn't sure what it does (as at this time I was not experienced with SSR/SSG applications) so I was just aware of the term but have...DiscussNuxt PerformanceNuxt
Karan CSkaranblog.hashnode.net·Apr 25, 2023Indexing for high performance, simplified.Indexes are essential components of databases that help improve performance by allowing for efficient data retrieval. They work by creating a data structure that maps the values in a column to their corresponding rows in a table. In this blog post, w...Discuss·10 likesindexing
Alexandre Calaçaalexandrecalaca.hashnode.net·Apr 24, 2023Don't Let Slow Specs Slow You Down: How to Identify them [Part I]Greeting Hey guys, how've you been? It's AC Alexandre Calaça here. Hope you enjoy this new article. Introduction This article Don't Let Slow Specs Slow You Down: How to Identify them [Part I] is the first part of a series dedicated to talk about rsp...DiscussTesting
DbVisualizerforThe Tablethetable.hashnode.net·Apr 24, 2023A Guide to Multithreading in SQLWaiting for SQL queries to finish running can be frustrating. Multithreading can improve performance and efficiency. Introduction Are you tired of staring at your screen, waiting for your SQL queries to finish running? Delayed query time is a common ...Discussperformance
Amit Himaniamithimani.hashnode.net·Apr 23, 2023Unlocking the Potential of Your Web Application with a CDNWhat is CDN A Content Delivery Network (CDN) is a critical component of application scaling. It works by distributing an application's workload across multiple servers in different geographic locations. By doing this, the CDN can improve the performa...DiscussCDN
Vasu Rastogivasurastogi.hashnode.net·Apr 23, 2023Java Performance Optimization Techniques: Tips and Tricks for Faster Code.Java is a widely-used programming language that offers a range of tools and libraries for developers to create high-performance applications. However, optimizing Java code for maximum performance can be challenging, particularly when working with lar...DiscussJava
Amit kumartechthoughtsexplorer.hashnode.net·Apr 23, 2023A Comprehensive Guide to Reflection in Java for DevelopersIntroduction to Reflection Reflection is a powerful feature in Java that allows developers to examine and modify the behavior of applications during runtime. With reflection, you can inspect classes, interfaces, fields, and methods to retrieve metada...DiscussJava Uncovered: Exploring the Infinite PossibilitiesJava
Software Testing Notessoftwaretestingnotes.hashnode.net·Apr 22, 2023Why use that ___ fancy new framework to automate your end to end testing when you can just use NodeJSThe native testing engine of Node.js has finally reached the stage of stable functionality, and in this new version, it already comes with a fancy reporter in the terminal. It still has a long way to go but if you could use just Node.js for most of y...DiscussSoftware Testing
DbVisualizerforThe Tablethetable.hashnode.net·Apr 21, 2023Deadlocks in Databases: A GuideDeadlocking refers to a situation where the transaction A cannot proceed due to the transaction B holding something that the transaction A needs. The transaction B cannot proceed either because it needs to wait for the transaction A to complete. Inte...Discussperformance
Harsh Mangeharshmange.hashnode.net·Apr 18, 2023What is NoSQL, and when should you use it over a relational database?NoSQL (Not Only SQL) is a type of database management system that is designed to handle large volumes of unstructured or semi-structured data. Unlike traditional relational databases, NoSQL databases do not rely on a fixed schema or tabular data stru...DiscussDatabases