Пікірлер
@AdeniyiRaymond-gt8wj
@AdeniyiRaymond-gt8wj 2 сағат бұрын
I love everything you do Sonny am a great student and disciple of Papafam
@mainulhasan136
@mainulhasan136 6 сағат бұрын
আমরা চাই সরকার স্বাস্থ্য খাতে দৃষ্টি দিক । আমরা নাগরিক হিসেবে যেনো সব ধরনের ট্রিটমেন্ট বাংলাদেশে নিতে পরি এবং আমার ও বিদেশে যেতে চাই না ।
@mileslegend
@mileslegend 23 сағат бұрын
I came back to re follow but the links changed .....i cant access the script again
@TannerZuccala
@TannerZuccala Күн бұрын
this video is not just beautiful but also so full of emotion, amazing
@JanelleContreras-r2g
@JanelleContreras-r2g Күн бұрын
The link for the source code goes to a not found page. Is there a place to get it?
@Melodymentr
@Melodymentr Күн бұрын
Can u please make video on angular firebase phone authentication ❤
@awais_ansarii
@awais_ansarii Күн бұрын
@leylasalim9695
@leylasalim9695 Күн бұрын
🍀
@Catchcatking83
@Catchcatking83 Күн бұрын
Congrats. I got myself a Batman too from the AD. The feeling sure feels good
@AnkitSingh-ff6ew
@AnkitSingh-ff6ew Күн бұрын
can we generate embedding from huggingface inference rather than openai paid version
@JuanCarlosHernandez-yj1so
@JuanCarlosHernandez-yj1so 2 күн бұрын
2:38:18 for some reason my activeSale.data bring me a null data type and my banner is not showing, does anyone have the same problem?
@thejanbandara3076
@thejanbandara3076 2 күн бұрын
bro the timestamps are gone. now videos over 12 hrs does not show timestamps like normal videos.
@lametfrank6848
@lametfrank6848 2 күн бұрын
Thank papa react. Please Can you create a fullstack app using next js 15 with clerk
@lucapriati246
@lucapriati246 2 күн бұрын
He has
@rajatverma1611
@rajatverma1611 3 күн бұрын
why the hell is the background music playing at the background. it is so distracting.
@WahajYousafzai
@WahajYousafzai 3 күн бұрын
From Pakistan Bro love You❤
@dastan331
@dastan331 3 күн бұрын
You are very positive man 👍
@luisvanegasdev95
@luisvanegasdev95 3 күн бұрын
Hola alguien que me ayude con el Default user Role, hago todo exactamente igual y no me lo asigna por default
@om7489
@om7489 4 күн бұрын
Anyone have code or GitHub link?
@moeinsamani1467
@moeinsamani1467 4 күн бұрын
[Error: failed to pipe response] { [cause]: [Error: ABORT: The provided input is a prompt and not a complete children's story.]
@LongBoy.0
@LongBoy.0 4 күн бұрын
this video needs WAY more likes. Sonny is the undisputed GOAT of full stack dev videos. I've been in this content space for 5 years, and these videos are consistently the best, even when he's live and going off the cuff.
@vladimirrumyantsev7445
@vladimirrumyantsev7445 4 күн бұрын
Hello, project with story generator getting this error: {"dir":"/Users/hevzy/Desktop/Projects/GitHub/papafam/youtube_storyteller_ai/public/Boy-came-to-NYC-for-christmas-celebration"} <tool call> abort -> {"message":"Failed to create directory due to a bad substitution error."} why dir not mkdir? or maybe there is something else?
@manthanhanchate5101
@manthanhanchate5101 4 күн бұрын
Is is like that for some files like seed.sql I have to join the Papareact course ?
@manthanhanchate5101
@manthanhanchate5101 4 күн бұрын
How to get the seed.sql file ? I am not able to get the link
@RashiAgrawal-r1t
@RashiAgrawal-r1t 4 күн бұрын
Hey @sonny sanga any update on dataset loading please or you can provide alternate dataset?
@AnujRawat-w8o
@AnujRawat-w8o 5 күн бұрын
I am having issues with types of params like when m building it locally deploying on vercel I m getting error, I did everything and did many chances but still this error keeps popping up.: Type error: Type '{ searchParams: { query: string; }; }' does not satisfy the constraint 'PageProps'. Types of property 'searchParams' are incompatible. Type '{ query: string; }' is missing the following properties from type 'Promise<any>': then, catch, finally, [Symbol.toStringTag] the code: import { imageUrl } from "@/sanity/lib/image"; import { getProductBySlug } from "@/sanity/lib/products/getProductBySlug"; import { PortableText } from "next-sanity"; import Image from "next/image"; import { notFound } from "next/navigation"; async function ProductPage({ params, }: { params: Promise<{ slug: string; }>; }) { const { slug } = await params; const product = await getProductBySlug(slug); if (!product) { return notFound(); } const isOutOfStock = product.stock != null && product.stock <= 0; return ( <div className="container mx-auto px-4 py-8"> <div className="grid grid-cols-1 md:grid-cols-2 gap-8"> {" "} <div className={`relative aspect-square overflow-hidden rounded-1g shadow-lg ${isOutOfStock ? "opacity-50" : ""}`} > {product.image && ( <Image src={imageUrl(product.image).url()} alt={product.name ?? "Product image"} fill className="object-contain transition-transform duration-300 hover: scale-105" /> )} {isOutOfStock && ( <div className="absolute inset-0 flex items-center justify-center bg-black bg-opacity-50" > <span className="text-white font-bold text-lg">Out Of Stock</span> </div> )} </div> <div className="flex flex-col justify-between"> <div> <h1 className="text-3xl font-bold mb-4">{product.name}</h1> <div className="text-xl font-semibold mb-4"> £{product.price?.toFixed(2)} </div> <div className="prose max-w-none mb-6"> {Array.isArray(product.description) && ( <PortableText value={product.description} /> )} </div> </div> </div> </div> </div> ); } export default ProductPage;
@AnujRawat-w8o
@AnujRawat-w8o 4 күн бұрын
destructuring params directly within the function parameters is problematic because params is a promise. solution: async function ProductPage(props: { params: Promise<{ slug: string }> }) { const { params } = props; // Destructure params from props const { slug } = await params; // Resolve the promise to extract slug const product = await getProductBySlug(slug); if (!product) { return notFound(); } const isOutOfStock = product.stock != null && product.stock <= 0;
@AnujRawat-w8o
@AnujRawat-w8o 4 күн бұрын
I love sonny sangha <3
@poornimamasote3447
@poornimamasote3447 5 күн бұрын
Great Project
@menikmati90
@menikmati90 5 күн бұрын
I kept getting 400 and 402 errors and tried everything and realized you need to be in Stripe test mode and use the test mode keys ... whoops
@joshuaola-oluwa7777
@joshuaola-oluwa7777 6 күн бұрын
❤❤❤
@shikshitgupta1591
@shikshitgupta1591 6 күн бұрын
Hi Sonny, Thanks for the video and efforts but I am not receiving SQL schema in my mail for neondb after submitting the form. Is it expired or any other way to get it?
@LongBoy.0
@LongBoy.0 6 күн бұрын
Absolutely epic build! Thanks to Sonny and the papa react fam for creating this and putting it out there. I learned so much, and glad I bookmarked this to come back for it. Something to Note: Currently Liveblocks seems to be broken with Nextjs 15+ so if you're doing this near the time of this comment, make sure you're locked to Next 14 something.
@vimleshdcafe
@vimleshdcafe 6 күн бұрын
so this guy removed the code also. loser.
@josersleal
@josersleal 6 күн бұрын
should not take prfile filming... scary
@hemantrathod5146
@hemantrathod5146 7 күн бұрын
The best one out there <3 Thank you soo much!!! :)
@KashishVerma-z9v
@KashishVerma-z9v 7 күн бұрын
i am not able to get credits from open api. tell some alternative open sourse ai intergration tool please.
@black0utrage
@black0utrage 7 күн бұрын
You paid community membership is too much expensive for Indian people. If you love Indian people give us a cheap option. We don't earn in pounds
@Tanner-cz4bd
@Tanner-cz4bd 7 күн бұрын
well done bro. was in dubai for 10 days, after that I realised UK sucks haha i need to move permantely.
@prathiv5203
@prathiv5203 7 күн бұрын
Currently firebase does not allow phone auth if it's from localhost
@wibbs88
@wibbs88 8 күн бұрын
Where's the code in the official Papafam repo? I can't find it.
@ianasasira550
@ianasasira550 8 күн бұрын
Thx so much much love from Uganda
@ianasasira550
@ianasasira550 8 күн бұрын
Hard
@sundaydaodu1234
@sundaydaodu1234 8 күн бұрын
Can i practice this full Stack Developer AI Saas
@itumeleng_seema
@itumeleng_seema 8 күн бұрын
We need a react native app live to end off 2024
@ashish9028
@ashish9028 8 күн бұрын
amazing!!!!
@AnkitSingh-ff6ew
@AnkitSingh-ff6ew 8 күн бұрын
open source alternative for generating pdf embeddings and can connect with pinecone and langchain
@hemantrathod5146
@hemantrathod5146 Күн бұрын
Gemini embeddings and chat
@batrasifars
@batrasifars 9 күн бұрын
Me too a punjabi living in Chennai, India broo
@harshadbhoir8917
@harshadbhoir8917 9 күн бұрын
im getting error while creating exemption in firestore database "There was an error while saving the exemption"
@burhankhatib
@burhankhatib 9 күн бұрын
Hey Sonny, I noticed that on IOS devices the Token does not load. I need to go from page to page in order to get the "Grant Permission" appear and only then things work fine. So it does not work from the first load of the page. I am not sure if I am the only one but I thought to report this to you. Great job man keep it up !
@Lazyman85698
@Lazyman85698 9 күн бұрын
I just realized this project doesn't have a color and size selection
@steveo959
@steveo959 9 күн бұрын
my banner doesnt show at all even after putting localhost as the alias what could i be doing wrong
@IstMirWurst
@IstMirWurst 10 күн бұрын
haha, I can already imagine the customer calling me and dictating their order number lol xDD