Want to land your dream programming job in 3 - 6 months? ⭐ JSM Masterclass Experience - jsmastery.pro/masterclass Become a Software Engineer. Guaranteed.
I cannot believe such a comprehensive guide can exist for free in TH-cam. People on Udemy will charge you 60$ for a similar course and here you are doing it for free ?! World owes you so much, man.
I've been searching for a tutorial like this on TH-cam for a few months, and I didn't find anything like it until now. Your tutorials are always unique and never done before. I promise to register for your paid courses once I can afford to, your content is gold.
@@javascriptmastery i m not able to generate images from API, it shows error like (expected token 'B', "Billing ha"... is not valid JSON) can you resolve this issue..
THANK YOU so much javascript mastery. Be rest assured we are so grateful for your work and be sure it helps more people than you can imagine. Thank you
I love how you stop and went over what we have completed, at the 1hour 15 minute mark. It helps solidify what we've done and what we're about to do. Great stuff as always.
Anyone facing error with the api ("Billing ha..."), you need to make a new account at open ai and use the api key from the new account. You are facing this error because the api is paid. With the new account you will get 5$ worth of free credits, each api call costs 0.02$ so be careful making too much requests. Keep learning, hope this helps!
You always want to make me cry with the quality of tutorials you put out for free. Your channel has completely changed and shaped my programming journey. Thank you.
**This is realy a great mern project . I have coded every line by seeing your videos and understand your logics. There are so many bugs come, also fixed that and finally deployed the backend in "Railway" And frontend in "netlify". It takes 3 days . Thanks adrian, you are genius**
@@jessy_clip Hey dude i am getting error as it is not fetching the image from api it is giving some this error TypeError: JSON.stringfy is not a function I have completed watching and following the video until the timestamp 1:25:54 Can you help ??
Hello everyone, if you are stuck at 1:26:20 and you are getting Failed to fetch error, make sure to rectify below code in your backend: const aiResponse = await openai.images.generate( {prompt, n: 1, size: '1024x1024', response_format: 'b64_json' })
Hey, thanks for the helpful comment! However, it didn’t work for me. I followed everything exactly as shown in the video. Was there anything else you did to successfully generate the image and avoid the "Failed to fetch" error?
Great content, and please don't wait for 20k to make more videos about AI like this, I guarantee you that this content will make your channel more famous 😉
If someone is currently following this tutorial, please note that as of today's date, the code might not work at 1:25:00 due to the API now being paid.
The Solution for this is to create another account with a different phone number you will get 5$ free credits valid for 3 or 4 months... Each prompt request is approx 0.02 dollars so send them carefully
I agree with everyone else. The entire Build (Tutorial /Presentation) was absolutely amazing!! The details, tips, techniques and planning were definitely shown and very much appreciated!
Your content never fails to impress. Your vocal delivery is top-notch, the web design is sleek and visually appealing, and the information presented is always current. Your innovative approach to each project keeps the material engaging, making it the best TH-cam channel I have subscribed to. I am using the Frontend Meta Course as a supplement to your tutorials to strengthen my grasp on the subject matter, and it has been invaluable in solidifying my understanding. Keep up the fantastic work!
Literally completed the video and coded everything along and I've learnt so much! How is this channel free, whoah. Also, I saw that you can deploy the client side to render as well and just point it to a subdomain and it works like a charm!
@@LalaYamazaki Are you using the API key in the video ? You need to create your own since you can't use someone else's. They probably deleted it right after making this video to avoid being charged.
Best video man. I finally completed creating this web-app. Now I'm all set to begin my own AI image generator. My friends are also very impressed by this video. We could not find any video on this image topic internet which actually describes everything from scratch. My react skills also got honed with this tutorial. Tremendous man. I'm so grateful to you. 🙏🙏🙏
@@Flower-ho2kp good i got erroe in render while deploying it says "The engine "node" is incompatible with this module. Expected version ">=14.20.1". Got "14.17.0"
Yessss!!! Sensei, thank you for sharing your wisdom. I shall study, learn and build my empire with use of your amazing knowledge and instruction. Bless you JavaScript Mastery you have helped me to change my world 🙏
Attention to those who are getting fetch error at 1:25:00 i.e. image is not loaded and our prompt shows up in the screen. Most probably your API Key usage has expired or you are out of credits. Solution: Create another account with new phone no. to again get $5 credits for free.
at about 1:40:00 I have an error (500 Internal server error) but it still navigates back to main page and shows error only in console, not alert. Error is at the point where it is supposed to fetch data from /api/v1/post. It only shows error 500, returns to home page and starts loading cards but that is never finished, never shows an error. All the images are successfully uploaded to Cloudinary but it still shows an error and it's not loading them in the main page.
I've completed this course and although I found some hiccups on the way, it was all something that could be resolved within a few moments (the issues were mostly OpenAI related as their API became monetized very recently) Thank you so much Adrian for this free course and I'll definitely add this to my portfolio for future employers!
@@akshitajha1209 I can try to help you if you're still having issues~! keep in mind that the api has now been monetized and unless you add a payment method to your OpenAI account, it will give you an error about Billing
@@akshitajha1209 oh got it. well, for me it works pretty well considering the fact that I do pay for hosting (render is pretty pretty slow if you're on the basic plan)
Seriously this video is outstanding!! The only thing I am stucked on is 1:25:30. It is saying me "Failed to fetch". Can you please tell me where am I wrong?
So, at 1:26:34 you might be getting an internal server error. This is because the API is not free anymore. You can create an account with a new email and phone number to get 5$ free or pay as much as you want with your current account ($5 min). Also the current version of Open AI differs from the version used in the video. For the new version the configuration is : ```import OpenAI from 'openai'; const openai = new OpenAI({ apiKey: process.env.OPENAI_API_KEY }); ``` And the image generation : ``` const aiResponse = await openai.images.generate({prompt:prompt,n:1, size:'1024x1024', response_format:'b64_json'}) const image = aiResponse.data[0].b64_json ``` In CreatePost you have to write exactly what Adrian wrote : `data:image/jpeg;base64,${data.photo}` because it's not going to work otherwise Cheers
I think for every api request, you should show the network tab and show that as well. That way the user can see exactly the response, payload etc. Will def help a lot with debugging
Great content, thanks for all yours hard work!! Would be great if this could become a web3 project where users can deploy the art as a NFT and have it linked to their wallet and of they connect wallet they can see their own good profile of creations
@@javascriptmastery i m not able to generate images from API, it shows error like (expected token 'B', "Billing ha"... is not valid JSON) can you resolve this issue..
Thanks for this great tutorial 🙏 Can someone help me? After deploying the app on Netlify, I'm always getting "Failed to fetch" error, does anyone know how to fix it? 🥺
I don't have words for such an amazing video. Keep giving this kind of content it helps a lot. This Single video helped me to recap lots of different things. ❤️❤️❤️❤️👍👍
Great content! One potential bug is that, in the `handleSearchChange` function, we use `item.name.toLowerCase().includes(searchText.toLowerCase())`; however, the `setSearchText` is also called within this function and the update of the state `searchText` occurs in the next render cycle and the filtered results is based on the old one.
I just watched your new video and I'm impressed with the level of creativity and production value. Keep up the great work, I can't wait to see what's next.. I hope you're doing well. I'm looking forward to your new videos for our social media project. Keep up the great work! Can't wait to see what you have in store for us next. Thank you.
I cannot believe such a comprehensive guide can exist for free in TH-cam. People on Udemy will charge you 60$ for a similar course and here you are doing it for free ?! World owes you so much, man.
Want to land your dream programming job in 3 - 6 months?
⭐ JSM Masterclass Experience - jsmastery.pro/masterclass
Become a Software Engineer. Guaranteed.
Hello sir, does your api works now. i think i is not free now we sould buy now. if there is any suppliment please provide us.
@@timecapsule9338 Gym Supplement?
@@timecapsule9338 creating your own AI might work, hahaha jk
Cost of the course?
For this there is a soln mern section in discord github rep is also there
I cannot believe such a comprehensive guide can exist for free in TH-cam. People on Udemy will charge you 60$ for a similar course and here you are doing it for free ?! World owes you so much, man.
Thank you!!
True this channel sure is the best for react been checking out your tutorials
@@mosesbabu6768 thank you! Feel free to leave a review on trustpilot! 😊
@@javascriptmastery sure
Sincerely speaking, you have the best causes ever
I've been searching for a tutorial like this on TH-cam for a few months, and I didn't find anything like it until now. Your tutorials are always unique and never done before. I promise to register for your paid courses once I can afford to, your content is gold.
Teleqram me 👆⬆️
We love you Javascript Mastery. 😍 You're a blessing to the Javascript Dev Community 🙌🙌🙌
Thank you!!!
@javascript Mastery is a cheater...he sent $69 but he didn't help me with the work he didn't send the money back also
@@Deekshisaisrini What are you talking about? I didn't accept any money from you? It's possible you got scammed.
@@javascriptmastery I have proofs can I share here
@@Deekshisaisrini please reach out to me via email at contact@jsmastery.pro
Wow few days back just finished learning MERN and now you uploaded this video feeling excited 😄😄
Perfect time!
@@javascriptmastery Yes absolutely!! 🤠🤠
Hi, is there any free course or youtube video to learn MERN?
@@javascriptmastery i m not able to generate images from API, it shows error like (expected token 'B', "Billing ha"... is not valid JSON) can you resolve this issue..
THANK YOU so much javascript mastery. Be rest assured we are so grateful for your work and be sure it helps more people than you can imagine. Thank you
You are very welcome
At this point, the world definitely owes you so much. Thank you for the crazy amount of time you spend in creating your tutorials.
I love how you stop and went over what we have completed, at the 1hour 15 minute mark. It helps solidify what we've done and what we're about to do. Great stuff as always.
Glad you enjoyed it!
We love you Javascript Mastery. I learned so much from you guys and I finally learned how to use AI Api's.
Great to hear!
Your work should be rewarded with a Nobel Prize ... Nothing short of that is enough ... In fact, you should also receive an Oscar for your designs ...
Teleqram me 👆⬆️...
Dude i finished my project but i get error on deployment, can you pls help with it 🙏
Anyone facing error with the api ("Billing ha..."), you need to make a new account at open ai and use the api key from the new account. You are facing this error because the api is paid. With the new account you will get 5$ worth of free credits, each api call costs 0.02$ so be careful making too much requests. Keep learning, hope this helps!
Thanku so much man!
Facing problem with the error, thanks for telling, now i can move on
sorted out after facing the problem from yesterday , that means only 250 requests are allowed per API Key
Thanks Buddy. You Saved me.
@@piyushcodes5530 i try with new account also ,but still this error occur. Is there any limit in api for limited request per minute or hour ?
@@venilsavaliya3004 yes 3 img/5 min
Thanks!
You always want to make me cry with the quality of tutorials you put out for free. Your channel has completely changed and shaped my programming journey. Thank you.
Thank you so much!
**This is realy a great mern project . I have coded every line by seeing your videos and understand your logics. There are so many bugs come, also fixed that and finally deployed the backend in "Railway" And frontend in "netlify". It takes 3 days . Thanks adrian, you are genius**
Can you please share link of your github repo? Im also creating this project but can solve some problems
May you kindly share of your bugs and fixing for the benefit of others, or share your github?
That will be very appreciated
Dude i finished my project but i get error on deployment, can you pls help with it 🙏
@@jessy_clip Hey dude i am getting error as it is not fetching the image from api it is giving some this error TypeError: JSON.stringfy is not a function
I have completed watching and following the video until the timestamp 1:25:54
Can you help ??
i m not able to generate images from API, it shows error like (expected token 'B', "Billing ha"... is not valid JSON) can you resolve this issue..
Bro you are killing it.
There is no other channel on whole internet, who can provide more value in terms of web development then you.
Thank you so much!
Thanks to this dude, I found the systematic and easy way to learn MERN by building projects. I wish you and your channel to grow more😊
Awesome, thank you!
Having notification from JavaScript Mastery ---> it's coding TIME 😍😍
Hello everyone, if you are stuck at 1:26:20 and you are getting Failed to fetch error, make sure to rectify below code in your backend:
const aiResponse = await openai.images.generate(
{prompt,
n: 1,
size: '1024x1024',
response_format: 'b64_json'
})
const image = aiResponse.data[0].b64_json
return res.status(200).json({photo: image})
it's same error
he return this message (Billing hard limit has been reached)
Thank You 👍🏻👍🏻
not worked sane error
@@omarkhelifi did you resolve this error
Hey, thanks for the helpful comment! However, it didn’t work for me. I followed everything exactly as shown in the video. Was there anything else you did to successfully generate the image and avoid the "Failed to fetch" error?
Thank you so much for another awesome video on Full Stack MERN. The deploy section really helps to make things go live.
Teleqram me 👆⬆️.
Great content, and please don't wait for 20k to make more videos about AI like this, I guarantee you that this content will make your channel more famous 😉
This guy knows exactly what is UP! Thank you so much for keeping us with the most updated knowledge.
I appreciate that!
Was waiting for this masterpiece , BRAVO 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥
It's here!!! :)
Thank you so much Adrian for your amazing work. I've been wanting to build mine and couldn't get it done !
You can do it!
Adrian! I just want to say thank you. God bless you. You’re a very good man and we’re all grateful for your life!
My pleasure!
If someone is currently following this tutorial, please note that as of today's date, the code might not work at 1:25:00 due to the API now being paid.
thank you
then what is the alternative to work?
ohhh noooooo! what should I do nooww?🤦♂🤦♂
same man !!!! stuck at Billing hard limit has been reached
The Solution for this is to create another account with a different phone number you will get 5$ free credits valid for 3 or 4 months... Each prompt request is approx 0.02 dollars so send them carefully
I'm Brazilian and here we don't have content like yours.... simply amazing....
Just finished the tutorial. Thank you so much I learned a lot
Have you completed entire project? Is it working very well?
@@Zephyr314 Thank you so much
I visited your deployed site.
It's showing this error. "SyntaxError: Unexpected token 'B', "Billing ha"... is not valid JSON".
@dhananjay7937 I don't think you can use commas in the prompt. Try to remove all punctuation
Is everything used in this tutorial is free or do I have to pay for something
You are amazing, I looking for MERN projects this week. Thank you JSM.
Glad you like them!
I agree with everyone else. The entire Build (Tutorial /Presentation) was absolutely amazing!! The details, tips, techniques and planning were definitely shown and very much appreciated!
For help Teleqram me 👆
Lol JAVASCRIPT MASTERY has this ability to deliver content based on current trends. You are Great!
Thanks! 😃
Phenomenal video JSM! Clean minimal design, Node/Express/Mongo/API practice & relevant AI work. This one truly is a complete package, thank you team 👍
Much appreciated Derek!
Seems like he's the only one who could get me to understand react. What a great tutor
Your content never fails to impress. Your vocal delivery is top-notch, the web design is sleek and visually appealing, and the information presented is always current. Your innovative approach to each project keeps the material engaging, making it the best TH-cam channel I have subscribed to. I am using the Frontend Meta Course as a supplement to your tutorials to strengthen my grasp on the subject matter, and it has been invaluable in solidifying my understanding. Keep up the fantastic work!
Teleqram me 👆⬆️
Unbelievable service we are getting from you for free! Every time it amazed me how can you do it! Congratulations for 500K subs.
Thank you so much 😀
I was following your react ui ux course and now I'll do this too please create more mern projects 😋
Will do!
Amazing Ive been waiting for a MERN stack course ,Thank You!
Enjoy!
The best tutor I've ever seen in my life and probably will not witness another!
you are the God of development for sure! GOAT.
Literally completed the video and coded everything along and I've learnt so much! How is this channel free, whoah.
Also, I saw that you can deploy the client side to render as well and just point it to a subdomain and it works like a charm!
Thank you!!
have you had any issues with your apikey?
@@63montywilliams50 Hi, no, not really. What is the issue you're facing ?
@@mrdiin.dev_ Also stuck with apikey. It just wont upload the photo. Any ideas why?
@@LalaYamazaki Are you using the API key in the video ? You need to create your own since you can't use someone else's. They probably deleted it right after making this video to avoid being charged.
Best video man. I finally completed creating this web-app. Now I'm all set to begin my own AI image generator. My friends are also very impressed by this video. We could not find any video on this image topic internet which actually describes everything from scratch. My react skills also got honed with this tutorial. Tremendous man. I'm so grateful to you. 🙏🙏🙏
Can you please share link of your github repo? Im creating this project too but cant solve some problems
@@Flower-ho2kp man! I don't use GitHub! Neither I store my files there! I store everything in pendrive! So I have got nothing to share!
@@Flower-ho2kp Dude i finished my project but i get error on deployment, can you pls help with it 🙏
@@jessy_clip i used firebase hosting for client side deployment and render for backend
@@Flower-ho2kp good i got erroe in render while deploying it says "The engine "node" is incompatible with this module. Expected version ">=14.20.1". Got "14.17.0"
Yessss!!! Sensei, thank you for sharing your wisdom. I shall study, learn and build my empire with use of your amazing knowledge and instruction. Bless you JavaScript Mastery you have helped me to change my world 🙏
You got this!
Adrain You are the GOAT when it comes to JavaScript. Thanks alot.
I appreciate that!
Attention to those who are getting fetch error at 1:25:00 i.e. image is not loaded and our prompt shows up in the screen.
Most probably your API Key usage has expired or you are out of credits.
Solution: Create another account with new phone no. to again get $5 credits for free.
Bro my css version used in this version is v3.24 but right now in website it's showing v 3.34 what to do I'm not getting
Brother can we find and use another api key?
Can we find and use another api?
bro but i am having a cors error in my console log and also an alert of failed to fetch
We want more mern projects, addicted to your channel!!
For help Teleqram me 👆
I'm baffled by the fact that this is for free. I wish that I had this when I was still a 15/16 year old student starting off my coding adventures
Thankfully the younger generations now have it! :)
same bro lol
И вновь сочная связка 🤤 Всегда удивлялся, где Вы так быстро находите хорошие связи. Продолжайте в том же духе!
This tutorial was absolutely amazing!! The details, tips, techniques, and planning were definitely shown and explained!
Is everything used in this tutorial is free or do I have to pay for something
I have to include JSM whenever i'm doing my gratitude session!
Grateful for your existence👏
You rock!
at about 1:40:00 I have an error (500 Internal server error) but it still navigates back to main page and shows error only in console, not alert. Error is at the point where it is supposed to fetch data from /api/v1/post. It only shows error 500, returns to home page and starts loading cards but that is never finished, never shows an error. All the images are successfully uploaded to Cloudinary but it still shows an error and it's not loading them in the main page.
I am getting the same error have you find a solution yet?
@@bhuwanchhimal9784 No, still having the same error after looking through the whole video again while checking the spelling and everything.
Are you still on it?
Can you paste your postRoutes.js file content here. Maybe I can help.
I ran into some errors but finally website was working.
@@asadqureshi126 ok wait
@@asadqureshi126
import express from 'express';
import * as dotenv from 'dotenv';
import { v2 as cloudinary } from 'cloudinary';
import Post from '../mongodb/models/post.js';
dotenv.config();
const router = express.Router();
cloudinary.config({
cloud_name: 'process.env.CLOUDINARY_NAME',
api_key: 'process.env.API_KEY',
api_secret: 'process.env.API_SECRET',
});
//get all posts
router.route('/').get(async(req, res) => {
try {
const posts = await Post.find({});
res.status(200).json({ success: true, data: posts });
} catch (err) {
res.status(500).json({ success: false, message: 'Fetching posts failed, please try again' });
}
});
//create a post
router.route('/').post(async(req, res) => {
try {
const { name, prompt, photo } = req.body;
const photoUrl = await cloudinary.uploader.upload(photo);
const newPost = await Post.create({
name,
prompt,
photo: photoUrl.url,
});
res.status(200).json({ success: true, data: newPost });
} catch (err) {
res.status(500).json({ success: false, message: 'Unable to create a post, please try again' });
}
});
export default router;
YES THIS IS the tech stack i've been waiting for
hamood
Awesome!
If you have an issue with JSON while generating new image, just regenerate new API key on openai
can you tell why i am getting this error SyntaxError: Unexpected token 'I', "Incorrect "... is not valid JSON
The man, the legend strikes again!!
Thank you!
I've completed this course and although I found some hiccups on the way, it was all something that could be resolved within a few moments (the issues were mostly OpenAI related as their API became monetized very recently)
Thank you so much Adrian for this free course and I'll definitely add this to my portfolio for future employers!
I am also facing a lot of issues, it can't generate images, sone fetching issues, why is it happening 🥲
@@akshitajha1209 I can try to help you if you're still having issues~! keep in mind that the api has now been monetized and unless you add a payment method to your OpenAI account, it will give you an error about Billing
@@mdk-west idk about monetization issues but I had changed about 10 api keys and then it worked, still too slow
But now it's working 😮💨
@@akshitajha1209 oh got it.
well, for me it works pretty well considering the fact that I do pay for hosting (render is pretty pretty slow if you're on the basic plan)
@@mdk-west at 1:26:40 it shows alert "SyntaxError: Unexpected token 'I', "Incorrect "... is not valid JSON" can you please help?
Seriously this video is outstanding!!
The only thing I am stucked on is 1:25:30.
It is saying me "Failed to fetch". Can you please tell me where am I wrong?
same here . Have you resolved it? Please reply
@@36-mariajoseph35 Same here, Have you resolved it ?? Let me know...
Same here have you resolved it ??
yes, I am also stuck here from hours error : ( TypeError : Failed to fetch ), if you have resolved this error please tell me
That's why he's the GOAT. Thanks again! Weekend is sorted for me ❤❤
Amazing, thank you!! :)
So, at 1:26:34 you might be getting an internal server error.
This is because the API is not free anymore.
You can create an account with a new email and phone number to get 5$ free or pay as much as you want with your current account ($5 min).
Also the current version of Open AI differs from the version used in the video.
For the new version the configuration is :
```import OpenAI from 'openai';
const openai = new OpenAI({
apiKey: process.env.OPENAI_API_KEY
});
```
And the image generation :
```
const aiResponse = await openai.images.generate({prompt:prompt,n:1, size:'1024x1024', response_format:'b64_json'})
const image = aiResponse.data[0].b64_json
```
In CreatePost you have to write exactly what Adrian wrote : `data:image/jpeg;base64,${data.photo}` because it's not going to work otherwise
Cheers
Thanks a lot!!!!...Finally I've got my first image here!!!!....MANY THANKS!!!!...
res.status(500).send(error?.response.data.error.message || 'Something went wrong');
giving an error in this line for 'data
'
@@himanshujain8425 were you able to solve this issue, if so how
Thank you my new found mentor. Your tutorials are timely and very helpful. I also like the fact that you use Visual Studio code.
You're very welcome!
Don't do this project although it is very well explained but OPEN AI no longer supports free API access :(
But akshit , it gives free credits points to get image each month, still should i make this project?
@@adityaagarwal2324hey I tried it's still not working
Yea lol just wasted my time again......
Rapid Api gives free access. Through rapid api, we can do this project.
Adrian has used rapid api in one of his new project video
Its still free yk, my project works just fibe
You guys better make this video reach 20k likes, we need more of this knowledge.
Yess! :)
I think for every api request, you should show the network tab and show that as well. That way the user can see exactly the response, payload etc. Will def help a lot with debugging
For help Teleqram me 👆
bro i don't know what the hell are you your consistency is like crazy always putting amazing content keep it up bro
Glad you enjoy it!
Amazing project, made my day, learned a lot and got hostinger! God bless you bro.
Enjoy!
I'm getting an error. Unexpected token 'B', "Billing ha"...is not valid json. Can anyone help me??? Please 😢
double check the before step spelling mistakes bro
@@saiteja335 billing gard limit has been reached it's the response that I'm getting, when i send a request to openai api
Stuck in the same place 🥺
did you find the solution for this error? I am stuck here too
@@laharikrishnam9684 No, I didn't 😔
Thank you so much sir creating this video. And please create more videos in AI + MERN 😍🙏🏻
is this project working as of today??
@@lalit-singh-bisht Currently I am not watch full video
@@bidyasagarmohapatra4014 got it
Great content, thanks for all yours hard work!!
Would be great if this could become a web3 project where users can deploy the art as a NFT and have it linked to their wallet and of they connect wallet they can see their own good profile of creations
Great suggestion!
My exact thought
@@javascriptmastery thanks for the reply
i m not able to generate images from API, it shows error like (expected token 'B', "Billing ha"... is not valid JSON) can you resolve this issue..
@@javascriptmastery i m not able to generate images from API, it shows error like (expected token 'B', "Billing ha"... is not valid JSON) can you resolve this issue..
😍👏Wow amazing JM, do more Mern-related videos like this
Thank you! Will do!
Failed to fetch error when I click generate
Same error brother
@@mrmohitk4117 anyone found solution to it?
Thanks for this great tutorial 🙏
Can someone help me?
After deploying the app on Netlify, I'm always getting "Failed to fetch" error, does anyone know how to fix it? 🥺
Did you upload the whole folder directly in netflix? If yes then I can help.
@@_elusivex_ I uploaded the whole 'dist' folder to Netlify, do you know how to fix the issue?
I hame the same issue... Did you solve this problem?
Awesome!!! Thanks for show us what no ones would to show for free! You're the real JS Master.
Thank you!
Is it just me that have problems with this code in special? My API request don't work by any chance, even if I have a payed API key.
Lol same I also have a problem my local host isn't running after API routing 😂😂
This was very helpful for my own job at which I am working right now , your content is amazing!
Is it working??
For free?
Api not free I build the Ui I just waste my time
same bro
What.?
Another amazing project!!!... as always. Thanks Adrian for all you give us!!!...
I don't have words for such an amazing video. Keep giving this kind of content it helps a lot.
This Single video helped me to recap lots of different things.
❤️❤️❤️❤️👍👍
Thank you!
holy smokes! Finally i have found what im looking for! I can't thank you enough brother! THANK YOU!!!
This guy is the best teacher I have ever ran into. I am learning so much with him!!
Love your classroom.. to the moon to Jupiter to ends of galaxies.. you are a true blessing to the Developer community
Thank you so much for this course !
You're very welcome!
Great video, got it up and running after a little bit of debugging around the api keys. Thanks!
Bro have you completed this project?
@@piyushnarwal9311 yep.
The best channel in TH-cam
OMG i feel luck to discover this channel, this guy have crazy tutorials
Thank you!
You're SPER, SUPER and Really cool man. I builded my knowledges by visiting your channel. Thank you very much for your super video-courses.
You rock!
i m not able to generate images from API, it shows error like (expected token 'B', "Billing ha"... is not valid JSON) can you resolve this issue..
Finally finished the project and hosted in internet.. what a project it is🔥.. Thanks you so much adrain
at 1:26:40 it shows alert "SyntaxError: Unexpected token 'I', "Incorrect "... is not valid JSON" can you please help?
@@ViditGoel-qp5ht it is because of api keys
@@HariHaran_10 so how can we fix this
@@ViditGoel-qp5ht having the same error
Dude i finished my project but i get error on deployment, can you pls help with it 🙏
Great content! One potential bug is that, in the `handleSearchChange` function, we use `item.name.toLowerCase().includes(searchText.toLowerCase())`; however, the `setSearchText` is also called within this function and the update of the state `searchText` occurs in the next render cycle and the filtered results is based on the old one.
I just watched your new video and I'm impressed with the level of creativity and production value. Keep up the great work, I can't wait to see what's next.. I hope you're doing well. I'm looking forward to your new videos for our social media project. Keep up the great work! Can't wait to see what you have in store for us next. Thank you.
Teleqram me 👆⬆️...
I haven't watched yet but I never doubt your content always on top
Thank you!
I'm from Brazil and your content is very impressive. I learn a lot in a short time. Thanks a lot 😁❤
Teleqram me 👆⬆️...
Very humble educated and most of all good hearted person ❤
Teleqram me 👆⬆️...
Again with another mind blowing project ❤
Thank you!
if there was any simple way to show my love to you I would definitely do that, love you so much bro
Thank you!
Thank you man. As usual, awesome content.
Glad you enjoyed it!
Wow. another amazing video. your channel contents are blow my mind😍
Thank you so much 😀
amazing tutorial, I redid it with tanstack-query and typescript.
Nice!
Ah your skill is on whole another level keep it up!
Appreciate it!
I love the way he says "dot-dot" like "daat-daat"
Even though it doesn't like some of my requested images 😇 it is still an incredible app. What a great video, thank you JSM!!
For help Teleqram me 👆
This video deserves 2 million likes.❤❤
Thank you so much! :)
thank you adrian, you are very generous to share this for free 😋
Teleqram me 👆⬆️...
Thanks for this Sir Adrian
Thank you!
Everyone please like the video so that the master creates more ai related projects.
I cannot believe such a comprehensive guide can exist for free in TH-cam. People on Udemy will charge you 60$ for a similar course and here you are doing it for free ?! World owes you so much, man.
Teleqram me 👆⬆️...
I need ur help
@@sahibalaskar1192 what is it?