In this part of the series, we will dive into writing our first Sui Move smart contract. Before we...
Welcome back to the Mastering Sui DeepBook series! In Part 1, we introduced the core concepts of the...
This series is written by a senior software engineer who works with the Sui blockchain and its...
There's a lot of noise in the AI space right now. Too many people who don't know what they're doing...
When using MUI Data Grid, you might need to navigate input fields with arrow keys. By default, arrow...
Have you ever wondered what secrets your WhatsApp chats hold? What if you could analyze your...
Hello, fellow developers! Today, I’m excited to share with you a project I’ve been working on:...
This is a submission for DEV Challenge v24.03.20, One Byte Explainer: Browser API or Feature. ...
Ever wondered how to view log files in real time without downloading them? I recently needed it, as I...
10.1. Coding Ain’t Done ’Til All the Tests Run. ’Nuff said. 10.2. Use...
8.1. Use Property-Based Tests to Validate Your Assumptions. Property-based tests will try...
9.1. Don’t Think Outside the Box—Find the Box. When faced with an impossible problem,...
7.1. Listen to Your Inner Lizard. When it feels like your code is pushing back, it’s...
6.1. Don't Pay Inheritance Tax. Consider alternatives that better fit your needs, such as...
5.1. Act Locally. Keep the scope of mutable variables and open resources short and easily...
4.1. Failing Test Before Fixing Code. Create a focussed test that reveals the bug before...
3.1. Prototype to Learn. Prototyping is a learning experience. Its value lies not in the...
2.1. English is Just Another Programming Language. Treat English as Just Another...
1. Care About Your Craft. Why spend your life developing software unless you care about...
React has established itself as a leading library for building dynamic user interfaces. While it's...
Ever needed to server big JSON files over the network (like 100+ MB files). The efficient way we can...
Had an Interview for React.js frontend developer for one of the MNC company. The question they asked...
Context: For 3+ year experience. I have to talk interviews of candidates for the position of...
Update: The public links are down due to the company didn't wanted to have the assignment code...
It was my first time getting an interview at any FAANG company. The position was for SD II Fullstack...
Given an array of positive integers arr, return the sum of all possible odd-length subarrays of...
Given the array nums consisting of 2n elements in the form [x1,x2,...,xn,y1,y2,...,yn]. Return the...
Below is the programmer written in JavaScript to find the all possible substrings of a given string...
I have read the documentation for Proxy and Reflect on MDN but didn't understand much. Can anyone...
There will be a time when you would want to run async operations inside for loops (ex. API...