The quality of your content knows no bound. We appreciate you Sir
@helixaros8 ай бұрын
100% the default channel for Django videos
@bugbytes39237 ай бұрын
Thanks a lot - really appreciate it!
@erchenstein8 ай бұрын
Just wanted to say thanks for your videos, they really helped me in a project im working on recently. Really solid! Already got an idea how to apply that to model.
@bugbytes39237 ай бұрын
Glad to hear that, thanks a lot for sharing and for the support!
@priyanshvatsal97915 ай бұрын
Precious content. Loved the playlist
@bugbytes39235 ай бұрын
Thanks a lot, glad to hear that!
@CloudeTech8 ай бұрын
I thank you so much. After watching your django tutorial, I decided to make my final year project.
@bugbytes39237 ай бұрын
Thank you - good luck with it!
@JakobKobberholm8 ай бұрын
Thank you for this. I use Django regularly and hadn't noticed this new field. Just a tip, `sqlmigrate` doesn't require the full migration name, the number is sufficient. In your case, `sqlmigrate core 0014`would do it. And since you are in the terminal anyway, it might be easier to get the migration name with the command `showmigrations core`instead of looking up the migrations file to copy+paste.
@Yarkanlaki8 ай бұрын
This is very useful. No money property and annotation needed
@bugbytes39237 ай бұрын
Thanks!
@kushalpy8 ай бұрын
Best content❤❤
@bugbytes39237 ай бұрын
Thanks!
@fidelischukwunyere31428 ай бұрын
Great job👍
@bugbytes39237 ай бұрын
Thanks!
@kimuyu8 ай бұрын
@property functions and save() method override will have their uses, but many common uses will be usurped by GeneratedField(). Thanks again for an excellent video. Well explained.
@bugbytes39237 ай бұрын
Thanks a lot for the comment, totally agree!
@repotranstech8 ай бұрын
Cool video as always.
@bugbytes39237 ай бұрын
Thanks a lot!
@sudeepadhikari45135 ай бұрын
Thankyou. Please also explain geodjango.
@Peterstavrou7 ай бұрын
Very handy! Thanks!
@bugbytes39236 ай бұрын
Thanks a lot Peter!
@ranggatohjaya6 ай бұрын
Thanks for sharing
@bugbytes39236 ай бұрын
Thanks for watching!
@aminzahedsadeghi49958 ай бұрын
Awesome ! Please create a video about multi database in Django, it's a rare concept in Django.
@bugbytes39237 ай бұрын
Thank you! Good idea, will try and prepare this soon!
@AbdulhameedAlhofufy3 ай бұрын
I really like your accent❤️
@bugbytes39233 ай бұрын
Haha thanks a lot!
@serychristianrenaud8 ай бұрын
Thanks.
@bugbytes39237 ай бұрын
Thanks for watching!
@leamon90242 ай бұрын
Awesome! Thanks for sharing. Could you also make videos about asynchronous ORM and view in django?
@bugbytes39232 ай бұрын
Thanks! I'd like to do some videos on that, for sure - hopefully soon.
@mustafadundarcelebi19747 ай бұрын
It was very helpful tutorial series Keep it up. I wanted to ask what extensions for VS Code have installed. if it is possible if you would let us know. Best regards Celebi
@bonemanx17 ай бұрын
Is it a good idea to delegate this to the database? Every app I've worked on the DB is the bottleneck. Is it not better to leave the DB to write and save only and have all of the functions and logic executed by the application?
@bugbytes39237 ай бұрын
I think the bottleneck would typically be in table joins, lack of indexes, etc. Just delegating a calculation alone (especially if it's stored) shouldn't affect performance too much (I don't think). The database itself may process a set of calculations more efficiently than pulling the data out and doing it in Python, too. There may be other observations and scenarios where this doesn't apply though.
@alvarofigueroa4693Ай бұрын
@@bugbytes3923 I would add that this is one of the reasons database engines have stored procedures and views built in, so they can calculate these very easily, and probably faster than doing it on code. Great video btw…cheers
@aashayamballi8 ай бұрын
thank you!!
@bugbytes39237 ай бұрын
Thanks a lot!
@haykdavtyan57347 ай бұрын
When generating a fixture, we need to specify the generated field as well ? Seems like when trying to load a fixture without this field fails
@bugbytes39237 ай бұрын
That's a good question - I'm not sure, but I would not have thought you'd need to specify that. But if someone knows the answer, drop it here!
@ahmedaz69177 ай бұрын
how fix low req I install Django and postgresql on aapanel server 4 CPU rum 8 but when test max Request number: 100 Return number: 23 QPS: 7 Traffic: 848KB per second
@kushalpy7 ай бұрын
Hello Big brother love you content. Please upload more on FastAPI