AMAryan Mehtainaryanmehta.hashnode.dev路Mar 6, 2025 路 2 min readMongoDB 101 - Part 1馃搶 Step 1: Install MongoDB 馃敼 Install MongoDB Locally Download MongoDB from MongoDB Official Site. Install it and start the MongoDB service: On Windows: Run mongod in Command Prompt. On Mac/Linux: brew services start mongodb-community Ope...00
AMAryan Mehtainaryanmehta.hashnode.dev路Feb 23, 2025 路 1 min readDifference between MVC and Web APIMVC (Basic Definition) MVC is used for building web apps with UI views. It follows MVC pattern which help in separation of concerns Web API (Basic Definition) Web API is used to build the Restful API Services that allow communication between applicat...00
AMAryan Mehtainaryanmehta.hashnode.dev路Feb 22, 2025 路 2 min readDifference between Stateless and Stateful SystemsStateless System The stateless system is a system that does not retain any information from the previous requests. This means that the system is reliable since there is no interconnection between the two requests. Main Points to Remember: It does no...00
AMAryan Mehtainaryanmehta.hashnode.dev路Jan 17, 2025 路 4 min readMastering Core CSS ConceptsCSS (Cascading Style Sheets) is a cornerstone technology used to style and layout web pages. It controls the visual presentation of HTML elements, offering numerous techniques to achieve responsive and visually appealing designs. In this blog, we'll ...00
AMAryan Mehtainaryanmehta.hashnode.dev路Jan 7, 2025 路 4 min readDesign Patterns in C#Design patterns are proven solutions to recurring problems in software design. Here, we鈥檒l explore Adapter, Facade, Factory, Observer, Singleton, and Builder patterns, with explanations and examples in C#. 1. Adapter Pattern Purpose: Allows incompat...00