pallavi chauhaninnovateitworld.hashnode.dev·Nov 14, 2024The Software Tester’s Toolkit: Must-Have Skills and Tools for 2024With software testing advancing rapidly, a tester's toolkit must be equipped with up-to-date skills and technologies to keep pace. As new frameworks, automation tools, and methodologies emerge, testers need to stay adaptable and well-informed. This b...DiscussAnalytical Skills
kietHThashnext.hashnode.dev·Nov 11, 2024How to Start Thinking About Any ProblemStep 1: Understanding the Problem Before jumping into code, let's break down the problem logically: Dynamic Form Fields: The form needs to render different types of fields based on some configuration object (this could be fetched from an API, loaded...DiscussReact
Bhadreshkumar Ghevariyablog.bhadreshghevariya.com·Nov 10, 2024I wrote the first leetcode program after a Year and made simple mistakes.Today, I tried to use my problem-solving muscle and tried solving easy-level problems on leetcode. At first, this problem looked very easy to me, So I noted down important pieces of information and started to solve the problem on paper. Still, I took...Discuss·1 likeFirst leetcode
Harsh Bopaliyathe-new-age-of-ai-engineering.hashnode.dev·Nov 7, 2024A Story About Probability and Decision MakingOne afternoon, two friends sat at their favorite café, sipping coffee and chatting about life. One of them had recently become obsessed with learning about how probability affects the decisions we make every day. As they talked, they realized how oft...Discuss·2 likes·26 readsprobability
Tanmay Bhansaliadvance-tic-tac-toe.hashnode.dev·Nov 1, 2024Day 1: Building a Customizable Tic Tac Toe with Socket.io - Set Your Own Board Size and Play Online!Welcome to Day 1 of building customizable Tic Tac Toe game! Today, I’m focusing on setting up the basics with an Pass & Play mode, where players can select their own board size and play on the same device. My goal for Day 1 is to create a smooth, fle...Discuss·10 likes·41 readsReact
Salman Iyadsalmaniyad.hashnode.dev·Oct 29, 2024أهم الأنماط البرمجية لحل مشاكل المقابلات التقنية بكفاءةلما نحكي عن البرمجة التنافسية أو المقابلات التقنية، بنلاحظ إنه المشكلة مش بعدد المسائل اللي بنحلها، بل في الأنماط البرمجية اللي بنتعلمها ونتقن استخدامها. تعلم الخوارزميات وأنماط البرمجة الفعّالة مش بس بيمكنك من حل مجموعة متنوعة من المشاكل بسرعة وكفاء...Discusspatterns
Adegbite Moyomademadevblog.hashnode.dev·Oct 20, 2024Aim for the Bigger Picture in Tech: It’s More Than Just the MoneyLet me start by saying that money is important. Yes, it should be one of the reasons you're working hard, but it shouldn’t end there. Focusing solely on the financial side can trap you in a cycle where no amount is ever enough. So, while earning is e...Discusstechnology
Sandeep Ranasandrana.hashnode.dev·Oct 19, 2024Bulk Record Creation: The Ultimate Shortcut You Wish You Knew SoonerIntroduction Are you tired of long, clunky code for bulk record creation? Well, good news—there’s a better way, and it’s so simple, it might make you laugh. In this blog, I’ll show you the best method to turn attachments into records in just a few li...DiscussServiceNow SeriesHTML5
Zouhair Grirzouhairgr-blog.hashnode.dev·Oct 17, 2024Important Details to Understand About C Languagemultiple pointers can point on the same memory location #include <stdlib.h> int main(){ int *pt1 = malloc(sizeof(int)); if(pt1 == NULL){ return(1); } *pt1 = 42; int *pt2 = pt1; // point pt2 to the s...DiscussC++
Sandeep Ranasandrana.hashnode.dev·Oct 17, 2024Mastering Bulk Record Creation in ServiceNow: The Right WayIntroduction Welcome to a world where bulk record creation doesn’t have to be a nightmare! Say goodbye to messy methods and hello to a smarter approach that’ll make you wonder why you didn’t try this sooner. In this guide, I’ll show you how to correc...DiscussServiceNow SeriesServiceNow