Day: June 11, 2023
9 posts
Graph Data Modeling Best Practices: A Comprehensive Guide for Apache AgeDB
Introduction Graph databases have gained significant popularity in recent years due to their ability to efficiently model and…
React States & Virtual DOM
In React, the virtual DOM (Document Object Model) is an abstraction of the actual DOM. It is a…
Don’t tell me how, tell me why!
Is it clear this is about comments? If not, wouldn’t it be better if the title were “Comments:…
The three Ps of product marketing: A recipe for driving value at a growth-stage company
Hi there! I’m going to focus on about the three P’s of product marketing: people, product, and process.…
Architects Delight: Enforcing Layers and Project Boundaries with Nx
Introduction When I embarked on my journey as a software developer, I delved into the depths of software…
Best way to Swapping in JavaScript
Have you ever needed to swap the values of two variables in JavaScript? While it may seem simple…
Dealing with Code Surprises: How Do You Handle Unexpected Results?
How do you navigate the challenges when your code fails to function as anticipated or yields unexpected outcomes?…
2733. LeetCode’s Neither Minimum nor Maximum – JAVA SOLUTION BEATS 100% OF SOLUTIONS IN BOTH RUNTIME AND MEMORY
Code class Solution { public int findNonMinOrMax(int[] nums) { int max = Integer.MIN_VALUE; int min = Integer.MAX_VALUE; for…
Enhancing Code Reviews with Conventional Comments
In software development, code reviews are a vital practice that ensures code quality, promotes consistency, and fosters knowledge…