It's well know that Microsoft launched to the market the new version of Windows Server 2016 and with it, a "new" licensing model based on the physical cores. It's been more than a year since this and still, there is a lot of confusion about how to eat it? how to license? what types of SKUs? Is there any rule? and so on. This article purpose is to clarify some aspect of this change, how to manage it but more important: Understand it.Let's start in the beginning: WHY? Traditionally, Windows Server...
-
-
-
-
-
-
Love these skills? Find your Match.
-
HiI share this simple article to show you some code about a TCache async method. I encountered this exception: Unable to convert a async lambda expression in Func.The previows signature was :T Get(string cacheKeyName, int cacheTimeOutSeconds, Func<T> func); It is a generic method.This method takes 3 arguments: cacheKeyName: the name of the item in cachecacheTimeOutSeconds: the expiration policy.func: the delegate that you can use to load the data from database if the cache object...
-
-
-
-
Love these skills? Find your Match.
-
The other evening I was playing around with an ASP.NET Core application. When I started debugging it, I immediately saw an error message pop up that said It was a bit of a head scratcher, so I decided to restart the debug session and see if the problem resolved itself. This didn't help and I saw the same error again.I also saw that my Chrome browser had started up, but it wasn't showing my web page. It was stuck on a notification page telling me that JavaScript debugging is now enabled in Visual...
-
-
-
-
-
-
Love these skills? Find your Match.
-
Cloud is a central repository where you can put access manage data and services from anywhere, anytime. Cloud computing is simply to put the services of cloud i.e. servers, storage, databases, networking, software, analytics and much more over the internet. the companies that offer such services are known as cloud providers. providers charge you for these services upon your usage, its just likely you charged for electricity, Gas, Water usage every month at your home.Still not clear about what is...
-
-
-
Love these skills? Find your Match.
-
Microsoft's Bot FrameworkIntroductionThe Microsoft’s Bot Framework is an inclusive offering that is used in building, as well as deploying quality bots for their users while enjoying their desired conversational practices. When writing bots, all developers face the same issues. It paramount that the bots have the basic I/O; it is a requirement for them to have language and dialog skills; it is crucial for them to be performant, receptive, and scalable. Moreover, they must connect to the users. The...
-
-
-
-
-
-
Love these skills? Find your Match.
-
Over the past few months in the little spare time that I have, I’ve managed to submit a handful of pull requests to various .NET-related repositories (e.g. coreclr, corefx, docs, etc.) and incredibly, they were accepted.Now, for some, this may not seem like a big deal. But it felt like a pretty big one to me so I thought I would take some time to elaborate on the process itself, share my experience, and hopefully dispel a few myths or misconceptions that you might have that may be holding you back...
-
-
-
-
-
-
Love these skills? Find your Match.
-
A few days ago, I was answering questions on Stack Overflow when I came across one that I thought might be relevant to share with others that might have a similar issue. The issue itself revolved around Tag Helpers, and in particular, getting data attributes found on models to properly generate the appropriate attributes when rendered.This post will introduce how to easily extend an existing tag helper for a common use-case. It will primarily focus around the use of the Input Tag Helper, the [MaxLength]...
-
-
-
-
Love these skills? Find your Match.
-
As software developers, copy-pasting some code or a few files and having it in multiple places has always been smelly. There are several different avenues that you can take to avoid this kind of redundancy, but this post will focus on one that it seems isn’t talked about too often: Shared Projects.Prior to the introduction to Shared Projects, I’ll briefly go over why Shared Projects themselves were introduced, and how you might have accomplished similar behavior before their release.With the major...
-
-
-
-
-
-
-
Love these skills? Find your Match.
-
In very simple terms we can say that"regular expression is a group of characters that defines a pattern" and using that pattern we find out specific information that we required in our caseSo the regular expressions are nothing but a group of characters that have special meanings to regular expression engine which is already installed in .Net framework and represented by System.Text.RegularExpressions.Regex .My goal in this article is to give you a basic understanding of regular expressions in very...
-
-
-
-
Love these skills? Find your Match.
-