(Bipin Joshi) While developing an ASP.NET Core web application you often come across pieces of information that you wouldn’t like to share with others.
Tag: Development
Cache Implementations in C# .NET
(Michael Shpilt) One of the most commonly used patterns in software development is Caching. It’s a simple, but a very effective concept. The idea is to reuse operation results.
Reconsidering ‘text-overflow: ellipsis’ As A Design Smell And Accessibility Concern
(Ben Nadel) When I first came across the CSS property, text-overflow: ellipsis, I thought it was amazing! Finally, there was a clean and easy way to prevent a user’s content from “breaking the design.”
MVC 5 In Retrospect
(K. Scott Allen) I’ve been in the guts of an ASP.NET MVC 5 application lately and have some more perspective on the improvements we take for granted in ASP.NET Core.
What’s better than ILDasm? ILSpy and dnSpy are tools to Decompile .NET Code
(Scott Hanselman) .NET code (C#, VB, F#, etc) compiles (for the most part) into Intermediate Language (IL) and then makes it way to native code usually by Just-in-time (JIT) compilation on the target machine.
Security in Azure DevOps (formerly called VSTS)
(Gouri Sohoni) This tutorial will discuss key concepts of Security features for Azure DevOps (cloud functionality) along with Azure DevOps Server (on-premises).
Styling A Movie Cast List Using A Definition List And CSS Flexbox
(Ben Nadel) For me, Flexbox is a game-changer. It’s probably the most exciting thing to happen to CSS since absolutely-positioned elements and rounded corners.
Calculate the Distance Between Two Coordinates in C#
(Srinath M S) We can use the GetDistinaceTo method of the GetCoordinates class to determine the distance between two coordinates in C#.
Introducing diagnostics improvements in .NET Core 3.0
(Sourabh) In .NET Core 3.0, we are introducing a suite of tools that utilize new features in the .NET runtime that make it easier to diagnose and solve performance problems.
Managing Confirm And Prompt Modals Outside Of The Router In Angular 7.2.15
(Ben Nadel) The other day, I made a strong statement that most of your modal windows should be accessible by route in Angular 7.2.15. This is something I’ve come to believe quite strongly after working on a complex Single-Page Application (SPA) for 7-years.