I've just started learning how to code a few months ago. I love your energy and way of breaking things down with pseudocode! Keep it up Cooper, you've got a new subscriber :)
@CooperCodes Жыл бұрын
Hey Elliot I appreciate the kind words! This channel has a bunch of videos designed for those who know the basics, and want to go to the next level with some projects! Glad it’s useful for your situation, and thank you for the sub :)
@grzegorzmozdyniewicz4105 ай бұрын
Very helpful video, now supabase is much more easier !
@joscfc97192 жыл бұрын
Really enjoyed the vid, I've been following supabase database and auth tutorials and this is just the tutorial i needed to get started with supabase storage!
@georgelucasribeiro3696 Жыл бұрын
Man... you saving me again. Thank you so much for this nice tutorial
@brianwalsh7040 Жыл бұрын
can you make this exact thing but with nextjs 13 (using the app router)
@RaldCodeVBNET6 ай бұрын
Your one of the best youe teaching react, your clearly delivered and ex[lain
@ghassenlabidi51712 жыл бұрын
Very well explained and straight to the point! Thanks!
@FaizalHeesyam Жыл бұрын
simple and clear tutorial. nice pace, easy to understand. keep it up! 👍🏻
@rajsoni85552 жыл бұрын
Nice one. Helped me get past the hindrance in my ongoing project. Thank you for making this.
@CooperCodes2 жыл бұрын
Glad to help you get past that hurdle, thanks for watching!
@correiapas Жыл бұрын
Great video, It was super clear. Thanks.
@CooperCodes Жыл бұрын
Thanks so much Pedro, glad the video was helpful :)
@paulthomas10522 жыл бұрын
I really enjoy these tutorials - great content and nice time-frame. Look forward to your next one. Thanks :)
@CooperCodes2 жыл бұрын
Glad they're helping you! Thanks for the support :)
@roxo2137 Жыл бұрын
Best tutorial, thank you so much.
@psyferinc.3573 Жыл бұрын
thanks cooper more of supabase please with nextjs
@maskman48212 жыл бұрын
Very useful and practical tutorials, thank you so much 🙏
@CooperCodes2 жыл бұрын
You're very welcome! Thanks for watching :)
@Deus-lo-Vuilt Жыл бұрын
Nice bro , I liked supabase and react !
@CooperCodes Жыл бұрын
Glad you enjoyed using the technologies! Thank you for watching :)
@devardilshad3944 Жыл бұрын
amazing thanks for the clarification very insightful. I want to implement a delete image feature but supabase gives an error and i hope you make a short video about that if possible.
@hendrywilliam Жыл бұрын
Hello sir, how do we connect table (lets say i created a user table which contains username and password) and storage, and every file uploaded by specific user has its own id? Thanks
@revaprasetya10 ай бұрын
Great video, thank you sir
@Holsp Жыл бұрын
Hey, I tried logging in with Supabase email authentification, and when I tried to put the new image into the bucket. I get this error: "401" "Invalid JWT" "new row violates row-level security policy for table" I don't really know what to do with it. I have my cookie so I don't know why it's not taking my JWT. I am a beginner in Auth and don't know if I am missing something. Would you have any ideas?
@thekannadacoder8134 Жыл бұрын
thank you so much , it really helped
@CooperCodes Жыл бұрын
Glad to hear it! I found the bucket storage stuff confusing initially so glad it helped you :)
@dungsidietpi Жыл бұрын
when I put the website on github, when I click on the link to login in gmail, I can't navigate to the "Your image" page
@rodrigoorellana2389 Жыл бұрын
amazing explanation... question: amazing explanation... question: what happen if we remove a imagen the bucket from the supabase dashboard? I remember firebase takes the changes instantaneously and reflect them in the frontend
@yourdailyanimalfact Жыл бұрын
Cooper how would one use image bucket data in a table of. products like we created in another video of yours. How can we upload a product image and combine it with product name and description table data.
@adamor9935 ай бұрын
Could you explain this when i use nextjs? I have a error between server and client components
@ThomazMartinez Жыл бұрын
Using UUID will also solve caching issues on client
@LeonardoAzaelHernándezFlores Жыл бұрын
How could I print the file name without calling the entire supabase URL? Just the user's file name
@raynosebastian6275 Жыл бұрын
bro do you have any react + supabase google auth tutorial ?
@CooperCodes Жыл бұрын
Yup, this one: m.kzbin.info/www/bejne/qpjGdJ9rZ6qBbpY
@raynosebastian6275 Жыл бұрын
@@CooperCodes yoo thanks for the reply bro ♥️, im new in this web dev world so rn i kinda lost 😫
@CooperCodes Жыл бұрын
@@raynosebastian6275 It can be intimidating at first! The projects on my channel aim to take you from a beginner skillset (knowing some fundamentals) to bring you to an intermediate understanding (with the ability to build your own projects!). Best of luck on your web dev journey :) Thanks for watching
@ManarManaar-o6y Жыл бұрын
Brother, is this java code?
@APerson-d5s2 жыл бұрын
Can you do the same thing with Nhost Image hosting and Hasura?
@CooperCodes2 жыл бұрын
Going to look into Nhost soon, will check out their image hosting and hopefully make some content regarding that :)
@APerson-d5s2 жыл бұрын
@@CooperCodes thanks!
@khaqim4148 Жыл бұрын
you did not create any table?
@LazriYouness-vr6ej Жыл бұрын
@everyone how to this with next js please
@studioph5.6 Жыл бұрын
steap by step with your video and "new row violates row-level security policy for table "objects"" again and again =\
@studioph5.6 Жыл бұрын
turned out you have to apply policy for objects, not just policy for yout bucket. Not sure why it works for @CooperCodes. For example, to upload images use following policy for table.objects via sql editor: ALTER TABLE storage.objects ENABLE ROW LEVEL SECURITY CREATE POLICY objects_insert_policy ON storage.objects FOR INSERT WITH CHECK (auth.role() = 'authenticated')