Тёмный
The Debug Arena
The Debug Arena
The Debug Arena
Подписаться
Welcome to "The Debug Arena" 🎉! We empower you to become a coding master. Whether you're into web development 🌐 or Android app creation 📱, our step-by-step tutorials and expert insights will help you achieve your coding goals. When you hit a roadblock 🚧, we're here to solve errors together 🤝 so you can overcome any coding challenge with ease.

What We Teach:
React JS ⚛️: Build dynamic user interfaces.
MongoDB 🍃: Use flexible NoSQL databases.
MySQL 🐬: Manage relational databases efficiently.
Node JS 🟢: Develop robust backend solutions.
React Native 📲: Create high-performance mobile apps.
Android Development 🤖: Build seamless mobile applications.
Angular 🔺: Develop single-page web applications.
Firebase 🔥: Integrate real-time database and authentication.
Full Stack Development 🌐: Become a proficient full stack developer.

We are dedicated to helping you troubleshoot every problem mentioned in the comments 🛠️.

Hit that subscribe button 🔔 and boost your coding journey!

Thank you 🙏.

Комментарии
@sherimehar1762
@sherimehar1762 14 часов назад
informative video
@pratikchakraborty8058
@pratikchakraborty8058 День назад
Amazing content brother! 👏
@archanasahu7103
@archanasahu7103 День назад
🤩
@archanasahu7103
@archanasahu7103 День назад
thank you for amazing teaching style
@archanasahu7103
@archanasahu7103 День назад
Thank you sir for you efforts very nice explanation
@archanasahu7103
@archanasahu7103 2 дня назад
thank you sir from starting your efforts for scracth
@devanshkapoor3179
@devanshkapoor3179 3 дня назад
Thanks a lot bro! Really helpful video and great explanation as well!
@SoumyaMishra-q5k
@SoumyaMishra-q5k 3 дня назад
you will be using android studio or visual studio for coding?
@studywithbii
@studywithbii 4 дня назад
If it works for me, truly, I’m gonna pray for you to get all the things you want in this life❤
@oumaimabenjouida6724
@oumaimabenjouida6724 4 дня назад
Your are A PRO!!!! Thank you so much, please continue putting such vedios and explanations, Thank you a lot !!!!
@tahashaikh1733
@tahashaikh1733 4 дня назад
awesome, Appreciated bro thanks for uploading this valueable video.
@user-ey2eh6go4i
@user-ey2eh6go4i 6 дней назад
Sir, can you make video for spring boot?
@yashwindyashu2260
@yashwindyashu2260 6 дней назад
thank you for this video this is very help full
@arunkhadka8451
@arunkhadka8451 6 дней назад
Great
@shonne1995
@shonne1995 6 дней назад
Thank you so much my friend <3
@emiryldrmlar6436
@emiryldrmlar6436 7 дней назад
bro you are legend !!!
@CainosChitsenga
@CainosChitsenga 7 дней назад
thanks a million
@vedantdhamecha4933
@vedantdhamecha4933 7 дней назад
If google watches next day wont work😂😂
@motcongmotbangba4810
@motcongmotbangba4810 8 дней назад
10:30 he said: "and nyan" :3🙀🙀🙀
@sayantandatta2996
@sayantandatta2996 9 дней назад
register.js file having Register function as a component , but in App.js you imported SignUp component from register. Where these signup component is coming from >? Kindly reply. ❗❗❗❗⭕⭕⭕🔴🔴
@thedebugarena
@thedebugarena 8 дней назад
So basically you are correct I have exported register from register component but here I am receiving that in the name of SignUp as there is only one default export
@sayantandatta2996
@sayantandatta2996 7 дней назад
@@thedebugarena If I export any component default mode I can change the component name while importing in App.js?? Is it a feature in react ?
@chillx2563
@chillx2563 9 дней назад
Thx bro 👨‍💻
@charulatha6515
@charulatha6515 12 дней назад
I got this ERROR TypeError: Cannot read property 'openPicker' of null
@aryanpatel7209
@aryanpatel7209 13 дней назад
hey, i got one error firestore is unknown word. and in the console "Firebase: Error (auth/network-request-failed)." this error show. ple help..
@gopinathkrm58
@gopinathkrm58 14 дней назад
I have a doubt how to handle the validation in the backend for the title (because even if title is not present file upload is happening) I have the same case , but with image upload with title and description. If title or description is not present in the request then no need to upload, only when all 3 (title, description and proper image is present ) then only upload. But in my case the upload is happening (with valid image, but without title or description given). How to handle this scenario ? I need to prevent the upload process if a title or description is not present
@thedebugarena
@thedebugarena 14 дней назад
It is pretty simple. In backend api we are accepting image and title through req.body so after accepting req.body add condition that if(req.body.title==null) return res.json() Make sure to modify condition as per your requirement and don't forgot to add return before sending the response. Try this and if you are not able to do this then dm me on instagram.
@gopinathkrm58
@gopinathkrm58 14 дней назад
​@@thedebugarena Thanks for the quick reply, below is my code - I am testing from postman - type as form data app.post("/uploads", (req, res, next) => { upload.single("photo")(req, res, (err) => { const { title, description } = req.body; if (!title || !description) { return res .status(400) .json({ error: "Title and description are required" }); } if (err instanceof multer.MulterError) { return res.status(400).json({ error: err.message }); } if (!req.file) { console.log(req.file); return res.status(400).json({ error: "File not uploaded." }); } res.send(req.file); }); }); This code works fine but only issue in validation. First validate and if ok then only upload, but even though the title/description is not present file upload is happening.
@suyogdhawale1293
@suyogdhawale1293 14 дней назад
i cant see the device on screen after allt hings is been in correcr way what should i do?
@thedebugarena
@thedebugarena 14 дней назад
Keep emulator open and then try to run the application
@vidursharma8284
@vidursharma8284 14 дней назад
Hello brother I have tried numerous times to make a build through react native community cli but the build is failing.I have tried numerous possible solutions.Can you help me somehow?
@thedebugarena
@thedebugarena 14 дней назад
Yaa sure Please DM me on instagram
@tiyashasharma3894
@tiyashasharma3894 15 дней назад
hey....I tried this and it did work to some extent but when I login in the portal it just directs me to a blank screen not to the profile section........can u help me with this...!!!!
@thedebugarena
@thedebugarena 14 дней назад
You might need to debug it first make sure you are navigating to correct URL check typo error in name. Also, there can be chances that it is navigating to profile screen but data is not coming so for that try to render static content at start. If issue still persist DM me on Instagram.
@namantam1
@namantam1 16 дней назад
amazing it works, unit google notice this video 🤣
@sudharsans7105
@sudharsans7105 14 дней назад
is it really working?
@thedebugarena
@thedebugarena 14 дней назад
Hopefully google will not 😂
@darkemperor9006
@darkemperor9006 16 дней назад
Please use more modern tools like Vite and standards such as ES6(use import instead of require)
@thedebugarena
@thedebugarena 14 дней назад
Yup from now on whenever I will start with new playlist will be using latest tools and syntax. Thanks for your feedback
@marvelous812
@marvelous812 17 дней назад
sir your doing request api form multiple components. it is OK???
@thedebugarena
@thedebugarena 14 дней назад
Didn't get you. Please elaborate.
@deepikadeepu9534
@deepikadeepu9534 17 дней назад
If you deploy the project onto the internet, where will the actual images be stored? on their server's storage disk? can anyone answer this please
@user-ne6hw3er4n
@user-ne6hw3er4n 17 дней назад
Yeah bro
@thedebugarena
@thedebugarena 14 дней назад
Yes it will be stored on Server's storage disk.
@ashishkumarjha2898
@ashishkumarjha2898 19 дней назад
my emulator is not starting and because of this my react app is not installing
@thedebugarena
@thedebugarena 14 дней назад
Try recreating new emulator or use you mobile device to run the app
@anshumaan454
@anshumaan454 19 дней назад
hi brother, I am watching your video in continuation, can you pls also explain user and admin login using firebase. It will be great help
@thedebugarena
@thedebugarena 14 дней назад
I have created a video on How to login as admin but in that I have used Node JS and Mongo Db. If you want you can refer that video and apply that logic here it is pretty simple. ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-SZXZRRZML2g.html
@anshumaan454
@anshumaan454 9 дней назад
@@thedebugarena thanks brother
@emilianogonzalezperez2772
@emilianogonzalezperez2772 20 дней назад
hello, in my java aplication file is different than yours and its no working
@thedebugarena
@thedebugarena 14 дней назад
Is it your kotlin file if yes then try to convert that code in kotlin. If still not working DM me on Instagram.
@geanselle4863
@geanselle4863 21 день назад
You are a god to me now. Thank you so much.
@sesachinsiddhartha
@sesachinsiddhartha 21 день назад
bro react native mein video kaise display Karate Hain Maine react-native-video ka use kiya tha to RCTVideo was not found in UI manager issue aa raha hai
@thedebugarena
@thedebugarena 14 дней назад
I have not tried this. I will use this and try to see If can help you with the error you are getting.
@VenkateshRajamouli
@VenkateshRajamouli 22 дня назад
very well sir. only req is to upload code to github and people can directly clone, experiment, and learn from it
@LuisCarlos-kp3mv
@LuisCarlos-kp3mv 23 дня назад
Amazing!
@shubhamtiwari9611
@shubhamtiwari9611 24 дня назад
Thank you so much for the video
@acloudonthebluestsky9687
@acloudonthebluestsky9687 25 дней назад
how to display file PDF with base64 or binary files boss ?
@poonamrathod7466
@poonamrathod7466 26 дней назад
Sir how to do email verification while sign up
@ShanuKhan-jx4xy
@ShanuKhan-jx4xy 27 дней назад
How to Validate form-data before using Multer ?
@user-gm6lc4pk6w
@user-gm6lc4pk6w 29 дней назад
Nice video! Where I can find your background for the profile user? its look pretty
@thedebugarena
@thedebugarena 28 дней назад
Thanks!! These backgrounds are called as BLOB. I have used MagicPattern to generate this.
@xeniyadobro380
@xeniyadobro380 29 дней назад
Thank you!
@thedebugarena
@thedebugarena 28 дней назад
You're welcome!
@c00per_
@c00per_ Месяц назад
bro can u give an idea how to implement Protected routes for this video's continuation.
@thedebugarena
@thedebugarena Месяц назад
You can watch this video ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-zKlpiQvPKHI.html
@playerunknownbattlegraound
@playerunknownbattlegraound Месяц назад
This video is really helpful for me because I am new to learn React Native and I was struggle to use nesting navigation. Thanks a lot for this Video ❤
@thedebugarena
@thedebugarena 28 дней назад
Great to hear!
@sreyapashikanti8666
@sreyapashikanti8666 Месяц назад
Image.data is not present
@thedebugarena
@thedebugarena Месяц назад
You might not getting the data from backend try to see response on postman. If issue still there DM me your error on Instagram.
@sreyapashikanti8666
@sreyapashikanti8666 Месяц назад
Image string is too large..do we have another method?
@thedebugarena
@thedebugarena Месяц назад
@@sreyapashikanti8666 You can increase the payload size in API
@mmr007
@mmr007 Месяц назад
This video helped me a lot. Thanks
@thedebugarena
@thedebugarena 28 дней назад
Glad it helped
@dogdev
@dogdev Месяц назад
Great Video!!! Thank you!!!
@thedebugarena
@thedebugarena 28 дней назад
Glad you liked it!
@kedarsatwik6938
@kedarsatwik6938 Месяц назад
what if we directly open "/profile" with out login ?
@thedebugarena
@thedebugarena Месяц назад
Then we will get error and data will not be present in our screen. To tackle this we will have to use private router concept of react js. I will be making video on this very soon.