Skip to main content

Best E-learning Tech sites

Few are some awesome sites to begin coding 


  • https://www.w3schools.com/   - W3Schools
    • If you ever tried coding at-least once , I am sure you are aware of this website. This is the go-to website for all the beginners there. It has learning options for may programming languages like C#, Python. You can also learn DBMS like SQL and also Javascript framework like Jquery and Bootstrap. Moreover, it also has 'Try it Yourself' section.
  • https://mva.microsoft.com/ - Microsoft Virtual Academy
    • This is my personal favorite. I started to learn coding while I was in college. I started to love coding after I took my first lesson on this website. It is official Microsoft certification e learning hub. Why don't you give it a try?
  • https://www.codecademy.com/ - Code Academy
    • This website helps realizing your learning curve by defining learning path for a particular course. Also you practice while you code with the help of the websites training section.
  • https://www.udemy.com - Udemy
    • The courses on this website but you can also find some cool free courses that helps you kick start your binge on new programming subject
  • https://www.c-sharpcorner.com/ - C# corner
    • I got inspiration to start this blog from this one. It has 1000s of developers who contribute their knowledge and help us understand the concept in depth.
  • https://www.dofactory.com/ - Dofactory for learning design patterns
    • I always find software design patterns and architect very tricky. But this site helped me not only to understand these patterns but also use them.
  • https://plugins.jquery.com/ - Jquery plugins
    • You will find the best jquery plugins to reuse in your project. Also if you view the .js files in these plugins, you will master jquery development in a short period of time.
  • https://msdn.microsoft.com - MSDN
    • The official developer's network of Microsoft . Any Developer. Any App. Any Platform. Enough Said !!!!
  • https://www.tutorialspoint.com - Tutorial's point
    • It is similar to c#.com . Except it has got other wide variety of programming languages tutorials to learn from. It give concept wise learning.
  • https://sqlzoo.net/ - Heaven for SQL newbies
    • If you are new to SQL and want to learn Sql and also practice Sql queries, then this site is a definite one. You should give it a try.
  • https://www.dotnetcurry.com/ - The ultimate .net magazine.
    • This is a .net learning platform. However you should especially subscribe to its magazine to stay updated on the latest on goings in the tech world

Will be back with some more good learning sites. Till then CIAO🙋


Comments

Popular posts from this blog

C# Types

C# Types Guys please find below the diagram of type system in C# Please comment if you need the explanation of the Type system in details with easy examples. Click to view larger size

Difference between .NET Framework & .NET Core

 Microsoft released .NET Framework 1.0 as its software framework for Windows platform. Since then it has been continuously updating it to meet the technological advancements. In June 2017, Microsoft redefined the core architecture of .NET Framework to simplify development, testing and deployment. The company released .NET core 1.0 along with ASP .NET Core 1.0 with Entity Framework. .NET Core does have some learning curve in it.     As of Oct 2020, the latest version of .NET Framework is 4.7. Microsoft is unlikely to release new versions of this framework in the future. The latest version of .NET Core is 3.0 Understanding the major differences between the 2 platforms: Open Source -               .NET Framework was released as a licensed and proprietary framework. But the company has released .NET Core as open source framework. Hence individuals can build apps on .NET Core without paying any license fees. Cross Platform -  ...

Singleton Design Pattern

  What is Singleton design pattern?     Of the Gang of Four design patterns, Singleton is the Creational design pattern used while creation of the object of the class. The creational design pattern is a technique to ensure that there is strictly only one instance of a particular class in your program. Why Singleton?     Suppose that your classes are using external resources like a database server, or a web Api  etc, it would be a real problem if multiple objects try to use those resources at the same time. In such cases, singleton design pattern can help in overcoming the drawback in the above scenarios. Real world example with code     Suppose your program need to log the changes made in some data into a log file. Generally, in absence of the pattern, multip le objects may try to access the same log file which could create conflict. With a singleton log class object, you don't need to worry about several different objects trying to access the sa...