THank you! This was incredibly enlightening about what I should be studying for my personal project, cheers up from Argentina!
@learnwithwhiteboard4 ай бұрын
Glad it was helpful! And all the best for your project’s success! ✨❤️
@dr.ghulamrasool65779 ай бұрын
good explanations
@learnwithwhiteboard9 ай бұрын
Thanks for liking! I’ll try my best and share more such quality content ❤️👍
@vrushabhdahikar647410 ай бұрын
Thank you so much❤
@learnwithwhiteboard9 ай бұрын
Glad it was helpful!!
@pixorrapp8102 Жыл бұрын
Thanks!! Good video
@learnwithwhiteboard Жыл бұрын
My pleasure 😇
@anantproductions1121 Жыл бұрын
Thanks for sharing such a quality video. This gives brief of all software architecture patterns in software engineering so seamlessly, kudos to the good job. Can you do one explaining all SEO penalties in one video, along with their fixes? Thanks
@learnwithwhiteboard Жыл бұрын
Glad you enjoyed it!
@paramroopparmar35808 ай бұрын
amazing video
@learnwithwhiteboard5 ай бұрын
Glad you think so! ❤️👍
@rajeshshindeindiaАй бұрын
But how to practice this. If learning java programming one can write code in java. 😊. Here what to do. Draw rectangles circles
@srikantankckc13058 ай бұрын
Nice attempt.pls improve and share on data and control paths,mem controls,bios interfacing,service calls structure ,library,buffers, compiler executable interfacing and BSP in your model pic.may be i am motivated student interested to see more feom you🙏
@Abdullah_khan3333 ай бұрын
where is microservices, clean/onior architechture etc
@recruitingmanager27 Жыл бұрын
🤩🤩🤩
@basicaf14843 ай бұрын
You should heavily consider using "Parent-Child Layer" instead of the term you used for your explanation in the number three pattern
@learnwithwhiteboard3 ай бұрын
Gotcha! Feedback taken, will account for this in future uploads
@Gameplay_fusion8 Жыл бұрын
❤
@BandarAlutaibi Жыл бұрын
Django is not MVC hahaha
@learnwithwhiteboard Жыл бұрын
Django is often described as following the Model-View-Controller (MVC) architectural pattern, but it actually uses a slightly different architectural pattern known as Model-View-Controller-Template (MVCT). In Django: Model: This is where you define your data models, which represent the structure of your database tables. Models in Django follow the "M" in the MVC pattern. They handle data-related logic and interact with the database. 1. View: In Django, the "V" in MVC is represented by the views. Views are responsible for processing HTTP requests, handling business logic, and returning HTTP responses. They act as a bridge between the model and the template. 2. Controller: Django's URL routing and the view functions can be considered together as the "C" in MVC. The URL routing maps URLs to view functions, and the view functions handle the logic and orchestration. While Django uses the term "view" instead of "controller," the role is conceptually similar. 3. Template: Django templates are used for generating HTML or other markup to be sent as a response to the client. Templates are responsible for the presentation layer and can be considered the "T" in MVCT. So, Django's architecture is a variation of the MVC pattern, with templates specifically designated for handling the presentation layer. This variation makes it more suitable for web development and adheres to the "Don't Repeat Yourself" (DRY) and "Convention Over Configuration" principles, which are core principles of Django's design philosophy. Hope this helps!