Learn Code Today
Frequently asked questions When learning to code
Is the Tech Industry Really Oversaturated for Junior Developers? Rambles, Reflections and Truth Read
Will Learning Code make you rich? Salary expectations and more Read
Can You Learn to Code Without a College Degree? Read
How Long Does It Take To Learn How To Code? Read
Is learning to code hard? Yes it is (sometimes) Read
The mindset and habits that helped me learn to code and successfully change my career
I’d like to share the story of how I pivoted my life path towards coding. This post is written from my unique perspective with the vain hope that someone equally as ambitious but as helpless as I was, might leave this page having received some encouragement.
Dependency injection and configuration of an ASP.NET CORE 3.x console app
Dependency Injection is an increasingly popular and prominent design pattern in modern application development.
ASP.NET Core 3.x is platformed on top of the generic host. A versatile object that let's us encapsulates an app's resources at start up and configure dependency injection.
I'm going to share how I configured my generic host with a bare-bones approach you can adapt. It implements logging, autofac and is configurable with appsettings.json.
Logging in .NET CORE 3, a useful guide and walkthrough for C# beginners and experts alike
This beginner-oritented article explores the built-in logging framework introduced in ASP.NET Core. Microsoft have seriously improved its built-in logging functionality and there are plenty of new features to get your teeth into.
What the heck is OWIN for .NET? An indepth look at OWIN for beginners with code examples.
OWIN is a .NET standard for writing web middleware. I had no idea what it was either until I researched and wrote this article for those beginners who find themselves in a similar situation of bafflement.
How to use $.ajax(). A complete guide with code examples and extra tricks
AJAX stands for Asynchronous JavaScript and XM.
The primary role of Ajax is to handle data asynchronously between a web application and server.
Let's take a look at what's under the hood here!