“The Soul Gene” to be On the Air in Sarasota, Florida
Exciting News! Tune in to WSLR 96.5 Friday May 19th at 9 AM ET to hear me chat with neurologist Dr. Steve Norris, of Surreal News, about The Soul Gene, my novel, which explores...
Exciting News! Tune in to WSLR 96.5 Friday May 19th at 9 AM ET to hear me chat with neurologist Dr. Steve Norris, of Surreal News, about The Soul Gene, my novel, which explores...
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...
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...
Now and then when developing an Angular SPA with Visual Studio Code, I lock up the default port, 4200. When this happens, you are told you can just reconfigure the app to use a...
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....
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...
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...
In C#, when you add 1 to the largest value an Int32 can hold, you don’t get an error, you get a wrong answer. Below, we set max to the largest Int32 value possible....
When programming most applications, there are some configuration items you’d rather not share with the world, for example when you push the repository to github. For example, a secret APIKey needed to access an...
Note: This is an enhancement of the static HTTPClientHelper class introduced here. Here’s a new and improved class that abstracts HttpClient calls. You add the class to your dependency injection container and then just...