This document now exists on the official ASP.NET core docs page.
- Application
- Request Handling
This document now exists on the official ASP.NET core docs page.
I work as a full-stack developer at work. We are a Windows & Azure shop, so we are using Windows as our development platform, hence this customization.
For my console needs, I am using Cmder which is based on ConEmu with PowerShell as my shell of choice.
Yes, yes, I know nowadays you can use the Linux subsystem on Windows 10 which allow you to run Ubuntu on Windows. If you are looking for customization of the Ubuntu bash shell, check out this article by Scott Hanselman.
// Some minimal class for values with units | |
// (nothing exciting going on...) | |
function Unit(name,val) { | |
this.name = name; | |
this.val = val; | |
} | |
Unit.prototype.toString = function() { | |
return this.val + " " + this.name; | |
} |