Sanjit Gawadesanjit.hashnode.dev·Nov 18, 2024Understanding MVC: A Simple Introduction to Software ArchitectureWhen building applications, maintaining a clean, modular, and scalable architecture is key to long-term success. The Model-View-Controller (MVC) pattern is one of the most widely used architectural patterns, providing a clear separation of concerns a...Discussmvc
Dave PoirierProblog.encoded.life·Nov 14, 2024Massive View Controllers and SwiftUICommenting on this post on LinkedIn: https://www.linkedin.com/posts/jacobmartinbartlett_the-biggest-problem-with-swiftui-is-that-activity-7261769674034409472-qGVe?utm_source=share&utm_medium=member_desktop I replied with: *The "Massive View Controll...Discuss·95 readsSwiftUI
Somsubhro Chakrabortysomsubhrochakraborty.hashnode.dev·Nov 13, 2024MVC ModelThe MVC model is employed in the web development, desktop applications and Mobile applications to break the code base in such a way that it becomes easier to manage, modulated and easier to maintain. The MVC stands for Model View Controller Where and...DiscussMVC architecture
Hugo Tavareshugotav.hashnode.dev·Nov 5, 2024MVC: The Superhero Trio of Web DevelopmentWhen building web apps, the MVC (Model-View-Controller) pattern provides a structured approach that enhances manageability, scalability, and collaboration. Models handle data, Views display information, and Controllers manage interactions, making dev...Discussmvc
Pranav Kumbhargeeek.hashnode.dev·Oct 22, 2024Decoding MVC Architecture : Blueprint for Streamlined Software DevelopmentMVC stands for Model-View-Controller and is a software architecture pattern commonly used to develop software applications. Although originally designed for desktop computing, MVC has been widely adopted as a design for World Wide Web applications in...DiscussMVC architecture
Aman jaindevnook.hashnode.dev·Oct 20, 2024Simplify Dynamic View Creation in Laravel 11 with Blade TemplatingPicture this: You're developing a web application, and suddenly, you are drowning in a sea of PHP echo statements and HTML tags. Sound familiar? Dont Worry! Laravel's Views and Blade templating system are here to rescue you from this chaos and enhanc...DiscussLaravel Serieslaravel view
Utkarsh MeshramforLearning in Public Beginslearning-in-public-begins.hashnode.dev·Oct 12, 2024The Evolution of My Quiz Web ApplicationLearning in Public: The Evolution of My Quiz Web Application Hey everyone! I’m back with another update on my quiz web application journey. 🚀 If you've been following along, you know the goal is to build a platform that helps students prepare for th...Discuss#Project from scratch
Daim Zahoordevdaim.hashnode.dev·Sep 22, 2024Easy way to setup Express-Mongo Node ServerPrerequisites Node.js And Npm should be installed. Setup I wrote a cli module which on executing will provide MVC structured setup of Express Server with integration of MongoDB and also basic authentication using JWT. Firstly will start from using...Discuss·15 likesExpress.js
Thirdy Gayaressoftware-engineer.thirdygayares.com·Sep 10, 2024Simple Project Structure for an Enrollment System Using MVC in JavaScriptIn this post, we will explore how to set up a clear and organized folder structure for an enrollment system using the MVC (Model-View-Controller) pattern in simple JavaScript. By keeping the code well-structured, you can manage students, courses, and...Discussjavascript file structure
Thirdy Gayaressoftware-engineer.thirdygayares.com·Sep 10, 2024MVC (Model-View-Controller) vs MVVM (Model-View-ViewModel)MVC (Model-View-Controller) Model: This is where your data lives. It’s the part of your app that handles things like saving, updating, or loading information. View: This is what the user sees. It shows the data from the Model on the screen. Contro...DiscussMVVM