Пікірлер
@RandomReqr
@RandomReqr 3 сағат бұрын
Did someone complete his url shortener project? I need help in deploying it on vercel Please someone who has done it, help me
@RandomReqr
@RandomReqr 3 сағат бұрын
Did someone complete his url shortener project? I need help in deploying it on vercel Please someone who has done it, help me
@RandomReqr
@RandomReqr 4 сағат бұрын
Can someone please tell me how to deploy this project in vercel? Please help me if anyone has completed it.
@pragatitiwari9368
@pragatitiwari9368 9 сағат бұрын
Getting this error when I am trying to send message from logged in user --- Cannot read properties of undefined (reading '_id') TypeError: Cannot read properties of undefined (reading '_id') at isSameUser Please someone help
@Somens8Dworld
@Somens8Dworld 10 сағат бұрын
always use for loop bro
@aditya8710
@aditya8710 16 сағат бұрын
when i log in with different user why is that the last user is still loggedIn and i have to manualy refresh the page to get the new user Anyone know about this
@KavyaChandrasekaran
@KavyaChandrasekaran 17 сағат бұрын
@RoadsideCoder Cleanup function should run before useEffect function. May be this works. export function useMyEffect(callBck, deps) { const isFirstRender = useRef(true); const prevDeps = useRef([]); const returnFunc = useRef(); if(isFirstRender.current) { isFirstRender.current = false; returnFunc.current = callBck(); } else { const depsChanged = deps? JSON.stringify(prevDeps.current) !== JSON.stringify(deps) : true; if(depsChanged) { if(typeof returnFunc.current === "function") { returnFunc.current(); } callBck(); } } prevDeps.current = deps || []; }
@trannhatlinh3344
@trannhatlinh3344 19 сағат бұрын
The reload notification is lost and returns an empty array ?
@yatinranaa
@yatinranaa 20 сағат бұрын
for everyone who cannot find the base url follow the following steps 1)login into your cloudinary account 2)go to dashboard and copy your cloud name 3)go to product environment settings ->upload ->copy preset name which you had created 5)use the following code and edit it according to your cloud name and preset name const postDetails = useCallback((pics) => { setLoading(true); if (!pics) { toast({ title: 'Please select an image', status: 'warning', duration: 5000, isClosable: true, position: 'bottom', }); setLoading(false); return; } if (pics.type === 'image/jpeg' || pics.type === 'image/png') { const data = new FormData(); data.append('file', pics); data.append('upload_preset', 'yourpresetname'); data.append('cloud_name', 'yourcloudname'); fetch('api.cloudinary.com/v1_1/yourcloudname/image/upload', { method: 'post', body: data, }) .then((res) => res.json()) .then((data) => { setPic(data.public_id.toString()); setLoading(false); console.log(data) }) .catch((err) => { console.error(err); setLoading(false); }); } else { toast({ title: 'Please select a valid image', status: 'warning', duration: 5000, isClosable: true, position: 'bottom', }); setLoading(false); } }, [toast]);
@kashmirtechtv2948
@kashmirtechtv2948 21 сағат бұрын
Why do we need to call a function and save it im variable and then again call it with that variable????
@technotes721
@technotes721 22 сағат бұрын
You are not clearing the interval when it reaches to value =100, which means even the progress bar not not showing the value above 100 but internally that interval must be continue o increase our value.
@ajayks3815
@ajayks3815 Күн бұрын
bro using this we can only translate static texts?
@virajdimble5034
@virajdimble5034 Күн бұрын
@RoadsideCoder This Project Is Not For New Version Technologies. In This Project You are using Very low versions & Many Error are coming from that versions Dependcies Are Stuck from version issue Specially Chakra/UI. 😤
@RoadsideCoder
@RoadsideCoder Күн бұрын
U can use the same versions as mine, not many things have changed
@VikramAgarwal-e9b
@VikramAgarwal-e9b Күн бұрын
hey would the same work for nextjs, seems to be a pain point with ssr
@cozits-wu1rw
@cozits-wu1rw Күн бұрын
brother pleasee respond i followed you steps but my local is not responding and even if it is its showing cannot get pleas hlp please respond as oon as you can my life depnds on this
@RoadsideCoder
@RoadsideCoder Күн бұрын
whats the error?
@kashmirtechtv2948
@kashmirtechtv2948 Күн бұрын
Awesome brother
@IndhuTharun
@IndhuTharun Күн бұрын
Great Work bro....Thanks!!.....Keep Rocking!!
@UmerSaleem
@UmerSaleem Күн бұрын
JQuery doing this for decades ❤
@KartikKatwal
@KartikKatwal Күн бұрын
not for large websites
@devyanshyadav727
@devyanshyadav727 Күн бұрын
How we can add tailwind css options to the pckg?
@HelloFaizan
@HelloFaizan Күн бұрын
Same question
@Jacky-rc6mu
@Jacky-rc6mu Күн бұрын
best tutorial ever watch
@subhamrakshit7755
@subhamrakshit7755 2 күн бұрын
inputRef.current[newOtp.indexOf("")].focus()
@swayamprakashgali8398
@swayamprakashgali8398 2 күн бұрын
Waiting for your react 19 tutorial bro 😁🥰😍
@avknash175
@avknash175 2 күн бұрын
Thanks for the content. Can u plz share the json somewhere.
@RoadsideCoder
@RoadsideCoder 2 күн бұрын
Check the github repo from description
@avknash175
@avknash175 Күн бұрын
Thanks man 😊
@bansallearning-iitjee634
@bansallearning-iitjee634 2 күн бұрын
I also build a npm package - real-time-monaco For real time collaboration with Monaco editor
@HelloFaizan
@HelloFaizan Күн бұрын
Hey, I need help with building a package, can you share your contact details like twitter
@nileshshetty2496
@nileshshetty2496 2 күн бұрын
import React, { useEffect, useState } from "react"; import axios from "axios"; const ChatPage = () => { const [chats, setChats] = useState([]); const fetchChats = async () => { const data = await axios({ method: "get", baseURL: "localhost:5000/api", url: "chat", }); setChats(data.data); }; useEffect(() => { fetchChats(); }, []); return ( <> <div> {chats.map((chat) => ( <div key={chat._id}>{chat.chatName}</div> ))} </div> </> ); }; export default ChatPage;
@pg_piyush
@pg_piyush 2 күн бұрын
Bhaiya ek bada full Stack project video le aao please.... With a lot of technologies in it 🙏🙏🙏
@RoadsideCoder
@RoadsideCoder 2 күн бұрын
recently uploaded this - kzfaq.info/get/bejne/nct5qqV62tWRpZs.html
@kaushikitagib3400
@kaushikitagib3400 2 күн бұрын
actually Space complexity of map is o(n) and for loop people claim it's o(1). but since, we use array for result the auxiliary space still be o(n). 😅😅😅😅
@Pavethra-g4o
@Pavethra-g4o 2 күн бұрын
thanq bhaii !!
@tinolbhoyar4646
@tinolbhoyar4646 2 күн бұрын
Interview question??
@ritvijverma2420
@ritvijverma2420 2 күн бұрын
Plz upload next Videos & plz complete this series...
@ritvijverma2420
@ritvijverma2420 2 күн бұрын
Plz upload next Videos & plz complete this series...
@ritvijverma2420
@ritvijverma2420 2 күн бұрын
Plz upload next Videos & plz complete this series...
@ritvijverma2420
@ritvijverma2420 2 күн бұрын
Plz upload next Videos & plz complete this series...
@ritvijverma2420
@ritvijverma2420 2 күн бұрын
Plz upload next Videos & plz complete this series...
@ritvijverma2420
@ritvijverma2420 2 күн бұрын
Plz upload next Videos & plz complete this series...
@investccorrectly
@investccorrectly 2 күн бұрын
Actually React is getting Traditional I think , there is Next.js which far better than react so if React 19 is there then compare it with Next js
@investccorrectly
@investccorrectly 2 күн бұрын
Actually React is getting Traditional I think , there is Next.js which far better than react so if React 19 is there then compare it with Next js
@anowarulhassan5117
@anowarulhassan5117 2 күн бұрын
Bhai mat bana video react19 pe. Jarurat nahi hy.
@neerajnegi1958
@neerajnegi1958 2 күн бұрын
From where the spinner is coming in the upload timing
@mayurghuge8846
@mayurghuge8846 3 күн бұрын
Thank you.
@mohdumar4177
@mohdumar4177 3 күн бұрын
Can anyone help me that after all completed , I have facing the issue in users is undefined in getSender {Uncaught TypeError: users is undefined getSender Logics.js:2 children MyChat.jsx:110 MyChat MyChat.jsx:96 }
@ChitranshAnkitSaxena
@ChitranshAnkitSaxena 3 күн бұрын
Great 👍
@AB-dp7pw
@AB-dp7pw 3 күн бұрын
Fun fact:- NPM claims it can be anything, but not node package manager.😊
@codingvidyalaya8370
@codingvidyalaya8370 3 күн бұрын
Go away from interview if they ask you to build something
@RoadsideCoder
@RoadsideCoder 2 күн бұрын
why?
@infinitecodes
@infinitecodes 3 күн бұрын
Vite react ke liye progressive web app kaa video dije
@RoadsideCoder
@RoadsideCoder 3 күн бұрын
ok noted!
@dipaksaha6629
@dipaksaha6629 3 күн бұрын
love your contents....just wanted to know how to build logic in react?
@Paradox_1
@Paradox_1 3 күн бұрын
by doing more practice on it
@RoadsideCoder
@RoadsideCoder 3 күн бұрын
Roadside to Dream Job - Frontend Interview Prep Course 🔥🔥 roadsidecoder.com/course-details (50% Discount for limited time)
@karthiksundararajan2925
@karthiksundararajan2925 3 күн бұрын
Great work piyush!! 🎉
@sobirjonismatov4790
@sobirjonismatov4790 3 күн бұрын
C:\Users\acer\Desktop\Messenger app\backend\server.js:8 connectDB(); ^ TypeError: connectDB is not a function at Object.<anonymous> (C:\Users\acer\Desktop\Messenger app\backend\server.js:8:1) at Module._compile (node:internal/modules/cjs/loader:1358:14) at Module._extensions..js (node:internal/modules/cjs/loader:1416:10) at Module.load (node:internal/modules/cjs/loader:1208:32) at Module._load (node:internal/modules/cjs/loader:1024:12) at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:174:12) at node:internal/main/run_main_module:28:49 Node.js v20.14.0 [nodemon] app crashed - waiting for file changes before starting... pls help idk what to do