Skip to main content

Code to live ! Live to code !

One more tech site to add up the pile ?


Every time I wanted to learn something or moreover understand the actual concept and reasoning of code, I surfed up like 100 websites to really understand why and what of logic . I ended up in the web to search engine keywords like 'C# reflection for dummies',  'Dependency Injection explanation to child', 'Design pattern example for newbie' etc.

          Learn to code perfectly is really not a child's play. You need self motivation and continuous learning to keep up your interest as well as umm...your Job . I always wondered if there was one site that really and in really really simplest way could solve my doubts. If for a concept i search 5 or more websites, in each of them i learn something which is did not understood previously. I really wanted to take notes from all of these sites and combine them to make a concept in truly readable and amateur format. This blog seemed to be perfect way to start.

Why HumanLikeCode ??

Well. When I read certain books , i really feel that those are written by gods of some other dimension for Gods sake literally. No offense they are great in their own relative terms and I am sure experts and experienced people will second that. But may be I am a moderate person with moderate level of brain to understand the coding concept easily that is why I want to learn something from everything and put it together somewhere for more people like me to understand.
    I wish I will be able to someday transfer more Human Like code and explanation of it in feeble language for naive people like me. 💭💭💭💭 

Till then Hakunnah Matata !!!!

           

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 -  ...