(Ben Nadel) At work, we use StatsD to record page request metrics in our Lucee CFML and Framework One (FW/1) application. One of the great features of FW/1 is that it favors convention over configuration.
Tag: Development
Vendor Adds Blazor, .NET Core 3.0 Third-Party Tooling
(David Ramel) With the recent release of .NET Core 3.0 and the continued interest in the red-hot Blazor project for doing Web development with C#, third-party vendors are cranking out related tooling.
Server Streaming with gRPC and .NET Core
(Steve Gordon) In this post, I want to focus on the implementation of server streaming and client consumption of the stream when using gRPC with .NET Core.
JavaLoader Needs Access To Internal ColdFusion Java Components In ColdFusion 2018
(Ben Nadel) This past week, I updated my blog from ColdFusion 10 to ColdFusion 2018. ColdFusion is generally backwards compatible; so I figured this would be a seamless transition.
Upload Files Using JQuery Ajax And JavaScript Interop In Blazor
(Bipin Joshi) Uploading files from client machine to the server is one of the fundamental operations in web applications. In ASP.NET Core MVC applications you can accomplish this task easily using HTML5 file input field and server side logic.
Q&A with Alex Thissen: Developing .NET Solutions in Docker Ecosystem
(Becky Nagel) Architecting and creating a .NET solution that uses Docker at its core comes with many questions, ranging from “How do you design a solution architecture that fits well with containers?” to “What changes in the .NET implementation from pre-Docker solutions with micro-services?”
How to fix dfu-util, STM, WinUSB, Zadig, Bootloaders and other Firmware Flashing issues on Windows
(Scott Hanselman) I’m pretty happy with Windows 10 as my primary development box. It can do most anything I want, run a half-dozen Linuxes, and has a shiny new open source Terminal, and has great support for Docker now.
Building Messaging Endpoints in Azure: Container Instances
(jimmybogard) In the last post, we looked at Azure WebJobs as a means of deploying messaging endpoints. And while that may work for smaller loads and simpler systems, as the number of message endpoints grows, dealing with a “sidecar” in a WebJob starts to become untenable.
Using CSS Overscroll-Behavior To Prevent Scrolling Of Parent Containers From Within Overflow Containers
(Ben Nadel) In the past, I’ve looked at how the scroll-wheel seems to randomly stop working in an overflow container. This phenomena is related to a browser feature called scroll chaining; and, it can be overcome if you prevent the wheel event’s default behavior.
Serving ASP.NET Core Web Content from External Folders
(Rick Strahl) ASP.NET Core makes it easy to create a Web application regardless of whether you want to create code in raw middleware, using traditional MVC Controllers and Views, or by using Razor Pages as well as static content.