C
Community Head & Founder
CryptoMinds,
@dpvasani56
Darshan Vasani
@dpvasani56
Web 3.0 | Blockchain Developer | Career Counselor| Building CryptoMinds | 6K+ Family @Linkedin | MERN Stack | Graphic Designer
Web 3.0 | Blockchain Developer | Career Counselor| Building CryptoMinds | 6K+ Family @Linkedin | MERN Stack | Graphic Designer
Community Head & Founder, CryptoMinds
Ahmedabad, India
3
projects
3
0
prizes
0
8
hackathons
8
0
Hackathons org.
0
3,240
contributions in the last year
Apr
S
M
T
W
T
F
S
Mar
331
stars earned
78
repositories
57
followers
Welcome to my 30 Days of Data Structures and Algorithms series! Follow my journey as I solve various DSA problems day by day. Each day's progress is documented below with links to the solutions.
C++
13Stars
0Forks
Welcome to the OOPs-In-Cpp repository! This repository is dedicated to exploring and mastering Object-Oriented Programming (OOP) concepts in C++. It includes a variety of code samples, exercises, and homework assignments that will help you understand and apply OOP principles effectively.
C++
5Stars
0Forks
This project is a YouTweet backend that integrates YouTube-like functionalities with a Twitter-style tweet system. It includes essential features like user management, video uploading, playlist creation, and more. Explore the API documentation for in-depth details.
JavaScript
3Stars
0Forks
Welcome to the JavaScript-Notes repository! This repository contains a comprehensive collection of JavaScript notes and practice sets designed to help you master the fundamentals and advanced concepts of JavaScript. Each chapter focuses on a specific topic and includes practice exercises to reinforce your understanding.
JavaScript
12Stars
2Forks
C
As a Career Development Center Director (Volunteer) for 2500-
3000 students, I’ve honed expertise in counseling, mentoring,
and coaching, guiding students in job market navigation, networking, and enhancing job readiness skills. I’ve also fostered
partnerships with employers and industry leaders to offer relevant training and internships
C
A
C
CryptoMinds,
A
AlmaBetter,
AI takes your interview and records answer
Cost-Efficient Processes through Middlemen Removal: Eliminating brokers lowers transaction costs. Unscrupulous brokers can no longer exploit uninformed individuals. Streamlined procedures save time for individuals by avoiding unnecessary delays. Fraud Prevention with Distributed Ledger: Implementation of a tamper-proof ledger distributed across multiple nodes. Enhances security by ensuring ownership records remain secure and unalterable. Counters fraudulent activities, fostering a trustworthy environment for property transactions. Secure Property Document Storage via IPFS: Utilization of InterPlanetary File System (IPFS) for decentralized and secure document storage. Reduces vulnerability associated with centralized repositories. Enhances confidentiality and integrity of property registration documents, protecting against unauthorized access and tampering.
medium.com
🚀 React Interview Question Series: Day 5 🚀 👨💻 Question: What are React Keys and why are they important? 💡 Answer: In React, keys are special attributes you add to elements when rendering lists. They help React identify which items have changed, are added, or are removed, allowing for efficient updates to the user interface. 1️⃣ What is a Key? A key is a unique identifier assigned to elements within a list. Commonly, you’ll use an item’s ID or unique property as its key. Example: const items = ["A...
medium.com
🚀 React Interview Question Series: Day 3 🚀 👨💻 Question: What’s the difference between JSX and JS in React? 💡 Answer: 1️⃣ JSX (JavaScript XML): JSX is a syntax extension for JavaScript that looks like HTML. It allows you to write UI components in a way that is familiar and expressive, making your code more readable. JSX is not valid JavaScript, so it needs to be compiled (using Babel) into regular JavaScript before it can be understood by browsers. Example: const element = <h1>Hello, World!</h1>; Th...
medium.com
🚀 React Interview Question Series: Day 2 🚀 👨💻 Question: How can you use the useState hook to update the state in two ways? 💡 Answer: React’s useState hook allows us to update the state in multiple ways. Here are two common approaches: 1️⃣ Direct Update (Non-functional update): const [counter, setCounter] = useState(0); setCounter(counter + 1); setCounter(counter + 1); setCounter(counter + 1); 💡 Result: The counter value only increments by 1, not by 3. Why? React batches state updates when they don...