Пікірлер
@user-lu7dm2fg2x
@user-lu7dm2fg2x 14 сағат бұрын
love how there was math involved haha, looking forward to more content from you!
@rafaychaudhry4603
@rafaychaudhry4603 2 күн бұрын
Tell us how to use it we know it exists.
@ucmaster2210
@ucmaster2210 2 күн бұрын
Extremely need a tutorial on how to build this app from scratch
@verilymusicgroup
@verilymusicgroup 6 күн бұрын
Hi Raj - do you have an email address I can contact you on? I am interested in paying you to build my own website builder. Thanks.
@DevDannel
@DevDannel 6 күн бұрын
Pleaae build the app
@huakun
@huakun 7 күн бұрын
Thanks! I was doing exactly this but couldn't get tree shaking working. Saved me several hundred KB!
@edenberdugo6947
@edenberdugo6947 11 күн бұрын
One more q, I've noticed that my JWT as well as yours(btw, watched the vid carefully) contains 4 dots(instead of two - the string should be splitted into header.payload.algo) as far as I see, as well as I have two dots following(abcdef<..>blabla) - when I tried to decode it seems to failed - is there specific reason? Thanks Again!
@edenberdugo6947
@edenberdugo6947 11 күн бұрын
Thanks! This is so much helpful! Regarding the bug that next-auth currently has - If get that right, Both useSession from next-auth/react, and auth() returned from NextAuth returning the session, while auth() should return the jwt object?
@raj_talks_tech
@raj_talks_tech 11 күн бұрын
@@edenberdugo6947 yes not sure if its fixed but keep track of the issue
@fazilfaz-mq5uj
@fazilfaz-mq5uj 11 күн бұрын
Build with next js pure
@fazilfaz-mq5uj
@fazilfaz-mq5uj 11 күн бұрын
Yes
@moraisgabas
@moraisgabas 16 күн бұрын
Are you saying that ssr with progressive hydration using next.js 14 and suspense doesnt works?
@garudkardnyaneshwar3426
@garudkardnyaneshwar3426 20 күн бұрын
Just waiting fir the code man Very helpful thoughts in all other vdos also man ❤
@HideBuz
@HideBuz 20 күн бұрын
Awesome content, that's quality teaching! Instant sub
@anubhavnegi4230
@anubhavnegi4230 21 күн бұрын
wanted to see the api route where you query the data for inifinite scrolling...
@raj_talks_tech
@raj_talks_tech 21 күн бұрын
@@anubhavnegi4230 Just checkout the code i. the description
@rbedson8965
@rbedson8965 22 күн бұрын
is it good idea to make the duplicate of menu element which you have made for home and blog
@teenageworrior1634
@teenageworrior1634 25 күн бұрын
useless
@thereal-ghost
@thereal-ghost 3 күн бұрын
basically this. next-themes doesn't work with Remix anymore. at least from what I've seen. Remix split their root structure into App() and Layout() where Outlet is in App(). even when you warp it with the provider, it fails to function. Currently shadcn + remix-themes doesn't work either due to the broken theme switching system. You're stuck with either light or dark mode hard coded.
@zezhenxu9113
@zezhenxu9113 28 күн бұрын
Just with how Vercel is currently implementing it, it is more just a framework for calling LLMs. The idea of picking a widget to display is nothing new pre-LLM. I guess the idea of streaming the UI is new, but if I need to define the UI component beforehands, I don't see a reason to move to NextJS and SSR just for that. Presumably it will bring some build and run time optimizations since you won't have all of the components on client side.. but the trade-off of mixing too much frontend logic into backend really won't work for large applications. Also, unless LLM is generating the UI itself, I really cannot see the difference between asking backend to return the UI v.s. returning the data representing the state of the UI. I doubt LLM will be capable of generating interactive UI as well.
@raj_talks_tech
@raj_talks_tech 28 күн бұрын
@@zezhenxu9113 agreed. It just helps think about building UI with streaming in mind
@balaselvam7024
@balaselvam7024 28 күн бұрын
Hey Raj I love this app and got most of it up. But I still keep getting the below error. Are you able to assist me in fixing this? Not really sure what I'm doing wrong here: Error: The model gpt-4o does not exist or you do not have access to it.
@raj_talks_tech
@raj_talks_tech 28 күн бұрын
@@balaselvam7024 You need to create your own API keys on Chatgpt and put them in the env variables
@balaselvam7024
@balaselvam7024 28 күн бұрын
@@raj_talks_tech Hey Raj I already have done that. But still getting that error
@balaselvam7024
@balaselvam7024 27 күн бұрын
@@raj_talks_tech Is there a way to share my code with you to see what I'm missing? I have added all the right code and API keys in the right spot but I'm still getting the same error
@diwanshuji947
@diwanshuji947 Ай бұрын
I already have auth using next auth with normal permission also with credentials. i want to implemnent such that if wants to use calendar api he can upgrade the permisiions
@diwanshuji947
@diwanshuji947 Ай бұрын
I cant find a way to do that
@alir8zana635
@alir8zana635 Ай бұрын
This video was really great You presented the problem Then proceeded to explain the solutions that exist and then you crafted your own sample for demonstrating how the open source projects could be used This style of video is really helpful for us more experienced developers But for beginners I believe a more step by step approach with full explanations would be needed Keep up the great work
@joseantonioromeroespejo160
@joseantonioromeroespejo160 Ай бұрын
Great job. Congratulations!!! How can I perform authentication on a /login route instead of at the root as seen in the video?
@pcv-free-as-a-bird
@pcv-free-as-a-bird Ай бұрын
Hi there!! Thank you for the video it was really nice.. I’ve setup supabase/srr on my Remix js app. The createBroswerClient and createServerClient works!! But I still not understand the concept between when to use the Broswer one or the Server one.. I know that when it’s for front-end is the Broswer client but I think I would need a real life example to understand both. Anyone can help me?
@raj_talks_tech
@raj_talks_tech Ай бұрын
Great question. If you are using a Server component, always use the createServerClient and in a client component you would have to use createBrowserClient. And browser-client is also important in scenarios, somehow you have logged the user out on the server, but have to change the state of the app. Eg: On browser client you listen to the AuthState change and update your view accordingly.
@pcv-free-as-a-bird
@pcv-free-as-a-bird Ай бұрын
@@raj_talks_tech Thank you!
@ummarfarooq9247
@ummarfarooq9247 Ай бұрын
supabase.auth.getSession() returns warning in the terminal, it says use getUser() so how can we do that bro, but when i tried getUser() i don't getting accessToken etc
@lalaniwerake881
@lalaniwerake881 Ай бұрын
oh great, thanks for sharing
@rtql8d
@rtql8d Ай бұрын
What was the app you used for the diagrams?
@raj_talks_tech
@raj_talks_tech Ай бұрын
Excalidraw
@rtql8d
@rtql8d Ай бұрын
@@raj_talks_tech thanks!
@ericantony2056
@ericantony2056 Ай бұрын
can someone help me use this in my code, the steps are kinda confusing
@adomakins
@adomakins Ай бұрын
Very helpful video! I think I'm going to go custom since I'm new to development and don't know what requirements I'll have. So I'm glad you pointed out the issue with bringing on 3rd party OAuth apps to your own app. I started out with Airtable as basically a BaaS but I'm hitting unforeseen limitations after only a few days and I don't want the same thing to happen with Supabase.
@solidkundi
@solidkundi Ай бұрын
i love the video, but i think there's a lot to unpack here. Hoping to find a video that goes step by step so my brain can map them better.
@raj_talks_tech
@raj_talks_tech Ай бұрын
I am making a tutorial on how to build this from scratch
@SalmanShah95
@SalmanShah95 Ай бұрын
Thanks
@syedbilalchand1766
@syedbilalchand1766 Ай бұрын
Web builder video please craft js
@user-nc6ho6dj3i
@user-nc6ho6dj3i Ай бұрын
Yeah I really love this craft js to build a builder page, please make that video, thank you so much.
@user-vf8bd3mm5n
@user-vf8bd3mm5n Ай бұрын
Does this work with Credentials?
@raj_talks_tech
@raj_talks_tech Ай бұрын
It should cost you essentially store credentials in a DB after OAuth
@tomahocbc963
@tomahocbc963 Ай бұрын
please can you make full tutorial about this ?
@nutonchakma9626
@nutonchakma9626 Ай бұрын
how can i add the item number in this infinite scroll
@sauravjangid4287
@sauravjangid4287 Ай бұрын
Can we get something like this in flutter ?
@ConAim
@ConAim Ай бұрын
WOW!!!
@starlord7526
@starlord7526 Ай бұрын
next level content, now i am planning to build CRUD google cal events from my site
@madhurchaturvedi5551
@madhurchaturvedi5551 Ай бұрын
Greate video sir please also if possible please make mern stack project we love you video keep it up
@abhijeetbajpai1022
@abhijeetbajpai1022 Ай бұрын
How does it fetch contact's schedule (availability ) @Raj
@raj_talks_tech
@raj_talks_tech Ай бұрын
I have covered it in my latest video in detail :) Check it out
@abhijeetbajpai1022
@abhijeetbajpai1022 Ай бұрын
It's really amazing, and I would really like to learn more about it, I have a few questions, and it would be great if we could connect sometime :)
@Sumitpatel-ww4ny
@Sumitpatel-ww4ny 2 ай бұрын
Yes, Can you please make a tutorial for website builder from scratch.
@JoshPalmeroc
@JoshPalmeroc 2 ай бұрын
Do you know how to include the css within the components automatically? It would be nice if the consumer of the library doesn't additionally need to import a css file. Thanks for the video btw very helpful!
@raj_talks_tech
@raj_talks_tech 2 ай бұрын
U could write ur own plugin for tailwind, or just build and import the css file
@m.x.
@m.x. 2 ай бұрын
React sucks, any library for Angular?
@kasper369
@kasper369 2 ай бұрын
in my auth callback my session callback is running multiple times which is causing multiple drizzle fetch requests, I am getting timeout error from drizzle, Why my session is running multiple times
@raj_talks_tech
@raj_talks_tech 2 ай бұрын
Can you paste the codebase link ?
@WebSpyder32
@WebSpyder32 2 ай бұрын
It maybe only be in my project but i think the styles are not exactly as they should be as seen in the video