I fully agree with you on this. It's also very important to know when to use a specific tool or service and if there are a million options to choose from then you don't have the time to compare the pros and cons for all of them... In the end the decision you make probably won't even matter that much in your project since due to the flexible nature of SW you can still "make it work" somehow; the only ones who suffer in the end are the servers and end user apps doing needless additional calculations; all these mistakes add up (that's why browsers today take so much RAM just to display some picture/text and maybe a video or just play some music). This is the kind of meta-programming decisions that I hope AI will be able to help take and optimize in the future somehow because it's clear that people don't give a $hit and who can blame them when fast solutions/iterations is where the money is. /end rant :P
@@DesyncX I'll just say, interesting note on the AI. Oh, and I guess I'm reminded of tools that help you make those decisions and deal with the side effects of them like package size.
This aint new Node, Ruby, Python, Java, Php and .Net eco systems already have tons of code generators / db resolvers pre written for generic usage with DBAL in frameworks. The thing is they will only work out of box with 1-1 mapping, meaning you wanna keep entities / table names and resource name same? It's good, the problem becomes a challenging when you have things like async io, messaging and data aggregation involved in your logic, they are separate technologies on their own and requires specific learning curve. With more and more complex data and underlying systems not just being monotonous graphql can be a pain to implement when you are creating resolvers by yourself with such systems. That is the main usecase that it unifies different systems at large scale, where you have different kind of systems for different purposes and still they are able to talk at unified front. This adds burden on backend devs to implement resolvers for each and every usecase of the data / resources and becomes a huge task where you have very different kind of input data, storage data and output data abd then theres responsibility of keeping data consistant with processing systems. We already have plenty of Json based RESTful protocols and xml based protocols in past. The only appealing thing about graphql is it's ease of use since it's front end layers are designed for consumers. So yeah this is yet another fancy tool for tinkering till you get serious and make a system that handles real traffic and real usecase. You never wanna expose your db structure like these anyways and there's always other systems involved.
@@codeaperture Used to be a big fan of sequelize, until I tried out Prisma 2 one day and that was it... Never looked back since. I love sequelize but, sorry to say, Prisma 2 is simply better in every concievable way
I worked on Hasura and Postgraphile. One thing to note is if you are running Hasura on a existing db schema, it won't pickup roles and corresponding access privileges, you would have to define them via the dashboard. On the other had Postgraphile would, out of the box. Also Hasura pushes you more towards a microservice-y architecture as the core product isn't extensible. Postgraphile can be extended and things like sending an email can be done in a wrapper over the signup function. Maybe i am biased towards postgraphile because it is JS 😛
🎯 Key Takeaways for quick navigation: 00:43 *📹 The video is primarily in a language other than English.* 02:48 *🎥 The speaker mentions popular scenes and habits but it's unclear how it relates to the main topic.* Made with HARPA AI/
Awesome video... could you do another video where you go into a more detailed explanation on how to deploy hasura to some hosting like AWS,GCP and using it for real applications
Very interesting. Every time I see a video like this that’s informative and easy to digest there will always be a few dislikes and I can’t help but wonder about them. Even if I didn’t like the video I don’t think I’ve ever taken the time to dislike. I just click off and move on. I just can’t relate. 🤷♂️
This actually looks interesting. My only concern is having to use a web api for additional comfiguration. I take a pure infrastructure as code approach so that wouldnt work for me.
Hasura configuration in the web console is exportable as metadata files (hasura metadata export), so you can commit human-readable yaml files to your git repo. You can apply it to other server instances, similar to the db migration files.
as A full-stack developer half of me really loves graphQl while the other don't
Perfectly balanced.. as all things should be 😑
Dread it, run from it, destiny arrives all the same.
Reality is often dissapointing.
well you must love hasura ahah
Coded graphql for awhile now front and back, loved it before. Now its a pain.
Hasura's team is fantastic. They are from Bangalore
What Bangalore ? Wow we indians are stepping up the game
Well im not surprised
Have been to their office in Koramangala 😄
yep the founder is from IIT Madras
Kinda guessed it by the name, Asura means demon 👿 , I guess that's why that logo
Hasura is awesome, been using it since the early days.
Hasura vs typeorm what do you prefer?
As a new web dev I can honestly say I dont understand both
@@mohabedr5030 you are talking about different things... Hasura is api gateway, while typeorm is ORM wrapper around database for typescript...
Any drawbacks or problems/issues was encountered while using it?
@@mohabedr5030 Both are two different things and approach to a different problems.
A full tutorial would be great !
Whaaaa?!!!! I was today years old when I learned the perfect solution to my current problem. Ur awesome. Yes please to a full tutorial.
Hasura looks awesome! Please make a full tutorial!
500 code: ETERNAL server error
Lol, I know that feel, bro.
Who needs a database when you have google sheets
CSV is better
freak in the streets, google in the sheets 🤷♂️
Just store your information in notepad job done!
@@stephencooper8710 and save it as CSV an uninstall MS Office
who needs a database when you can have one big json file
I've been using HASURA for a few months not and I love it!
Yes please, do a full tutorial about Hasura !
There are millions of ways to simply things, sometimes I feel like that's also making things complicated. 😞
I fully agree with you on this. It's also very important to know when to use a specific tool or service and if there are a million options to choose from then you don't have the time to compare the pros and cons for all of them... In the end the decision you make probably won't even matter that much in your project since due to the flexible nature of SW you can still "make it work" somehow; the only ones who suffer in the end are the servers and end user apps doing needless additional calculations; all these mistakes add up (that's why browsers today take so much RAM just to display some picture/text and maybe a video or just play some music). This is the kind of meta-programming decisions that I hope AI will be able to help take and optimize in the future somehow because it's clear that people don't give a $hit and who can blame them when fast solutions/iterations is where the money is.
/end rant :P
@@DesyncX I'll just say, interesting note on the AI. Oh, and I guess I'm reminded of tools that help you make those decisions and deal with the side effects of them like package size.
@@DesyncX Love that view. Something I explain all day :)
I feel the same way bro
@@FS-yq9ef index.html and script.js in a folder is best i can do ok.
First heard of this framework. Thank! I'd love for a full tutorial video on this topic!
So they basically continued what Prisma 1 started
That's a good way to look at it
@@Fireship what do you think of prisma? Versus others such as Sequelize
Right, as did Prisma 2 haha
This aint new Node, Ruby, Python, Java, Php and .Net eco systems already have tons of code generators / db resolvers pre written for generic usage with DBAL in frameworks.
The thing is they will only work out of box with 1-1 mapping, meaning you wanna keep entities / table names and resource name same? It's good, the problem becomes a challenging when you have things like async io, messaging and data aggregation involved in your logic, they are separate technologies on their own and requires specific learning curve. With more and more complex data and underlying systems not just being monotonous graphql can be a pain to implement when you are creating resolvers by yourself with such systems. That is the main usecase that it unifies different systems at large scale, where you have different kind of systems for different purposes and still they are able to talk at unified front. This adds burden on backend devs to implement resolvers for each and every usecase of the data / resources and becomes a huge task where you have very different kind of input data, storage data and output data abd then theres responsibility of keeping data consistant with processing systems.
We already have plenty of Json based RESTful protocols and xml based protocols in past. The only appealing thing about graphql is it's ease of use since it's front end layers are designed for consumers.
So yeah this is yet another fancy tool for tinkering till you get serious and make a system that handles real traffic and real usecase. You never wanna expose your db structure like these anyways and there's always other systems involved.
@@codeaperture Used to be a big fan of sequelize, until I tried out Prisma 2 one day and that was it... Never looked back since. I love sequelize but, sorry to say, Prisma 2 is simply better in every concievable way
Definitely need a tutorial
Postgraphile also works pretty well.
Hasura roles with firebase auth/cognito would be some good content.
I have been using a combo of Hasura + firebase auth + functions and it's awesome !
Quitting caffeine does seems to work for Jeff. More videos are flowing ❤️
thank you so much to whoever procssed the audio on this video and put a de esser on it thank you
+1 vote for expanding Hasura to a FULL topic please!
Hasura does nested subscriptions...if you need a realtime app with a fairly complex data structure, surely hasura is the best thing out there.
Full tutorial on hasura! 🔥❤️❤️
Love the video! Love Hasura! Would Love A Tutorial!!! Keep up the awesome work!
Even on mute I can understand this video. Such a good visual explanation.
Hasura full course definitely 🙏
Hey man, Love your content. Can we have a video on Event Driven Architecture also how Async API is revolutionizing it. Thanks!
definitley looking forward to the full tutorial
What a revolution for my life , make a full tutorial
Yes, for Hasura full tutorial.
I did internship there when it was very small. Great team 🔥
Today what i can say is, hasura is just on another level.
Definitely full tutorial
Way out of my budget for now, but I'm keeping this on my radar.
You do know that Hasura is open source and you can host it yourself :)
Good intro to Hasura, please make full tutorial on Hasura with custom actions👍👌
Full tutorial will be awesome 💯💯
Look like advanced api gateway based on graphQL with neat features.
Yes Yes Yes a full tut pleaaaase !!! Awesome !!!
Interested to know more about this, expecting basic tutorial on this👍🏻👍🏻
I worked on Hasura and Postgraphile. One thing to note is if you are running Hasura on a existing db schema, it won't pickup roles and corresponding access privileges, you would have to define them via the dashboard. On the other had Postgraphile would, out of the box. Also Hasura pushes you more towards a microservice-y architecture as the core product isn't extensible. Postgraphile can be extended and things like sending an email can be done in a wrapper over the signup function. Maybe i am biased towards postgraphile because it is JS 😛
Wow you really made a hasura video. Happy to see the most exciting product on your channel after asking for it 6 videos ago :)
Hey Fireship, yes a full tutorial on this with Firebase as the Db would be a Great tutorial bro 😎
Awesome ,would like to watch a more detailed video on using Hasura
Hasura looks awesome
One of the most amazing pieces of technology out there. fucking period.
I would love to go deeper on this topic. I opened part of the majority in this one
as a backend. i love using hasura.
That was dope - ETERNAL SERVER ERROR! :P
Channel is golden
Sheesh!
Yeah I’d love to see more hashura vids
Please do a video on DGraph :)
Please do a longer session :)
yeah we want a full tutorial on Hasura
i used hasura on my homework once. super convinience
Awessome video 📸.
How about a more indepth video on hasura ??
Can't wait for full tutorial
Thank you for this
This is great! I would be interesting to see how feasible is the open source deployment if all features are included.
They have a docker-compose file that you can use. Just docker-compose up -d and visiting localhost:8080 will bring you to the console
Your content is class. 🔥🔥
Sounds pretty cool, thanks for sharing
Awesome, definitely need the full tutorial
Dude, what's your job? How could you keep up with the latest techs?
I'm guessing his job is to keep up with latest tech and teaching that stuff. 😄
Full tutorial let’s go!
Yes I want to see full tutorial
Very interesting! Make a full tutorial pls!
Great intro. I'd also like a full video!
A full tutorial with auth would be great
A full tutorial will help!
Will you do a Hasura course? 🔥
This would have saved me from several sleepless nights a few weeks back lmao
I'm following their own tutorial, but I'd love to see one of yours.
Yes to a full tutorial
Can you do one on Postgraphile next? Thank you!
Still waiting for GUN db full tutorial
Would love to see a full tutorial!!
🎯 Key Takeaways for quick navigation:
00:43 *📹 The video is primarily in a language other than English.*
02:48 *🎥 The speaker mentions popular scenes and habits but it's unclear how it relates to the main topic.*
Made with HARPA AI/
We would like a full tutorial on hasura..between hasura and strapi which one would you recomend
Pretty neat. TIme to see it in action from you!
waiting for full course on hasura
Hasura.. seems cool name
Yes please! Full tutorial!
The front-end devs can cry about it, but I will always write REST queries in Rust
Please make a detailed video on firebase data connect its new and we want to hear it from you.
Great overview. Definitely would love a tutorial with firebase auth or cognito ;)
Awesome video... could you do another video where you go into a more detailed explanation on how to deploy hasura to some hosting like AWS,GCP and using it for real applications
Yeah need full tutorial 😍
Very interesting. Every time I see a video like this that’s informative and easy to digest there will always be a few dislikes and I can’t help but wonder about them. Even if I didn’t like the video I don’t think I’ve ever taken the time to dislike. I just click off and move on. I just can’t relate. 🤷♂️
Always waiting for new vid!!
Hasura is amazing
hasura is a billion dollar startup now and it is an Indian startup
This actually looks interesting. My only concern is having to use a web api for additional comfiguration. I take a pure infrastructure as code approach so that wouldnt work for me.
Hasura configuration in the web console is exportable as metadata files (hasura metadata export), so you can commit human-readable yaml files to your git repo. You can apply it to other server instances, similar to the db migration files.
Man one day the webs gonna write itself
I would love a full tutorial.
Thanks for the video
is there something like this but for front-end ? great video thanks
This is my 1st time requesting an extension of a 100 seconds video on this incredible channel.
Surely we DEMAND a beyond 100 seconds one for Hasura!!
I'd love a full tutorial
Wow! It's awesome!!!
Just curious, do you have a specific site/online community that allows you to keep up with this stuff?
Hasura is Asura for their competitors😂
Full topic, please.