How to Debug Code Like a Pro
11:11
Пікірлер
@tonytony-tx8sx
@tonytony-tx8sx 13 сағат бұрын
Failed to load resource: net::ERR_CONNECTION_REFUSEDUnderstand this errorAI Books.jsx:14 happened in 24:47. import express from "express"; import mysql from "mysql"; import cors from "cors"; const app = express() const db = mysql.createPool({ host:"localhost", user:"root", password:"897600", database:"test" }) app.use(express.json()) app.use(cors()) app.get("/", (req, res)=>{ res.json("hello this is the backend") }) app.get("/books", (req, res) =>{ const q = "SELECT * FROM books;" db.query(q, (err, data)=>{ if(err) return res.json(err) return res.json(data) }) }) app.post("/books", (req, res)=>{ const q = "INSERT INTO books (`title`, `desc`, `cover`) VALUES (?, ?, ?);" const values = [req.body.title, req.body.desc, req.body.cover] db.query(q, values, (err, data)=>{ if(err) return res.json(err) return res.json(data) }) }) app.listen(8800, () =>{ console.log("Connected to backend!") }) Can anyone help me?
@thediamondleaf5111
@thediamondleaf5111 17 сағат бұрын
So do I have to pay for the server hosting service to be able to continue this project ?
@TeenPatticlub589
@TeenPatticlub589 17 сағат бұрын
H
@HeroicHues
@HeroicHues Күн бұрын
Have anyone noted all the packages details that are installed to run or to deploy it properly if anyone had please do reply and their commands it will be very helpful
@Prod.Youngrosse
@Prod.Youngrosse Күн бұрын
at 4:10:00 If you have a problem with infinite scroll rendering, useMemo
@DevAos35
@DevAos35 Күн бұрын
Nos próximos vídeos ativa a dublagem automática do KZbin, você tem muita audiência aqui do Brasil
@The-sound-of-silence
@The-sound-of-silence Күн бұрын
Hello friend, I started doing this project, I've a regular Hostinger plan (which doesn't include SSH) I paid it just a month ago. My question is: Can I continue this project without using SSH? PS: I'm using Windows 11.
@sahranmohammed2700
@sahranmohammed2700 Күн бұрын
Next time when you upload project to github please add .env.example file. its very usefull to self host the application.
@udy1897
@udy1897 Күн бұрын
Completed 💌
@hanynasyr
@hanynasyr 2 күн бұрын
This is exactly what I was looking for. Quick question. Does Wix e-commerce have the ability to add separate images to product variants?
@Klaus-f2k
@Klaus-f2k 2 күн бұрын
i have query sir can you help?
@sivakumar-qf9gd
@sivakumar-qf9gd 2 күн бұрын
Why you don't add image
@stickmotivation-c3
@stickmotivation-c3 2 күн бұрын
Source code?
@dieselboii8537
@dieselboii8537 3 күн бұрын
anyone else having an annoying time with the App.jsx file "Failed to resolve import "./components/contact/Contact" from "src/App.jsx". Does the file exist?" its
@sakshipriya135
@sakshipriya135 3 күн бұрын
i'm getting 500 Internal Server Error in postman when im trying to post a request in login @45:54 and i cant resolve it, can somebody help me
@SAACHIPANDEY
@SAACHIPANDEY 3 күн бұрын
26:57
@javalok9575
@javalok9575 3 күн бұрын
can anyone help me to get part two of it ? @Lama Dev , can you please send me part 2 of this tutorial? thanks
@artlover-q1e
@artlover-q1e 3 күн бұрын
Hello sir, it will be helpful if you make a video on connectivity of Json API, SimpleOAuth & OpenIDConnect, Axios and Next/ React JS or Next Js and Drupal CMS Connectivity
@emmanuelmacharia-i6u
@emmanuelmacharia-i6u 3 күн бұрын
it is good thx
@ztibi1558
@ztibi1558 3 күн бұрын
Very good project, but why use typescript if the code is full of any type?
@Sivakumar-c3h1b
@Sivakumar-c3h1b 3 күн бұрын
how to include image
@3CHONPRODUCTIONS
@3CHONPRODUCTIONS 4 күн бұрын
Theres def some code missing between videos - all those forms you show at the end of the last video are not found anywhere in your git
@Roychen97
@Roychen97 4 күн бұрын
how to deploy it to live site ?
@voicubogdan4339
@voicubogdan4339 4 күн бұрын
unfinished project
@버블라라_7788
@버블라라_7788 4 күн бұрын
44:57 I am a beginner and actually had a problem understanding this part. Which contents should I copy and how I can just paste it into the data.js file, the contents of those slide labels are automatically organized as json format? All I do now is just creating the data.js file and type it myself. Thank you!
@abhilashviswanathan178
@abhilashviswanathan178 4 күн бұрын
Did anyone finish this project ?
@sivakumarravi-z1x
@sivakumarravi-z1x 4 күн бұрын
my sql create not showing your screen
@CarlosTello-m8h
@CarlosTello-m8h 5 күн бұрын
great project
@juniorMr
@juniorMr 5 күн бұрын
❤❤❤❤❤❤
@funny-g4d
@funny-g4d 5 күн бұрын
Im failed connect to mongodb,
@marumaru296
@marumaru296 6 күн бұрын
Someone can explain how to add shipping fees?😅thanks
@micheltsarasoa
@micheltsarasoa 6 күн бұрын
Thanks!
@abhispeaks660
@abhispeaks660 6 күн бұрын
Attendance section is showing error 404?? Please reply @lamadev to solve it...
@davegreen7853
@davegreen7853 6 күн бұрын
Mate your tutorial > React Chat App Full Tutorial 2024 | Realtime Chat Application Project with Firebase < I am wanting to add a block this user functionality to it. Can you please show me how I do this ?
@Setche2023
@Setche2023 6 күн бұрын
The greatest video I've never seen.❤❤❤❤❤❤. I'm fear. How many years I need to learn that?😲😲😲😲You're so experimented Bro
@Amvflix7
@Amvflix7 6 күн бұрын
amazing explanation, thanks a lot
@iagolacerda22
@iagolacerda22 6 күн бұрын
incredible
@duynguyentranbao2726
@duynguyentranbao2726 7 күн бұрын
defer is removed in v7. What can i instead of that ?
@OnurrrYilmazz
@OnurrrYilmazz 7 күн бұрын
where I stay 39:40 Next.js Animated Chart Tutorial 01:10:36 Events Component Design 2:11:53 School Management App Other List Pages
@KhizarAli-z6v
@KhizarAli-z6v 7 күн бұрын
Just like that is permenant bro hehehe 😍😅😅 thankyou so much learn alot
@MohammadSameer-t8t
@MohammadSameer-t8t 7 күн бұрын
This is a good tutorial for the next.js project so please do a project in next.js using redux toolkit also
@nana-p7q7u
@nana-p7q7u 7 күн бұрын
39.09
@nesabadiano448
@nesabadiano448 8 күн бұрын
Anyone encountered this? "Error: Route "/dashboard/users" used `searchParams.q`. `searchParams` should be awaited before using its properties." I'm using NextJS 15
@shamimahammad4713
@shamimahammad4713 8 күн бұрын
You Dangerous🥰 Excellent programmer Can you code me some Dashboard 35+ pages with Next.js tailwind-css Figma design ready ok, plz give me your whatapp number or email address
@NitaYasimana
@NitaYasimana 8 күн бұрын
can i use this code sir?
@dadadev-w9w
@dadadev-w9w 8 күн бұрын
Hey there. Will there be a 3 part with the messages notification, attendance, etc?
@dxrkd3v
@dxrkd3v 9 күн бұрын
Hey guys. How can I make in list page like this structure: December 2024 • list of post's titles of December October 2024 • list of post's titles of October Thanks 🙏
@Balaji-u5z
@Balaji-u5z 9 күн бұрын
Can anyone please tell how to to logout a user and redirect to login/register page if it is mentioned in a video kindly mention with timestamp 🙏🏻🙏🏻