Prisma in 100 Seconds

  Рет қаралды 619,032

Fireship

Fireship

Күн бұрын

Пікірлер: 799
@leagueoflags
@leagueoflags 2 жыл бұрын
This sounds incredibly handy! A full tutorial would be great!
@macrozone
@macrozone 2 жыл бұрын
Prisma is actually so easy, that you barely need a tutorial
@Bluepaccao
@Bluepaccao 2 жыл бұрын
Agreed, it would be nice to see
@haidermuhammad999
@haidermuhammad999 2 жыл бұрын
I'm up for a tutorial tbh
@h_beserra
@h_beserra 2 жыл бұрын
I agree with you
@majidshah48
@majidshah48 2 жыл бұрын
Documentation is easy
@wayslow
@wayslow 2 жыл бұрын
Been using Prisma for a while. It's amazing, but has a few gotchas. Like "nested curly brace fatigue" is a real thing, it's easy to nest a few simple "wheres" to a few indentation levels so the whole code is unreadable. Migrations are also bit raw - you can't edit them and there's no rollback. They will also wipe anything from your dev db, like store procedures or extra tables... or data. On the plus side - I love that Prisma generates types for TS from the db, it's a great source of truth when playing a lot with DB design. Super important note - VS Code has much better support for editing schema than anything else.
@andresribeiroo
@andresribeiroo 2 жыл бұрын
You can't rollback a migration, but if you want to edit one before running it you can pass the --create-only flag
@RaZziaN1
@RaZziaN1 2 жыл бұрын
And generated SQL code is really slow, 10 times slower than linq with entity framework. In new version this issue will be addressed, but let's say prisma is still very young (though some people use this in prod)
@KgfLikia
@KgfLikia 2 жыл бұрын
@@andresribeiroo in laravel migrations you can.
@rochmadwa7076
@rochmadwa7076 2 жыл бұрын
Yeah, I'm using Webstorm and disappointed that there's no working plugin for editing Prisma schema
@MrPatak007
@MrPatak007 2 жыл бұрын
those are red flags for me
@madara-sq5xp
@madara-sq5xp 2 жыл бұрын
If you created your own tutorials like 1 hour long I would definitely watch you, You have the ability to keep the viewer attention with charming voice and with interactive examples.
@alexandromg
@alexandromg 2 жыл бұрын
This is just a fireship ad 😝
@somfierce
@somfierce Жыл бұрын
I feel like Fireship is more of a way to figure out which long tutorials (from other channels) to actually watch
@maurobianchin8243
@maurobianchin8243 Жыл бұрын
gay
@theycallmejohn4733
@theycallmejohn4733 2 жыл бұрын
I would love to see a full tutorial, this seems incredibly useful.
@epicprogramming1383
@epicprogramming1383 2 жыл бұрын
If you want to see more CRUD examples in Prisma 3 you can watch this tutorial: kzbin.info/www/bejne/i5fMmYFjbMlnfZo Fireship as always made a very good introduction! 👏
@ksixe
@ksixe 2 жыл бұрын
+1
@kadensharpin2156
@kadensharpin2156 2 жыл бұрын
Just started using prisma last week. This channel always has crazy timing
@dorifourer6949
@dorifourer6949 2 жыл бұрын
That’s exactly what I needed! A full tutorial would be great.
@FaceDevStuff
@FaceDevStuff 2 жыл бұрын
These videos hit harder when you watch them with 1%
@morchedlafferty8614
@morchedlafferty8614 2 жыл бұрын
I used it lately along Postgres in an entreprise project, and dev experience was super great! Really recommend it!
@haarTrick
@haarTrick 2 жыл бұрын
If I am understanding correctly, I don't need to use back-end endpoint? I can write directly to the database ?
@TheQuinn50
@TheQuinn50 2 жыл бұрын
@@haarTrick always develop using a 3 layer system, never access the db directly from your frontend. Have a API or sever in-between so you can ensure proper source of truth
@SirM0linarius
@SirM0linarius 2 жыл бұрын
@@haarTrick That is incorrect. Prisma does not work clientside, it runs in a Node environment (the Backend). You can however use a library like react-query or the framework blitzJS (highly recommended) to call backend code without having to write an api manually. In case of blitzJS the api is implemented automatically during the build step of your project.
@morchedlafferty8614
@morchedlafferty8614 2 жыл бұрын
@@haarTrick in addition to the above comments, yes, you can also forward your queries from the frontend to the backend, but they are handled only through the backend.
@darkcss1054
@darkcss1054 9 ай бұрын
@@TheQuinn50 or use React Server Component to do all db communication in the server.
@gastond7277
@gastond7277 2 жыл бұрын
Seeing a beyond 100 seconds for prisma would be awesome! Thanks for all the awesome content !!
@ERAKONZ90
@ERAKONZ90 2 ай бұрын
Aside from being entertaining, these videos are always great if I need to learn about a tool or framework quickly. Thanks for making these!
@theweirdsquid
@theweirdsquid 2 жыл бұрын
I would love a full prisma tutorial! This sounds like it would save so much time!
@motae999
@motae999 2 жыл бұрын
Thanks man you always keep us updated with technologies which is the main reason for my subscription to ur channel and we can always look up full tutorial somewhere else when needed so we appreciate ur 100 seconds videos keep it up
@xerafenix
@xerafenix 2 жыл бұрын
You should definitely do a full tutorial! This seems like such an amazing technology.
@dome7717
@dome7717 2 жыл бұрын
Set the Speed of the Video to 2x and you learn it in 50 seconds
@NaumRusomarov
@NaumRusomarov 2 жыл бұрын
The advantage of writing raw sql is that you can easily use db specific functionality and test the sql code separately. orms are fine for some projects, but the abstractions tend to be quite leaky, so their usefulness usually is limited. db migration tools are nice, though.
@proosee
@proosee Жыл бұрын
I stick to the simple rule: ORMs for managing migrations and performing simple queries/updates, SQL for more complicated queries or operations. Some purist don't like it, but I will let them suffer in their own unmaintainable code.
@samlopezco
@samlopezco 2 жыл бұрын
Jeez Jeff any time i get pulled into a project where i have no clue how to get started, you release a video explaining exactly what i need.
@ThiagoVieira91
@ThiagoVieira91 2 жыл бұрын
A full tutorial is required! Great as always!
@Fizbun
@Fizbun 2 жыл бұрын
I got excited thinking this is a video about the Finnish store chain also called "Prisma" that also has stores in Estonia
@ethanleo3365
@ethanleo3365 2 жыл бұрын
I use Prisma in one of my Express apps. What I like is that it has built in Typescript support and its features in which the most notable one to me is the introspection. I used to do raw queries until I came across Prisma and I realised that as compared to other ORM libraries where you can only carry out migrations, Introspection allows you to generate your models from your existing database schema. Apart from that the auto generated models give you one step ahead in allowing you to have interfaces that can be used for type assertion
@Cjaymoney
@Cjaymoney 2 жыл бұрын
Congrats on 1 Million Subs! Great to see SWE content growing as rapidly as yours 🎉
@Alex-xl4xe
@Alex-xl4xe 2 жыл бұрын
How freaking awesome is this? I've watched this the second time now and only now understood how amazing this is. Damn!
@razorbelle
@razorbelle 2 жыл бұрын
Would love to see authentication and authorization covered in a full Prisma tutorial! 🥰
@soksedthaly8299
@soksedthaly8299 2 жыл бұрын
I have just started using Prisma. This gives me a much better idea of what I can do with it. Thanks a lot!
@andriotis
@andriotis 2 жыл бұрын
A full tutorial would be GREAT. It is one of the most interesting tools I’ve seen here. Yes. 100% Yes
@umang5559
@umang5559 2 жыл бұрын
That's was really good, appreciate it man for making it so beautifully and explaining important things in such a short time.👏👏👏👏👏
@kataii
@kataii 2 жыл бұрын
This is exactly what I’m looking for. I love the handy tools ORM gives but we loose control on DB structure and have more learning curve to create schema with ORM’s method. I love tinkering on the DB directly instead of letting ORM to take over. Please please please have a full tutorial or a course for Prisma.
@Fanoflix
@Fanoflix 2 жыл бұрын
Prisma allows you to define your schema and then use that schema to create a Prisma migration; which is the "introspection" part in this video.
@tooru
@tooru 2 жыл бұрын
lose*
@snetterfield56
@snetterfield56 2 жыл бұрын
Been using prisma for a few work related projects and it's incredible! Makes it stupid easy to work with databases in node
@MaZe741
@MaZe741 2 жыл бұрын
Turning unreadable sql noodles into unmanageable curly brace pyramids
@krishgarg2806
@krishgarg2806 2 жыл бұрын
Thank you! I have been using it for few months now and its great with the amazing intellisense and easy relational mapping.
@oraqlle
@oraqlle 2 жыл бұрын
Am I the only one who feels like a C++ in 100s should be done. There’s a lot of cool things modern C++ does and aims for that I think would interest a lot of developers and these videos are perfect recaps of languages/frameworks and their aims. Keep up the great work. This videos are always eye opening to new worlds as a developer.
@ThijmenCodes
@ThijmenCodes 2 жыл бұрын
Agreed!
@shambhav9534
@shambhav9534 2 жыл бұрын
It should end with an unreadable compiler error that spans a hundred lines.
@Mnerd7368
@Mnerd7368 2 жыл бұрын
I want to see a tutorial for Linux in C++ programming for writing and developing aerospace autonomous spacecraft software and robotics software engineering using R.O.S. (robotic operating system) just like SpaceX, Rocket Lab, NASA, Boeing, and Blue Origin. I tried to find any tutorial for aerospace software engineering in the Internet but there is none and is a bunch of impractical gibberish.
@oraqlle
@oraqlle 2 жыл бұрын
@@shambhav9534 Absolutely 🤣
@oraqlle
@oraqlle 2 жыл бұрын
@@Mnerd7368 Yeah, C++ has a very high ceiling of entry, not because it's necessarily hard to use (although much more boilerplate must be written) but because it such a different language to what is used to be and many tutorials use outdated practices or a mash of old and modern that makes code unreadable and don't actually showcase the new and powerful practices and methods the community and the standards committee have been working on to make C++ as powerful and diverse as it is. C++ written 10, 15 and 20+ years ago is not the same C++ you can and probably should write today.
@moibe182
@moibe182 Жыл бұрын
I love the fact that in 100 seconds you just not explain what it is, but you actually guide us to implement it right away!
@brunodepaula9145
@brunodepaula9145 2 жыл бұрын
I would LOVE an extended video of this!!
@harrisongilbert
@harrisongilbert 2 жыл бұрын
Even though I’ve been working with Prisma for quite a while now, it’s still fun to watch these videos!
@flam1ngicecream
@flam1ngicecream 2 жыл бұрын
This video has done a fantastic job of solidifying my current position on SQL, which is that you can abstract it away when you pry it from my cold, dead fingers.
@tennhard
@tennhard 2 жыл бұрын
Amazing video as always! I’d definitely watch a long form version of this!
@Remolhunter97
@Remolhunter97 2 жыл бұрын
Damn, Prisma looks nice. I had to learn completly SQL, and it's just a headache every time I have to go back to it. Prisma looks sexy, easy and even usable with other tech. Perfect.
@felipeflores5403
@felipeflores5403 2 жыл бұрын
I'm not kidding when I say that you post a video about a tool I'm using/trying out the second I do. Whether you read minds or expertly analyze developer trends will forever remain a mystery
@brett84c
@brett84c 2 жыл бұрын
Been learning Prisma this week as part of my new job and even though I am not too deep in yet, I'm loving it. It feels as easy as working with Mongo, but with none of the negatives.
@kovvoursuhashsaikumar1214
@kovvoursuhashsaikumar1214 2 жыл бұрын
Will it support cloud database?
@MuhammadUzair-vw4hw
@MuhammadUzair-vw4hw 2 жыл бұрын
Prisma looks very interesting! It will be great if you do a full tutorial about it.
@professorvarox
@professorvarox 2 жыл бұрын
I use Prisma since a few months now and I really love it. I will never switch back to another ORM
@kagedevshorts4886
@kagedevshorts4886 2 жыл бұрын
I would really love it if you made more videos on svelte
@penguindrummaster
@penguindrummaster 2 жыл бұрын
As a former database developer, it bugs me how much effort people put into avoiding working in the database. SQL was my first programming language, so maybe I'm a tad biased, but procedural coding is really straight forward, compared to worrying about how an ORM is managing your database underneath, and what if you have multiple teams working with multiple ORMs across different languages (Java, C#, JavaScript, etc.), which would result in a wide range of implementation standards for the backing database. Just seems like a lot of headache to avoid learning an extremely useful tool (SQL)
@miguelklappes8525
@miguelklappes8525 2 жыл бұрын
My thoughts exactly.
@FoodElitist
@FoodElitist 2 жыл бұрын
these tools are a big help for developers who maybe know JS well and do webdev, but have little to no CS knowledge (which imo includes knowing SQL).
@dandogamer
@dandogamer 2 жыл бұрын
Orms are generally useful for CRUD kind of work or basic joins so you can focus more on other areas, for more complex work they tend to expose a query runner where you can utilise SQL directly to get the performance you need.
@smrtysam
@smrtysam 2 жыл бұрын
💯
@maskettaman1488
@maskettaman1488 2 жыл бұрын
Avoiding learning is the foundational motivation for javascript developers
@pixelknitter
@pixelknitter 2 жыл бұрын
FULL TUTORIAL PLZ - love tools like this that make dev-life simpler
@jmagrippis
@jmagrippis 2 жыл бұрын
Lovely summary! I find showing the Typescript autocomplete is what makes people get their “Aha!” moment with Prisma 💡
@chullupa
@chullupa 2 жыл бұрын
this looks awesome. always found orms to have painpoints but ill def be checking this out
@mcdazzzled
@mcdazzzled 2 жыл бұрын
Yes please! Full tutorial sounds great 👍
@LohenYumnam
@LohenYumnam 2 жыл бұрын
I love Prisma, I would love to see a full tutorial from you.
@corbinivon
@corbinivon 3 ай бұрын
ngl, every video is the best video. Thanks for all your hard work!
@huluradio8496
@huluradio8496 2 жыл бұрын
Prisma is crazy good. Been with them since prisma 1 and the new one is even way more powerful.
@yadusolparterre
@yadusolparterre 2 жыл бұрын
Your videos are beautiful. I would be super happy to see an video on the tools you use to create, edit and publish your vids!
@jessyndaya9487
@jessyndaya9487 2 жыл бұрын
Amazingly great video , prisma structure is also complex and require a lot of memorization
@Ghileman100
@Ghileman100 2 жыл бұрын
I didn't know I needed and now I desperately do. Full tutorial pretty please!
@currymagc
@currymagc 2 жыл бұрын
Prisma is the first ORM that I didn't absolutely hate using. It's still missing a view key features, such as Views, but overall it's pretty darn good and saves a ton of time
@matthewaxisa6058
@matthewaxisa6058 2 жыл бұрын
I love ORMs like Prisma which can give type safety when you're working with the DB. However when working on big projects (especially those where multiple teams access the same DB from different application contexts) they cannot replace plain SQL for migrations. I would really like to see a 100 seconds (and beyond) where your showcase tools to manage database migrations.
@seandemers8147
@seandemers8147 2 жыл бұрын
A cool thing could be 'flyway' in 100 seconds. It's a database versioning tool.
@gethermedel3620
@gethermedel3620 2 жыл бұрын
that's where code level migrations and seeders come's in. it's still way better to have all these in code/application level.
@gto433
@gto433 Жыл бұрын
For mongodb, is mongoose orm fine for large teams?
@avidian4759
@avidian4759 2 жыл бұрын
YES! This is the best nodejs ORM in existence right now.
@mikk9352
@mikk9352 2 жыл бұрын
Eh gonna disagree on this one.
@DaggieBlanqx
@DaggieBlanqx 2 жыл бұрын
Unlike your politician, Fireship keeps promises. I always see new short videos after I like a previous one. Thank you so much.
@faceboy1392
@faceboy1392 2 жыл бұрын
A full tutorial would be great, especially if it can briefly go into things like usage on hosting services such as Heroku. Great video!
@colorfulvoid1473
@colorfulvoid1473 2 жыл бұрын
I need a full tutorial NOW! Thank you UwU
@janpawedwa4590
@janpawedwa4590 2 жыл бұрын
That db pull feature is pretty cool. I just model everything in Heidi (because that is what I am used to), run one command, and it just works.
@TheRanguna
@TheRanguna 2 жыл бұрын
1:38 to be honest, complexity looks the same between prisma's syntax and sql for creating tables and indexes. Probably worse because know you'll need to know two syntaxes, instead of just sql. For a more "traditional" approach, the other mentioned lib, sequelize, is pretty great. It has a migration engine built into its cli tool and you can defined tables with objects, no need to go to the OOP route 👌 Awesome video nonetheless!
@Prettypurplepineaple
@Prettypurplepineaple 2 жыл бұрын
You can still use Prisma seamlessly if you prefer to create tables and/or migrations directly using SQL. The introspection feature will generate the prisma schema file for you based on the current state of your database.
@joga_bonito_aro
@joga_bonito_aro 2 жыл бұрын
What might also be interesting is that, it can do a real cascading delete. Meaning it not only deletes the contents of the linking table, but also the entities that created the links. Prisma is fucking great!
@joga_bonito_aro
@joga_bonito_aro 2 жыл бұрын
@@MisterNOmercy Sounds like someone needs to write more test code >)
@sjoerdvanbommel9784
@sjoerdvanbommel9784 2 жыл бұрын
Every fireship video in 100 seconds is longer than 100 seconds
@davidbd
@davidbd 2 жыл бұрын
I am currently working on a project where I am using PostgreSQL and this will definitly get into it. Very nice had not heard of it before 🙂 Thx for sharing...
@shaiyanollaciu3694
@shaiyanollaciu3694 2 жыл бұрын
this is the best video i had see in youtube ! Thank u for that awesome explaination 👏👏👏
@nullprophet10
@nullprophet10 2 жыл бұрын
Just came out of a 4 hour long internship session, didn't understand a thing, watched this video, understood on a minute.
@michaelshepard3380
@michaelshepard3380 2 жыл бұрын
These videos are terrific and have been very helpful in the masters program I'm in. Thank you for making these!!
@legenuspl4906
@legenuspl4906 2 жыл бұрын
look forward for full prisma tutorial! Thx for this video
@esportsnexus
@esportsnexus 2 жыл бұрын
Yes, we want full prisma tutorials.
@andyiscool5463
@andyiscool5463 2 жыл бұрын
Bro wtf, literally was looking at deploying my web app with prisma as the ORM today and now you made a video about it. You are one genie smh
@stevealliance4370
@stevealliance4370 2 жыл бұрын
Go ahead with the full course, you are the best
@Ollinho12
@Ollinho12 2 жыл бұрын
I'm using Prisma in my current project - really enjoying it, would definitely recommend.
@brunodepaula9145
@brunodepaula9145 2 жыл бұрын
Hey man, great video! Quick question, what software/tool did you use to generate that schema visualisation at 0:33 seconds in the video? I was looking for a nice visualisation like that. Thanks!!
@zvshka9286
@zvshka9286 2 жыл бұрын
Prisma support generators, also for that visualization, just check documentation
@mingyangli9171
@mingyangli9171 2 жыл бұрын
Type npx prisma studio into your project command line (assume you've setup your project properly)
@hellogoodbye4894
@hellogoodbye4894 2 жыл бұрын
This entire channel is pure gold
@falxie_
@falxie_ 2 жыл бұрын
The first version of Prisma has some super rough patches, but the new Prisma seems like a huge step up
@temaelbouaazzaoui8709
@temaelbouaazzaoui8709 Жыл бұрын
I don't think it needs only 100sec, a full tutorial would be great !!
@nanonkay5669
@nanonkay5669 2 жыл бұрын
This orm is incredibly easy to learn and to wire up into your BE. I went from learning Sequelize to this and, my god, was this way easier to use
@bridgeburner100
@bridgeburner100 Жыл бұрын
yes please to the Prisma tutorial :D Working on my first real attempt at fullstack and I know I need to get in one of these.
@TheIQo
@TheIQo 2 жыл бұрын
yes sir, i would like to see full prisma tutorial in the future so i am letting you know in my comment. also thank you for your awesome videos. you da real MVP
@ProtonChicken
@ProtonChicken 2 жыл бұрын
Awesome, just started a bunch of school projects using Postgres!
@codingtise9187
@codingtise9187 2 жыл бұрын
Yes please!!! A tutorial on this would be awesome; a project which is small but really awesome👌🏽👌🏽👌🏽.
@Apollo1_
@Apollo1_ 2 жыл бұрын
just started learning prisma and damn its amazing
@kiv0x
@kiv0x 2 жыл бұрын
I've used prisma for a while, but a tutorial on how to properly use it with best practices would be great!
@thantyazarhein
@thantyazarhein 2 жыл бұрын
lol, my brother and i were discussing about should i use prisma instead of typeorm and this video pop up.
@itssNiraj
@itssNiraj 2 жыл бұрын
Born ready for this prisma tutorial😎🤩!!!
@poulette2937
@poulette2937 2 жыл бұрын
I was in the process of choosing a library for managing SQL data in a node project. Sequelize seemed like a very nice option but after seeing this I need to reconsider
@12pita3naru
@12pita3naru 2 жыл бұрын
I was trying to find something like this, thanks to cover it up in 100 seconds, hope to get a tutorial 😊
@pandasitt7417
@pandasitt7417 2 жыл бұрын
From my experience, an ORM (code first) is not a replacement for actually leaning SQL. You still should think relational, the code and migrations just add a layer of abstraction which makes that part harder and the DB schema messy. As soon as the migration gets a bit more complex, the ORM framework can't handle it, and it's back to SQL queries. Why not just lean MySQL, it's a good entry point?
@ameerashhab6721
@ameerashhab6721 2 жыл бұрын
Agreed. ORMs prevent people from learning SQL.
@salat_32
@salat_32 2 жыл бұрын
Absolutely agree. There is no point to try and distance yourself from sql
@StellaEFZ
@StellaEFZ 2 жыл бұрын
SQL is so fun and easy, it's almost literally english.
@chad404
@chad404 2 жыл бұрын
​@@salat_32 learning sql to understand which queries will run optimally and how to build a schema is important but that doesn't mean this kind of tool isn't useful for simple use cases like an online store. it looks like there's an sql cult in the replies.
@kaosce
@kaosce 2 жыл бұрын
Absolutly not. I learned SQL first but now I use the Django ORM professionally for 5 years and I have never needed to use raw SQL, even for complex queries or Postgre specific (like ST_* methods) ORMs should be seen as compiler and I dare you to outsmart C++ compilers and write binary yourself
@misaelpereira9679
@misaelpereira9679 2 жыл бұрын
This is Incredible! Please make a beyond 100 seconds!
@coob404
@coob404 2 жыл бұрын
Just a week ago I came across prisma and was looking into putting it into a project, good timing! And a beyond 100 seconds weeks be great!
@TeaBroski
@TeaBroski Жыл бұрын
There's only a bunch of people I watch the ads for, Fireship is one of them
@Rasecz
@Rasecz 2 жыл бұрын
Yes for the full tut. Had no idea Prisma was this deep. Would love to know if there are other tools like it too
@harveyaptx7356
@harveyaptx7356 2 жыл бұрын
Definitely go for the full tutorial. Rich content as always. 👌
@VietLe-rn2xi
@VietLe-rn2xi 2 жыл бұрын
Amazing! Would love to see a NextJS + Prisma + Supabase tutorial!
@andregn4483
@andregn4483 5 ай бұрын
That's much better than the actual official presentation by Prisma.
@chromek9812
@chromek9812 2 жыл бұрын
Ofc we want to see the full Prisma tutorial!
@Erik-rj5xz
@Erik-rj5xz 2 жыл бұрын
Nice video as always! Full tutorial pls!
@krush845
@krush845 2 жыл бұрын
A full-stack tutorial with prisma and nextjs would be greatly appreciated!
@imed-boumalek
@imed-boumalek 2 жыл бұрын
Was using it last week. It’s AWESOME 🔥
@chyys_goldenera
@chyys_goldenera 2 жыл бұрын
Nice video. Please make a full tutorial and demonstrate how to dockerize a prisma + postgres Nodejs project. Will be appreciated
@vishaldharmawat
@vishaldharmawat 2 жыл бұрын
Lovely video!! Full tutorial would be great!
Ruby in 100 Seconds
2:37
Fireship
Рет қаралды 869 М.
Learn Prisma In 60 Minutes
59:25
Web Dev Simplified
Рет қаралды 436 М.
1% vs 100% #beatbox #tiktok
01:10
BeatboxJCOP
Рет қаралды 67 МЛН
Каха и дочка
00:28
К-Media
Рет қаралды 3,4 МЛН
Une nouvelle voiture pour Noël 🥹
00:28
Nicocapone
Рет қаралды 9 МЛН
IL'HAN - Qalqam | Official Music Video
03:17
Ilhan Ihsanov
Рет қаралды 700 М.
Redis in 100 Seconds
2:26
Fireship
Рет қаралды 756 М.
The amazing, but unsettling future of technology...
9:10
Fireship
Рет қаралды 807 М.
Prisma - лучшая ORM для Node.js
23:45
PurpleSchool | Anton Larichev
Рет қаралды 33 М.
7 Database Paradigms
9:53
Fireship
Рет қаралды 1,6 МЛН
Migration Lesson: Don't Use Prisma | Prime Reacts
29:16
ThePrimeTime
Рет қаралды 164 М.
Is Drizzle Really Better Than Prisma?
20:15
Web Dev Simplified
Рет қаралды 91 М.
Abstraction Can Make Your Code Worse
5:13
CodeAesthetic
Рет қаралды 679 М.
I tried 8 different Postgres ORMs
9:46
Beyond Fireship
Рет қаралды 443 М.
JavaScript in 100 Seconds
2:36
Fireship
Рет қаралды 933 М.
1% vs 100% #beatbox #tiktok
01:10
BeatboxJCOP
Рет қаралды 67 МЛН