Posts

Showing posts from December, 2023

C# backend framework

  Beginner Level: Introduction to ASP.NET Core: Understand the basics of ASP.NET Core. Explore the new features and improvements compared to traditional ASP.NET. C# Language Basics: Variables, data types, and operators. Control flow (if statements, loops). Functions and methods. Entity Framework Core: Basic understanding of working with databases in ASP.NET Core. Code-first migrations. RESTful APIs with ASP.NET Core: Create simple API endpoints. Learn about HTTP methods and status codes. Dependency Injection: Understand and use the built-in dependency injection system. Intermediate Level: ASP.NET Core MVC: Deep dive into the Model-View-Controller (MVC) pattern. Explore controllers, views, and models in-depth. Routing and attribute-based routing. Advanced Entity Framework Core: Relationships between entities. Query optimization and performance considerations. Middleware and Pipeline Customization: Work with middleware components. Customize the request and response pipeline. Authenti...

GUIDE TO COMPETITIVE PROGRAMMING: -by Striver (Software Engineer(Media.net), ex-Amazon, Candidate Master, 6*, Educator at Unacademy)

It's advice to switch to CPP to avoid TLE issues at Codeforces and some platforms.. Learn C++ STL from codeverse or takeUforward channel .. Follow CP sheet for practice problems: CP SHEET: https://bit.ly/tuf_CPList SDE SHEET: https://bit.ly/takeUforward_SDE   1.Pattern printing problems (Sourabh Shukla Videos on Youtube) 2.time complexity analysis (Don’t stress to much, keep participating in contests, you will keep learning)  3.linear search and circular array representation (any article, no need to practice)  4.palindrome and other numbers(perfect, Armstrong) for basic number problems  5.Simple Hashing Problem(frequency counting and stuffs)  6.Prefix Sum Problems(1D and 2D) {CP Sheet has problems}  7.Sliding window technique(CP Sheet has problems) -----------------------------------------------------------------------------------------------------------  Basics of number theory  1.Binary Search (TakeUforward Playlist and CP Sheet practice prob...