Posts

15 ways to keep your team motivated while working remotely ?

Image
Remote teams is a new trend after the Coronavirus pandemic and it changed how the world sees the Work from Home option. Its not only safe but also a cost effective measure which most of the companies are taking. Thus, many companies like salesforce and twitter has already made it as a company policy and option to go office for work. Handling a team is not everyone's cup of tea. It is even more tougher while a team is working remotely. So, here are few ways that make it easy for you to connect with your team efficiently and help you to have a engaged and motivated team.  15 ways to motivate your team while working remotely -  1. Practice Emotional Intelligence 2. Empathize with people 3. Remember the old time which you spent in office and rejoice those moments. 4. Talk about things other than office work. 5. Appreciate people and show gratitude. 6. Help them to solve their problems. 7. Motivate them to do things which they like other than office work 8. Be with them if they nee...

HttpClientFactory Implementation in MVC specifically in non .Net Core Projects ?

Using of HttpClient is .Net is quite common. Most of the developers do it un-intentionally even without knowing its consequences. Once your product went too productions and Users start using it, Boom...! the maintenance or devops guys will be in trouble due to the Port exhaustion Issue . If your application is on Cloud, it will cost you so much as resources consumption is more and not only that it will directly affect the performance of your application. Aaaaah...! One small thing can create such major issues and yes don't forget the escalation from your client. So, What's the Solution...! Bingo the one which bring you on this blog, the implementation of HttpClientFactory instead of HttpClient. Using DI, HttpClientFactory will only create a single instance and use the same while calling any API unlikely the HttpClient and thus solving your major problems in few seconds.  It's quite easy when it comes to .Net Core, you have to just add one Library and it starts working. But ...

Difference between NUnit and Xunit & which one is better...?

Difference between NUnit and XUnit & which one is better...?  Features of nUnit -  Is around from 2002 and its widely used by .Net community Well documented Isolation level during execution is per test class NUnit runs all of the tests in the same Class using the same class instance. A new instance of the test class is created and then runs all of the tests method from the same class instance There are TestFixture [Setup] and [Teardown] attributes. Ability to include parameters in your tests Less extensible Less TDD Adherent. One can share fields or properties. Features of xUnit -  Modern and trending in .Net Community  Sufficient documentation is available. Isolation level during execution is per test method. XUnit starts a new instance of the test class for very each of the test methods which improves test isolation. As test methods run in separate test class instances in isolation, it also increases the level of parallelism. There are no [Setup] and [Teardown]...

Angular Interview Questions for Freshers and Experienced Developers

Full Stack Developer Interview Questions - For C#, .Net, .Net Core, Interview Questions, Click here...! Angular interview questions for fresher and experienced developer 1.  Difference between Angular 2, 6, 7, 8, 9, 10 Angular 2 : Introduction of the complete rewrite with TypeScript, faster change detection, and dependency injection. Angular 6 : Addition of Angular Elements, Service Worker, CLI prompts, Tree Shakable Providers. Angular 7 : Improved CLI, virtual scrolling, drag and drop. Angular 8 : Differential loading for better performance, support for dynamic imports, and Ivy preview. Angular 9 : Ivy becomes the default compiler, improved testing and smaller bundles. Angular 10 : Smaller updates, strict mode, TypeScript 3.9 support, and better error messages. 2.  Subjects in RxJS Subject : Multicast Observable, allows multiple subscribers. BehaviorSubject : Has a default value, and subscribers get the latest emitted value. ReplaySubject : Replays the last few emissions to n...

Border Radius not working in Outlook Email template

Hi techies, We can have the different ways to search it on google or stack overflow that border radius not working in outlook CSS , how to make image as round or roundrect, oval, circle in outlook,  how to put border radius to image  in outlook email template,  etc. I assure you that at the end of this tech blog you can able to find all the answers related to the Outlook email template and its CSS behavior. Lets get started... Just a little brief that why the border radius is not working in the outlook email template Outlook still support the Vector markup language (VML)  when it comes to support the email template CSS which doesn't support most of the CSS3 or HTML5 features that most of the web browsers do. As Border-radius is a feature of CSS3 so its not is not supported by Microsoft outlook. It means to meet your requirement you have to take reference from VML. Actually, I made it easier for you. Below is the code snippet that will work to solve the problem. Code ...