Пікірлер
@ikbo
@ikbo 9 күн бұрын
Is there ui blocks for e-commerce?
@richardhaughton9633
@richardhaughton9633 17 күн бұрын
at 3:59 what is the extensions that show you what types the getIsSorted function returns ( false | SortDirection )?
@Jussoparkours
@Jussoparkours 18 күн бұрын
Great video, some friendly advice, turn your mic down or move away from it, it will drastically improve the quality.
@PlayGameToday
@PlayGameToday 26 күн бұрын
У тебя перегруз на микрофоне, немного по-дальше отодвинь его
@PlayGameToday
@PlayGameToday 26 күн бұрын
Нормально
@MaciejD-lw3pe
@MaciejD-lw3pe Ай бұрын
well it did not sort the table correct, so 'asc' and 'desc' apply for strings but not for numbers
@stefankleinhans4895
@stefankleinhans4895 Ай бұрын
did not work, cant seem to find the issue in the code
@emmanueljulius1827
@emmanueljulius1827 Ай бұрын
Amazing content chief, you just saved a brother
@io817
@io817 Ай бұрын
apparently after app build when i run npm run dev , it is taking a lot of time and not building
@RakeshBitling
@RakeshBitling Ай бұрын
We have not used handleLogout method exposed by handleAuth method of auth0 . If I want to logout from the application then what to do where it will lgout at IDP side and app session level too.
@hooooman.
@hooooman. Ай бұрын
shadcn table vs tanstack table, which is better ?
@imstudent795
@imstudent795 2 ай бұрын
Thank you so much! It was exactly what I needed
@iLoveVisionZ
@iLoveVisionZ 3 ай бұрын
Exactly what I was looking for, thanks for the guidance!
@javadmh7827
@javadmh7827 3 ай бұрын
Well done, Exactly what I was looking for!
@chhakulizingare9382
@chhakulizingare9382 3 ай бұрын
I have a Name column in which I have name and email, Can anybody tell me how to make search by name and email?
@dhairyarajbabbar7584
@dhairyarajbabbar7584 4 ай бұрын
i am doing the same thing by ising server side rendering but there i am receiving the runtime error that the columns is not a function to which i am passing the deleteStudent and editStudent server actions what can i do to make this work
@2xxxtrem
@2xxxtrem 2 ай бұрын
Did you find a solution? I have the same issue 😢.
@user-gs3sc2gs2i
@user-gs3sc2gs2i 4 ай бұрын
can u please share the source code
@Vibiotio
@Vibiotio 4 ай бұрын
so this is a client side sorting, how do we implement server side sorting tho? Idk, I find this library absolutely confusing with very poor documentation. I struggle to understand why people hype it so much.
@freetorunfree
@freetorunfree 4 ай бұрын
thank you was looking for an alternative to pyautogui
@avaze7
@avaze7 4 ай бұрын
the migration using pgloader only worked for me after setting sslmode=allow instead of require on both connection strings. Otherwise a great tutorial, thanks!
@preciousegwuenu2938
@preciousegwuenu2938 4 ай бұрын
Thanks <3
@programmerslife01
@programmerslife01 4 ай бұрын
Hello! Thank you so much for this! I've recently migrated my database from Planetscale to Neon using pgloader as you did here, the migration was successful, and everything is okay. But once I tried to run npx prisma db push, I got the following output with warnings and this error, even If I change nothing in the schema: ```ts ⚠ There might be data loss when applying the changes: • The primary key for the `Billboard` table will be changed. If it partially fails, the table could be left without primary key constraint. • The primary key for the `Category` table will be changed. If it partially fails, the table could be left without primary key constraint. • The primary key for the `Color` table will be changed. If it partially fails, the table could be left without primary key constraint. • The primary key for the `Image` table will be changed. If it partially fails, the table could be left without primary key constraint. • The primary key for the `Integration` table will be changed. If it partially fails, the table could be left without primary key constraint. • The primary key for the `Order` table will be changed. If it partially fails, the table could be left without primary key constraint. • The primary key for the `OrderItem` table will be changed. If it partially fails, the table could be left without primary key constraint. • The primary key for the `Product` table will be changed. If it partially fails, the table could be left without primary key constraint. • The primary key for the `Size` table will be changed. If it partially fails, the table could be left without primary key constraint. • The primary key for the `Store` table will be changed. If it partially fails, the table could be left without primary key constraint. √ Do you want to ignore the warning(s)? ... yes Error: ERROR: syntax error at or near "RENAME" 0: sql_schema_connector::apply_migration::migration_step with step=AlterTable(AlterTable { table_ids: MigrationPair { previous: TableId(0), next: TableId(1) }, changes: [DropPrimaryKey, RenamePrimaryKey, AlterColumn(AlterColumn { column_id: MigrationPair { previous: TableColumnId(0), next: TableColumnId(6) }, changes: ColumnChanges { type_change: Some(SafeCast), changes: BitFlags<ColumnChange>(0b100, TypeChanged) }, type_change: Some(SafeCast) }), AlterColumn(AlterColumn { column_id: MigrationPair { previous: TableColumnId(1), next: TableColumnId(7) }, changes: ColumnChanges { type_change: Some(SafeCast), changes: BitFlags<ColumnChange>(0b100, TypeChanged) }, type_change: Some(SafeCast) }), AlterColumn(AlterColumn { column_id: MigrationPair { previous: TableColumnId(2), next: TableColumnId(8) }, changes: ColumnChanges { type_change: Some(SafeCast), changes: BitFlags<ColumnChange>(0b100, TypeChanged) }, type_change: Some(SafeCast) }), AlterColumn(AlterColumn { column_id: MigrationPair { previous: TableColumnId(3), next: TableColumnId(9) }, changes: ColumnChanges { type_change: Some(SafeCast), changes: BitFlags<ColumnChange>(0b100, TypeChanged) }, type_change: Some(SafeCast) }), AlterColumn(AlterColumn { column_id: MigrationPair { previous: TableColumnId(4), next: TableColumnId(10) }, changes: ColumnChanges { type_change: Some(SafeCast), changes: BitFlags<ColumnChange>(0b100, TypeChanged) }, type_change: Some(SafeCast) }), AlterColumn(AlterColumn { column_id: MigrationPair { previous: TableColumnId(5), next: TableColumnId(11) }, changes: ColumnChanges { type_change: Some(SafeCast), changes: BitFlags<ColumnChange>(0b100, TypeChanged) }, type_change: Some(SafeCast) }), AddPrimaryKey] }) at schema-engine\connectors\sql-schema-connector\src\apply_migration.rs:21 1: sql_schema_connector::apply_migration::apply_migration at schema-engine\connectors\sql-schema-connector\src\apply_migration.rs:10 2: schema_core::state::SchemaPush at schema-engine\core\src\state.rs:433 ``` Any idea, please? I really appreciate your help.
@mosescodes
@mosescodes 4 ай бұрын
thank you so much! the migration worked. for some reason i hit an "unexpected end of input error" when trying to run my config.load file with pgloader (same as 2:27) -- this was solved by adding a semicolon after the words "create indexes"
@user-dr4xd9bx4b
@user-dr4xd9bx4b 4 ай бұрын
Thanks for the video. Can i ask you that why you didn't include onEdit and onDelete functions inside useMemo dependency array? In VSCode with ESLint setup, I got warning that either include them or remove dep array. Should I add?
@radanis1086
@radanis1086 4 ай бұрын
thanks a lot! very helpful
@gamocode8208
@gamocode8208 4 ай бұрын
Great video. Thank you so much. Could you create a video demonstrating how to utilize and manage forms primarily with the select tag? I'm interested in learning more about using form submission with select elements.
@jsogman
@jsogman 4 ай бұрын
hello, Im brand new to Javascript and doing anything with the web and not sure: why is the JSON module process is necessary?
@uffamei8044
@uffamei8044 4 ай бұрын
Thanks!
@shinchima
@shinchima 4 ай бұрын
Good work. Why did you use api routes and not sever actions for the /services?
@SuperYoda7
@SuperYoda7 4 ай бұрын
exactly what I needed !! thanks for this video! Only thing is that I had to zoom in a lot since the font was a bit too small for me. Not a big issue tho. I subbed and liked.
@patolorde
@patolorde 4 ай бұрын
Thanks i needed this, can you show how to add global filtering?
@srrain1342
@srrain1342 4 ай бұрын
Does blocks with Vite right now? I have regular ShadCN compornents working with Vite, but once I moved to blocks I was having issues.
@alirezadorrani9649
@alirezadorrani9649 5 ай бұрын
How can I enter Persian and Arabic numbers in addition to English numbers?
@PaulVarna
@PaulVarna 5 ай бұрын
Who could have ever thought that you would need to pay for a service that was growing by leaking money on a free tier.
@LeChien-ub1uw
@LeChien-ub1uw 5 ай бұрын
Thanks for your contribution ♥
@CaimAstraea
@CaimAstraea 5 ай бұрын
There's no guarantee Neon won't go the same way... You can replicate PlanetScale if your determined enogh. It's just a wrapper build around Vitess.
@bioburden
@bioburden 5 ай бұрын
Ah, a fellow man of culture who uses Webstorm 😉
@codewithosvaldas
@codewithosvaldas 5 ай бұрын
It’s IntelliJ ;) but still jetbrains 🔥
@mutesacedric4350
@mutesacedric4350 5 ай бұрын
I was just scaffolding an admin dashboard. thanks!
@ahafeezs
@ahafeezs 5 ай бұрын
Unfortunately, this looks too good. So I'm gonna have to use it in my future open source projects. Auto-subscribed. Cheers!
@aalaap
@aalaap 5 ай бұрын
झकास!!!
@AndriusLau
@AndriusLau 5 ай бұрын
Smagu, kad ir lietuviai kuria kokybišką turinį :)
@codewithosvaldas
@codewithosvaldas 5 ай бұрын
Ačiū! Pasirodo mes kolegos darbine prasme :)
@academai11
@academai11 5 ай бұрын
Yep, until this fancy service does the same rug pull as planetscale did. I'm trying to migrate to the self-hosted db but its painful.
@Gaamaa-oz5ef2lf3n
@Gaamaa-oz5ef2lf3n 5 ай бұрын
NOTE: When ever you do videos for KZbin, please never exceed 1080 display resolution. Since you have 4K res on your display, our eyes straning...
@codewithosvaldas
@codewithosvaldas 5 ай бұрын
Thanks for the comment. Yes, I’m improving on this part :)
@curiously-cinnamon
@curiously-cinnamon 5 ай бұрын
Hi, I am not able to install Docker Desktop on my Windows 11 device. When I run the installer, it displays an error : Component Docker.Installer.EnableFeaturesAction failed: Not found at Docker.Installer.InstallWorkflow.<DoHandleD4WPackageAsync>d__30.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at Docker.Installer.InstallWorkflow.<DoProcessAsync>d__23.MoveNext() Have you faced this problem too ?
@codewithosvaldas
@codewithosvaldas 5 ай бұрын
Hey, no I haven’t. I have win 11 too. I can see some people are facing this issue, but there are solutions forums.docker.com/t/unable-to-install-docker-desktop-4-8-2-component-communityinstaller-enablefeaturesaction-failed-not-found/124882/6
@curiously-cinnamon
@curiously-cinnamon 5 ай бұрын
@@codewithosvaldas I think it's because I have Windows 11 Home Single Language version. What about you> Do you have Windows 11 Pro, Enterprise or Education version? Or is it Home like mine? Edit : I've been trying to figure out how to fix the problem by talking to Gemini chatbot.
@codewithosvaldas
@codewithosvaldas 5 ай бұрын
I have Win 11 Pro. I suggest first checking out what humans have to say in the link I have provided or some stack overflow
@user-pz2fu9ie9u
@user-pz2fu9ie9u 5 ай бұрын
Thanks alot. Im trying it right now
@codewithosvaldas
@codewithosvaldas 5 ай бұрын
Let me know how it went ;)
@user-pz2fu9ie9u
@user-pz2fu9ie9u 5 ай бұрын
@@codewithosvaldas im not really familiar with docker. I just intalled it right now. I do not understant the first command you typed in your cmd. (I mean the docker pull for dimitri pgloader).
@codewithosvaldas
@codewithosvaldas 5 ай бұрын
It downloads, “pulls” the docker image for pgloader. Execute it and move further with instructions
@user-pz2fu9ie9u
@user-pz2fu9ie9u 5 ай бұрын
please where can i find my endpoint id?@@codewithosvaldas
@user-pz2fu9ie9u
@user-pz2fu9ie9u 5 ай бұрын
Failed to connect to pgsql at "ep-long-lab-*******.eu-central-1.aws.neon.tech" (port 5432) as user "the-sphere_owner": SSL verify error: 20 X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY @@codewithosvaldas i had this error while doing the docker run for the mirgation (i put the asterics myself because its sensitive info)
@programmerslife01
@programmerslife01 5 ай бұрын
I just saw your video and I'm writing this comment before I even watch it, but thank you so much for it, because I'm working on a project with Planetscale and got that email, so I was thinking of migrating to another free solution but I still didn't do my research, and suddenly saw your video from your another tutorial. I'll try your instructions thanks again man!
@edojoshua
@edojoshua 5 ай бұрын
Hi, I have been able to migrate successfully from Planetscale to Neon following your instructions. However, when I start my app, I get an error saying "public.{Model} does not exist in this database". It would seem the default schema being queried is the public one, and my data is on my custom schema. I am not very familiar with postresql or neon db. Any thoughts on how I can resolve this?
@codewithosvaldas
@codewithosvaldas 5 ай бұрын
Glad to hear that! Have you appended your custom schema to your database URL in .env file? Like so DATABASE_URL='..url..?sslmode=require&schema=your_custom_schema' I mentioned this in the video at ~03:30 kzbin.info/www/bejne/oaSWmYWmhJl7bLc
@edojoshua
@edojoshua 5 ай бұрын
I somehow missed that. I appended it and it works! Thanks again @@codewithosvaldas
@mountoubriandavid5472
@mountoubriandavid5472 5 ай бұрын
Hey please where did you get your endpoint id?
@codewithosvaldas
@codewithosvaldas 5 ай бұрын
You can get endpoint id from neon console. My connection string in console: postgresql://finance_dashboard_owner:************@ep-nameless-hat-a2cr4p7a.eu-central-1.aws.neon.tech/finance_dashboard?sslmode=require so ep-nameless-hat-a2cr4p7a is my endpoint id (in between @ and .eu-central
@edojoshua
@edojoshua 5 ай бұрын
This was very helpful. Thank you.
@anallesespeciale1315
@anallesespeciale1315 5 ай бұрын
*Promo SM*
@schminkel
@schminkel 5 ай бұрын
Nice video Osvaldas! Which tool are you using for drawing?
@codewithosvaldas
@codewithosvaldas 5 ай бұрын
Eraser.io ;)