- Видео 88
- Просмотров 51 505
Code Gyaan
Индия
Добавлен 10 апр 2021
Hi there. I am software engineer with working experience on Fintech, Transport, Enterprise applications building.
Second Largest | GeeksForGeeks | DSA | Without sorting
Prob link- www.geeksforgeeks.org/problems/second-largest3735/1
"Second Largest element in array problem solution"
"GeeksforGeeks array problem solution in C++"
"Single loop approach to find second largest element"
"Two loop solution for second largest in array"
"How to solve second largest element problem"
"Efficient way to find second largest element in C++"
"GeeksforGeeks easy problem solution"
"C++ array problems for beginners"
"Second largest element GeeksforGeeks tutorial"
"Coding interview prep array problems"
GeeksforGeeks Second Largest
Second Largest element array
Array second largest solution
C++ array problems
GeeksforGeeks solution
GeeksforGeeks problem-solving
C++ interview questions
Data stru...
"Second Largest element in array problem solution"
"GeeksforGeeks array problem solution in C++"
"Single loop approach to find second largest element"
"Two loop solution for second largest in array"
"How to solve second largest element problem"
"Efficient way to find second largest element in C++"
"GeeksforGeeks easy problem solution"
"C++ array problems for beginners"
"Second largest element GeeksforGeeks tutorial"
"Coding interview prep array problems"
GeeksforGeeks Second Largest
Second Largest element array
Array second largest solution
C++ array problems
GeeksforGeeks solution
GeeksforGeeks problem-solving
C++ interview questions
Data stru...
Просмотров: 8
Видео
LeetCode for Beginners 2024: Start Solving Like a Pro! | Easy Steps for Success
Просмотров 388Месяц назад
LeetCode for Beginners 2024: Start Solving Like a Pro! | Easy Steps for Success Description: Want to start solving LeetCode but don’t know where to begin? 🤔 In this video, I’ll guide you through the easiest and most effective way to kick off your LeetCode journey as a beginner in 2024. From choosing the right programming language (Python or C ?) to managing time, solving the right problems, and...
Host Your Django Project in 5 Mins! Simple Steps with 100% Guarantee | AWS Cloud Tutorial
Просмотров 466Месяц назад
🚀 Ready to launch your Django project in just 5 minutes? Follow this step-by-step guide for hosting your Django app on AWS EC2 with a 100% success guarantee! Each step is carefully explained to avoid confusion and ensure a successful website deployment using the robust and scalable AWS Cloud. 🔗 Visit AWS and sign up for a free tier account! Click here 👉 aws.amazon.com/free/ Project link - githu...
useClickOutside custom hook - React JS Interview Question - Frontend Machine Coding round interview
Просмотров 9995 месяцев назад
This video helps you in understanding and creating a custom hook where if user click outside of a given an element, The useClickOutside custom hook is a React hook used to detect clicks outside of a specified element. It involves creating a hook that uses a ref to track the element and adds an event listener to detect clicks outside of it. When a click outside is detected, a specified callback ...
useFirstRender custom hook - React JS Interview Question - Frontend Machine Coding round interview
Просмотров 5105 месяцев назад
This video explains how you can write a hook that tells a component whether it is a first render or not - useFirstRender The useFirstRender custom hook in React is used to determine if a component is rendering for the first time. It uses a useRef to track if the component has been rendered before. On the first render, it returns true, and on subsequent renders, it returns false. This is useful ...
Learn Django in 1 hr with Project
Просмотров 9065 месяцев назад
The Ultimate Django URL Shortener Project :- Welcome to our channel! In this video, we explore an exciting URL Shortener project created by Akash Bhaskar. This Python-based application simplifies long URLs into short, easy-to-share links. Whether you're a developer looking for a new project or just curious about URL shortening, this video will guide you through the setup, key features, and how ...
React js interview question (useTimeout hook)- front end machine coding round interview experience
Просмотров 8945 месяцев назад
This video explains how you can create your own useTimeout hook in react. The useTimeout custom hook in React provides a way to execute a function after a specified delay. It simplifies the use of setTimeout by managing the timer lifecycle, ensuring the timer is cleared when the component unmounts or the delay changes. This hook is useful for scenarios where you need to perform delayed actions ...
React interview quiz question - React re-render and misconceptions around it
Просмотров 355 месяцев назад
Let's understand when and how React components re-renders and solve a react interview quiz question around react component re-render cycle. State Changes Always Cause Re-renders: Not all state changes cause re-renders. React uses shallow comparison for state and props to determine if a re-render is necessary. Props Changes Always Trigger Re-renders: Similar to state, props changes trigger re-re...
how to approach and write any polyfill in JavaScript (ex: map polyfill)
Просмотров 975 месяцев назад
#javascript #javascriptinterview #frontenddeveloper A map polyfill in JavaScript provides functionality for environments that do not support the native Array.prototype.map method. It replicates the behavior of the map method, allowing you to apply a provided function to each element in an array, creating a new array with the results. The polyfill ensures compatibility across older browsers by a...
React JS Interview Questions ( useMemo Hook Polyfill )- Frontend Machine Coding Interview Experience
Просмотров 1456 месяцев назад
#JavascriptInterview #ReactInterview #reactjs The useMemo custom hook in React is designed to optimize performance by memoizing the result of a computation. It takes a function and a list of dependencies as arguments, and only re-computes the memoized value when one of the dependencies changes. This helps to avoid expensive calculations on every render, thus enhancing the efficiency of the comp...
React JS Interview Questions ( Custom useEffect Hook ) - Frontend Coding Interview Experience
Просмотров 1256 месяцев назад
A useEffect polyfill is typically used in React applications to ensure compatibility with older browsers or environments that do not support the useEffect hook natively. Here's a summary of how you can create a custom useEffect polyfill: Understanding useEffect: useEffect is a hook in React that allows you to perform side effects in function components. It replaces lifecycle methods like compon...
Quiz 113 - Javascript Arrays interview question #js #javascript #jsquiz
Просмотров 336 месяцев назад
#frontend #javascript #frontenddeveloper In JavaScript, array.push() is a method that is used to add one or more elements to the end of an array. Here's a breakdown of how it works: Syntax: array.push(element1, ..., elementN) array: The array you want to modify by adding elements to its end. element1, ..., elementN: One or more elements you want to add to the end of the array. Functionality: Th...
Quiz 131 - Async await with try catch Javascript #js #javascript #jsquiz
Просмотров 336 месяцев назад
The key to getting this question right is that async functions return a new promise. console.log(a() b()): false. async functions always return a new promise, so even if a() had the exact same implementation as b() (or vice-versa), it would still return false. However, do note that a() returns the promise returned by f() wrapped in another promise, while b() returns the result of the promise re...
How to build a Simple Card Component in ReactJS - Beginner Friendly Tutorial
Просмотров 1196 месяцев назад
How to build a Simple Card Component in ReactJS - Beginner Friendly Tutorial
Pipe Function and Compose Function | Javascript Functional Programming Tutorial
Просмотров 896 месяцев назад
Pipe Function and Compose Function | Javascript Functional Programming Tutorial
Quiz 131 - Async await with try catch Javascript #js #javascript #jsquiz
Просмотров 1886 месяцев назад
Quiz 131 - Async await with try catch Javascript #js #javascript #jsquiz
Implement curry function in Javascript
Просмотров 3396 месяцев назад
Implement curry function in Javascript
Quiz 12 - Function Arguments #js #javascript #jsquiz
Просмотров 1106 месяцев назад
Quiz 12 - Function Arguments #js #javascript #jsquiz
Quiz 11 - Implicit Type Coercion II Javascript #js #javascript #jsquiz
Просмотров 616 месяцев назад
Quiz 11 - Implicit Type Coercion II Javascript #js #javascript #jsquiz
Quiz 10 - Equal operator and booleam #js #javascript #jsquiz
Просмотров 596 месяцев назад
Quiz 10 - Equal operator and booleam #js #javascript #jsquiz
Quiz #9 - Null and undefined javascript #js #javascript #jsquiz
Просмотров 446 месяцев назад
Quiz #9 - Null and undefined javascript #js #javascript #jsquiz
Quiz #8 - Implicit Type Coercion #js #javascript #jsquiz
Просмотров 616 месяцев назад
Quiz #8 - Implicit Type Coercion #js #javascript #jsquiz
Quiz #7 - Javascript Increment Operator interview questions #js #javascript #quiz
Просмотров 686 месяцев назад
Quiz #7 - Javascript Increment Operator interview questions #js #javascript #quiz
Quiz #6 - Javascript Arrow function interview questions #js #javascript #quiz
Просмотров 946 месяцев назад
Quiz #6 - Javascript Arrow function interview questions #js #javascript #quiz
Quiz #5 - Javascript Scope from BFE.dev Javascript interview questions #js #javascript #quiz
Просмотров 846 месяцев назад
Quiz #5 - Javascript Scope from BFE.dev Javascript interview questions #js #javascript #quiz
Quiz #4 - Promise then callbacks II from BFE.dev Javascript interview question #js #javascript #quiz
Просмотров 986 месяцев назад
Quiz #4 - Promise then callbacks II from BFE.dev Javascript interview question #js #javascript #quiz
Quiz #3 - Promise then callbacks from BFE.dev Javascript interview questions #js #javascript #quiz
Просмотров 1716 месяцев назад
Quiz #3 - Promise then callbacks from BFE.dev Javascript interview questions #js #javascript #quiz
Quiz #2 - Promise Executor from BFE.dev Javascript interview quiz questions #js #javascript
Просмотров 796 месяцев назад
Quiz #2 - Promise Executor from BFE.dev Javascript interview quiz questions #js #javascript
Quiz #1 - Promise Order from BFE.dev Javascript interview quizzes questions #js #javascript #quiz
Просмотров 2796 месяцев назад
Quiz #1 - Promise Order from BFE.dev Javascript interview quizzes questions #js #javascript #quiz
Leetcode 199 Binary Tree Right Side View using BFS approach
Просмотров 547 месяцев назад
Leetcode 199 Binary Tree Right Side View using BFS approach
Nice video bro
its working thanks ...................
You are like amazing. I ran through tons of youtube videos for the correct guidance. I didn't receive such a clear explanation before. Man, keep working, you're going to rock
Sir my project is too big that is not working
Bhai sqlite ka data will be gone you said so how to migrate the data 😰?
After closing the AWS tab from the chrome api don't work 😢, please help
in my case it was working try searching on the web!
👍❤
Nicee
Doing things, smart way💯
thank you, it really helped<3
Glad it helped!
Very Helpful ..
Nice Please share me your email id for contacting you @saifvasta9787
Hlo bro how can upload the django with media file plzz reply bro
this project already uses media files like static images .
Bro,🎉 Could you please upload a detailed video for! how to host a Django python project in Digital ocean.
will try !
@@codegyaan Vro! I hope you will Upload it💪👍
It's hard to focus, I did rather choose to study you over the things you are teaching 🤭🤭👉👈
Arey bhai waah❤
Nice
Thanks
Good info bro. Can you tell, in which company did you get placed?
💯💯
Thanks bro 😊 . Love from KLSGIT ♥️
Always welcome
My boy getting better day by day🎉 Proud watching you 🎉
U r blushing man, and also explaining things well.
Nicee🎉
Thanks 🔥
Good one bro🫡
Thanks 🔥
Very well explained💯
Glad you liked it
Amazing keep going 🌟
Thank you 🙌
God bless you
Keep it up men.👍👍
Big Ups to you my brother❤
Thanks
I just wanted to say that your videos are absolutely awesome! You explain everything so well
Glad you like them! Do share with your friends , help me get some subs !!!
something went wrong
Try to make it right
hello sir can you make a video from where you make the auto portfolio maker? i liked the website
You can check it out on my GitHub-- github.com/akashbhaskar2011/Portfolio_generator.git
nice but u have not covered the cleanup effect.
Yes you need to return a function from an effect which will be executed on unmount.
Can I deploy Django Rest framework in the same way?
Give it a try
which application you are using for py code
PyCharm
bro have got error after save code do reload and open configuration in new tap got error something went wrong
you can dm me if you want i can help you there .
Thanks bro for this video, very helpful
Glad it helped
ty!
Your welcome
Why you didn't add "pc" to the title? Everyone can change on pc. People want to know how to change on phone
There is no way on phone.
Why django styles for admin panel not work?
There are two ways to fix this. The ugly/hacky way is to add a specific static files mapping pointing at the django admin css folder: url: /static/admin path: /usr/local/lib/python3.10/dist-packages/django/contrib/admin/static/admin/ (or the path to the same folder inside your virtualenv, if you're using one) But that's an ugly hack, and you'll soon run into problems with the rest of your CSS not loading. The "proper" way to do it is to make sure you've got django.contrib.admin loaded in your INSTALLED_APPS, and then run collectstatic. There's a full guide to django static files here--help.pythonanywhere.com/pages/DjangoStaticFiles
why did you select python 3.10?
Because my project was dependent on that
Thanks , it was very helpful and I was able to host my website
Glad it helped
can we use arrow function as the inner function to return? Shouldn't we use use arrow function ideally as it will not have its own context
Give it a try
i got server error
You must have missed some step
hello sir, eralier i saw you video and deployed my website and it worked fine. but later when i updated my code and once againg deployed my code it didnot work. it was saying module not found error for the module that i didnot even use.
Did it work or are you still facing the issue? No sir bro. Bro is fine.
you saved me
Will this method work for serving react frontend as html via Django views
i have not tried that way , but give it a try . forum related to your querry- www.pythonanywhere.com/forums/topic/27473/
@@codegyaan thanks I appreciate your help
Thanks for this great walkthrough. Quick question though, why do we have to set the ref initially to null?
We can set the cb function too initially as ref. Not an issue. Both are correct
why the styles is not being displayed sir
error?
Not working. After deploying it is saying something went wrong.
try taking help from Chatgpt a bit !