Javascript Bar Charts with ChartJS
8:22
Пікірлер
@bravehub
@bravehub 15 күн бұрын
I love your content! Since it's under the Creative Commons Attribution license, I've uploaded some of your videos to my KZfaq channel. Thank you! www.youtube.com/@bravehub
@robertkinney8241
@robertkinney8241 15 күн бұрын
How to have the page refresh itself?
@shardulvanage5446
@shardulvanage5446 23 күн бұрын
can you push this code to github
@ZeroTrunks
@ZeroTrunks 26 күн бұрын
I am glad I found your channel, that was awesome! Does useEffect not have the same performance issues as useState?
@apokalupsis116
@apokalupsis116 Ай бұрын
Hope Raven is OK he hasn't made a commit since December 2023
@tejasvmaheshwari5658
@tejasvmaheshwari5658 Ай бұрын
Thanks for this tutorial it was really really helpful
@aV5d9nlUBQ9
@aV5d9nlUBQ9 Ай бұрын
Proved to be useful. Thanks!
@sinki3322
@sinki3322 2 ай бұрын
I don't even know where to start to thank you. You have just unstuck me from the problem I was trying to fix for the past weeks without receiving any help. You have just allowed me to pass my final exam I've been struggling on so much, and finish my studies. You have just allowed me to get my diploma and start looking for a job. I will never be able to thank you enough. Crazy how people accross the world can literally change your life. Thank you for explaning so well, taking the time and walking us through this. Thank you!
@Innesb
@Innesb 2 ай бұрын
SMTP2GO is another good option for smtp server. 1,000 emails per month for free and then very reasonable pricing beyond that.
@billionaireempire3852
@billionaireempire3852 2 ай бұрын
Thank you brother. Exactly what I needed
@chriskeo392
@chriskeo392 2 ай бұрын
My guy. You are meant to teach Respect 100 Looking forward to advanced flask htmx series Or fastapi htmx series
@adeebkhanpathan6854
@adeebkhanpathan6854 3 ай бұрын
thanks a lot i got help from your tutorial
@martinesche6749
@martinesche6749 3 ай бұрын
Simple, quick, working: only 1 out of 100 youtube tutorials are like this! Thanks!!!
@malcomk
@malcomk 3 ай бұрын
16:15 the webpage shows "404 Not found" when I go to "/posts". Any idea...? Seems like the folder's name become a part of url on his instruction but not on my codes. Is it because I am using windows computer..?
@ThanhNguyen-ho7yo
@ThanhNguyen-ho7yo 3 ай бұрын
very clear!
@Titan-ey2wj
@Titan-ey2wj 3 ай бұрын
Great video, thank you. After finishing this tutorial, everything works fine. However, I noticed that you forgot something: when clicking on the comment icon and navigating to the post's comments, if you delete the post on that page, it becomes blank because the page depends on the post ID, which has been deleted. Do you have any solutions for this issue?
@DanielJoshua-ck3ui
@DanielJoshua-ck3ui 3 ай бұрын
Is it responsive for Al screen?
@jhonygrillo
@jhonygrillo 3 ай бұрын
Bro, your explanations are really awesome, its a shame you stopped 😢
@chris7263
@chris7263 3 ай бұрын
There are great, man, what a public service.
@64revolt
@64revolt 4 ай бұрын
To make the consol logs bigger (on brave at the least), open the dev-tools and then zoom using ctrl+ :) Also, awesome tutorial :D
@mi-oi7zv
@mi-oi7zv 4 ай бұрын
спасибо брат, помог
@SalomatQalb
@SalomatQalb 4 ай бұрын
react-supabase is not working. That's the issue with adding all kinds of dependencies to make it easy. They stop maintaining it and your updated code won't work.
@TheRolldone
@TheRolldone 4 ай бұрын
i read article about 7 top react state management. and jotai is easy to learn.
@thivankawaduge509
@thivankawaduge509 4 ай бұрын
Thank you so much for save my time. I have been searching this for complete an assignment.
@devzaks8912
@devzaks8912 4 ай бұрын
the whole thing is in client component? 🙄 We'll appreciate so much more if we can get a server component technique. Thta's the point of app router
@isagive
@isagive 4 ай бұрын
תודה רבה, הסבר מועיל מאוד ❤️👍
@parmetra
@parmetra 4 ай бұрын
Thanks for the review! Everything is very well explained. But I still have one question: what is the difference between Jotai and Zustand, and also in which case should one or the other be used?
@aman4069
@aman4069 4 ай бұрын
i think you forgot to put the post validation
@teprox7690
@teprox7690 4 күн бұрын
the validation was the only that I want to see 🤣and it never comes. But very nice Tutorial! ❤❤❤
@gigxr
@gigxr 4 ай бұрын
whoever encounters error "Uncaught (in promise) FirebaseError: Missing or insufficient permissions." 1. go to rules in Cloud Firestore 2. in "allow read, write: false" , replace it to allow read, write: if request.auth != null;
@TechDesignWithMJ
@TechDesignWithMJ 4 ай бұрын
Can you make the demo for password reset as well
@viggoskitchen3155
@viggoskitchen3155 5 ай бұрын
Right on mate - you're like the only React + Pocketbase tutorial out there! Much love, thanks.
@Raghunadh9
@Raghunadh9 5 ай бұрын
Thank you sir
@alexandrgidrevich986
@alexandrgidrevich986 5 ай бұрын
First 50 mins - very good presented and logically sound tutorial. Last 30 mins tutorial feels rushed and become hard to follow. Ganbatte Kudasai!
@alexandrgidrevich986
@alexandrgidrevich986 5 ай бұрын
Error with DB import: File "/home/**/flasky/server.py", line 2, in <module> from .db import sample_db ImportError: attempted relative import with no known parent package
@alexandrgidrevich986
@alexandrgidrevich986 5 ай бұрын
Solution: import sys sys.path.append("/home/**/flasky/") from db import sample_db
@gintokisakata9148
@gintokisakata9148 4 ай бұрын
@@alexandrgidrevich986Thank You so much for this ! I ran into the same issue... your solution worked😊
@gintokisakata9148
@gintokisakata9148 4 ай бұрын
Also for anyone using windows, point sys.path to the root folder where db is saved for example db was in folder crud-htmx-flask, so import sys sys.path.append("C:\crud-htmx-flask") from db import sample_db
@KodyWright-od2tb
@KodyWright-od2tb 5 ай бұрын
You are a game changer!
@ErnestoConfused
@ErnestoConfused 5 ай бұрын
you look like you've got impeccable taste in anime
@faisalshaikh7994
@faisalshaikh7994 5 ай бұрын
This helped me even after 2 years of uploading. Great work, you guys are real heros
@mychromebook9935
@mychromebook9935 5 ай бұрын
The best tutorial i've seen using flask + htmx. Thank you
@anarmammadhasanov7987
@anarmammadhasanov7987 5 ай бұрын
amazing, thanks a lot for lessons
@ALex-ts1gu
@ALex-ts1gu 5 ай бұрын
Thank you for the videos about Pocketbase. Can you also make a video about self hosting on a static server please. And also highlight security aspects. Thank you so much.
@Strategic.
@Strategic. 5 ай бұрын
I have a problem when I navigate through different pages, the profileImageSrc state gets set to the default picture for a little bit till the actual one gets loaded, it's feeling weird how can I fix it
@alaqmar6534
@alaqmar6534 5 ай бұрын
Simple and straight to point, Thanks 👍
@williamhunt5440
@williamhunt5440 5 ай бұрын
Great tutorial, really appreciate it. Was able to learn how to build an online marketplace app for a cohort project, which helped me just land my first CS job at a local startup making a mobile marketplace app. Much thanks and wish you all the best!!
@Mullheimer
@Mullheimer 6 ай бұрын
Been struggling with this. You explained it so well. Thanks!
@koniakara
@koniakara 6 ай бұрын
Great explanation, really helped me take on new projects!
@angladephil
@angladephil 6 ай бұрын
A nice "toy" DBMS for learning/prototyping ... but not for production. Thx for these tutorials.
@babatundetaiwo5184
@babatundetaiwo5184 6 ай бұрын
Fantastic video. This video helped a really big project I am working on. I appreciate it
@techTalks-FullStack
@techTalks-FullStack 6 ай бұрын
Thanks a lot man, it was really helpful❤
@marcosissler
@marcosissler 6 ай бұрын
Tks James! Was a nice project. What you think about Svelte and HTMX? I was studying and in love with Svelte but now I saw a lot of people talking about HTMX. I am not sure if study HTMX now for some nice basic website solutions. I am a Golang Backend Developer. Cheers.
@hooho491
@hooho491 6 ай бұрын
this is my first time learning firebase, you explained everything very well, thank you so much!