chocolatey package manager

Using Chocolatey Package Manager

Chocolatey is a package manager for Windows, much like apt-get on linux. Like all package managers, it allows you to easily install and upgrade applications. Note that not all applications are available, but many...

.Net Core 3.1 CORS

Cross Origin Resource Sharing centers on the fact that modern browsers won’t allow javascript programs running in them from making XHR requests to a foreign server unless the server expressly allows it. The browser...

Razor Component Callbacks

To communicate from a child razor component to the component that references it (the parent), pass the name of the callback function to the child component in much the same way you pass parameters....

Run MS SQL Server in a Docker Container

If you haven’t discovered Docker yet, you’re missing out. Docker is so popular you probably know it allows applications to run in lightweight containers similar to virtual machines but more nimble because the containers...

Using toastr.js

toastr.js/toastr.css lets you easily display self-hiding notifications easily in an HTML page. Get the files here, along with usage tips. https://github.com/CodeSeven/toastr Note that the javscript requires jQuery. In $(document).ready, you can initialize the toastr...