A lot has changed in Bootstrap 5 over Bootstrap 4. Here is the list of major differences you need to keep in mind when updating your old projects that are built with Bootstrap 4 or earlier. If you are starting a new project with Bootstrap 5 or are using Bootstrap templates, keeping these changes in […]
“Manners are a sensitive awareness of the feelings of others. If you have that awareness, you have good manners, no matter what fork you use.” —Emily Post— Have you ever, Held the door for somebody even if you are in rush? Paid a compliment to a colleague who is not a part of your team? […]
Hello Everyone, Hope you are good. My heartfelt wishes for you all as we begin the 75th year of Independence. I feel so grateful to all the freedom fighters who ensured that we could enjoy this freedom. I also feel deepest thanks & love for all the Indians who fight every day to ensure that this […]
Before We understand Orleans We need to take a look at normal Scalable Applications. Below is the Diagram that shows it Scalability refers to an application’s capacity or ability to grow with demand without degrading performance or disrupting the user experience. When you have a scalable application, you can add more resources when needed, which […]
Recently, I was forced to think that what kind of Leadership Style is suitable to our organization’s culture. The answer I kept coming to was Servant Leadership. I wrote that as an answer to many of my colleagues. What I missed though was, defining it in more detail. In my understanding, it’s pretty clear, the […]
In a recent event, we promoted a few of our team members to Leaders. The titles were changed, roles & responsibilities were modified, KPAs were defined; but I still felt something was missing. What kept me awake was the thought that what is a leader? Also, can we keep our Leaders bounded in a definition […]
Software Development is one of the top career choices in the world at this moment. I speak to many people who aspire to be a Software Developer, but they aren’t sure about the skills they need, to be a good Software Developer. I will write what you should start learning, but in this write-up I […]
.NET 5, C# 9.0 (and many more features) is released now. Like always, its the time we go through the new handy features that came with the latest version. In this blog, the focus will be on C# 9.0 only. I will write another one with .NET 5 features. Immutable properties with ” init ” […]
What is Dependency? A dependency is an object that another object depends upon. For example; public class EmployeeController : ControllerBase{IEmployee _employee = new EmployeeImplementor();//business logic} In the above example, the class EmployeeController directly depends upon class EmployeeImplementor, so EmployeeImplementor is the dependency of class EmployeeController. What Is Dependency Injection Dependency Injection is a programming technique that […]
.Net Core is a platform which is independent, modular and open source version of .Net framework. It is a complete re-write of .Net Framework with new CLR, Base Class Libraries for developing cross platform and cloud optimized applications. It is a modular framework meaning developers can include only required packages to build their applications. All […]