Search results for 'Final ng 2022 Women'

ICYMI C# 8 New Features: Upgrade Interfaces Without Breaking Existing Code This is part 7 in a series of articles. Prior to C# 8, if you add members to an interface, exiting c Type: Post
Tags : icymcs8series, c#, .net, .net core, C#8
http://dontcodetired.com/blog/post/ICYMI-C-8-New-Features-Upgrade-Interfaces-Without-Breaking-Existing-Code
Improving Azure Functions Blob Trigger Performance and Reliability - Part 1: Memory Usage This is the first part of a series or articles. When creating blob-triggered Azure Functions there a Type: Post
Tags : C#, azure, azure functions, .net, serverless, azurefunctionblobtriggerseries
http://dontcodetired.com/blog/post/Improving-Azure-Functions-Blob-Trigger-Performance-and-Reliability-Part-1-Memory-Usage
Support Multiple Versions of .NET From A Single Class Library (.NET multi-targeting) ".NET implementations come in a few different versions or “flavors” including .NE Framework, .NET Core, and the evolution of .NET Core into .NET 5+. There’s also .NET Standard which is not an implement ..." Type: Post
Tags : C#, .net
http://dontcodetired.com/blog/post/Support-Multiple-Versions-of-NET-From-A-Single-Class-Library-(NET-multi-targeting)
Testing ASP.Net MVC Controllers with FluentMVCTesting FluentMVCTesting facilitates the writing of tests against MVC controllers in a fluent way. FluentMVC Type: Post
Tags : teststack, fluentmvctesting, testing, qa, asp.net, asp.net mvc
http://dontcodetired.com/blog/post/Testing-ASPNet-MVC-Controllers-with-FluentMVCTesting
Conditional HTML Rendering with Microsoft Feature Flags (Microsoft.FeatureManagement) This is part seven in a series of articles. EDIT: my Feature Management Pluralsight training course Type: Post
Tags : .net, .net core, c#, featuretoggle, msftseries, FeatureManagement
http://dontcodetired.com/blog/post/Conditional-HTML-Rendering-with-Microsoft-Feature-Flags-(MicrosoftFeatureManagement)
The Enterprise Re-Imagined with Windows 8 "If your company is currently in the process of upgrading to Windows 8, do they see it as a simple OS upgrade to keep up to date; or, do they see it as an enabler to re-imagine how the business operate ..." Type: Post
Tags : windows 8 apps, windows 8, apps, tablet, ux, design
http://dontcodetired.com/blog/post/The-Enterprise-Re-Imagined-with-Windows-8
What I Learned Building My First 4 Windows 8 Apps "This is a bit of a brain-dump, in no particular order, of things I learned building my first 4 Windows 8 (C# XAML) apps: - Countdown To - Big Screen Countdown - BizBuzBingo - Code Retreat Countdown A ..." Type: Post
Tags : windows 8 apps, windows 8, apps, tablet
http://dontcodetired.com/blog/post/What-I-Learned-Building-My-First-4-Windows-8-Apps
Azure Functions Continuous Deployment with Azure Pipelines: Part 4 - Defining and Consuming Pipeline Variables This is the fourth part in a series demonstrating how to setup continuous deployment of an Azure Fun Type: Post
Tags : funcpipeseries, azure, azuredevops, azure functions, c#
http://dontcodetired.com/blog/post/Azure-Functions-Continuous-Deployment-with-Azure-Pipelines-Part-4-Defining-and-Consuming-Pipeline-Variables
Custom Session Logging in Marten Marten is a .NET document database library that uses an underlying PostgreSQL database to store obje Type: Post
Tags : c#, .net, data, marten, nosql
http://dontcodetired.com/blog/post/Custom-Session-Logging-in-Marten
Theming and Styling Your Windows Store App the Easy Way "This article shows one way of choosing and using a colour scheme in your Windows Store app. The default style looks like this: Step 1 – Choose a Colour Palette We can use our fave colours or use a to ..." Type: Post
Tags : windows 8 apps, windows 8, winrt, xaml, design, colour
http://dontcodetired.com/blog/post/Theming-and-Styling-Your-Windows-Store-App-the-Easy-Way
How To Notify Clients of Cosmos DB Changes with Azure SignalR and Azure Functions This is the fourth part in a series of articles. The Cosmos DB Azure Functions trigger can be used i Type: Post
Tags : c#, .net, .net core, Azure, azure functions, cosmosdb, cosmosfuncseries
http://dontcodetired.com/blog/post/How-To-Notify-Clients-of-Cosmos-DB-Changes-with-Azure-SignalR-and-Azure-Functions
Variables? We Don’t Need No Stinking Variables - C# Discards C# 7.0 introduced the concept of discards. Discards are intentionally unused, temporarily dummy vari Type: Post
Tags : C#, .net, .net core
http://dontcodetired.com/blog/post/Variables-We-Dont-Need-No-Stinking-Variables-C-Discards
Microsoft Feature Flags: Implementing Custom Feature Filters (Microsoft.FeatureManagement) This is part four in a series of articles. In part three I introduced the concept of feature filters Type: Post
Tags : .net, .net core, c#, featuretoggle, msftseries, FeatureManagement
http://dontcodetired.com/blog/post/Microsoft-Feature-Flags-Implementing-Custom-Feature-Filters-(MicrosoftFeatureManagement)
Coding with Compassion "From an engineering perspective we judge code by its complexity, test coverage, etc. These are all empirical measurements that give us an indication of the qualities that the code base possesses. ..." Type: Post
Tags : compassion, software development
http://dontcodetired.com/blog/post/Coding-with-Compassion
Retrieving Raw JSON Data in Web API with Marten Marten is a .NET document database library that uses an underlying PostgreSQL database to store obje Type: Post
Tags : c#, .net, data, marten, nosql
http://dontcodetired.com/blog/post/Retrieving-Raw-JSON-Data-in-Web-API-with-Marten
Running and Filtering Tests with the .NET Core Command Line Test Runner In a previous article we saw how to use Visual Studio’s Test Explorer to filter and run subset Type: Post http://dontcodetired.com/blog/post/Running-and-Filtering-Tests-with-the-NET-Core-Command-Line-Test-Runner
Mocking HttpRequest Body Content When Testing Azure Function HTTP Trigger Functions When creating Azure Functions that are triggered by an HTTP request, you may want to write unit test Type: Post
Tags : testing, xunit.net, mocking, azure functions
http://dontcodetired.com/blog/post/Mocking-HttpRequest-Body-Content-When-Testing-Azure-Function-HTTP-Trigger-Functions
FallbackValue, TargetNullValue & StringFormat in Silverlight 4 "Silverlight 4 introduces some further databinding functionality including: FallbackValue If there is a problem with performing the binding, for example an incorrect path to a property value, the ..." Type: Post
Tags : .net, c#, databinding, silverlight, silverlight 4, wpf, xaml
http://dontcodetired.com/blog/post/FallbackValue-TargetNullValue-StringFormat-in-Silverlight-4
A Feature Based Approach to Organising Test Code in BDDfy and Other Testing Frameworks "We want our test code to be as high quality as possible, this means smaller amounts of code duplication, reasonably easy to find where things are in Visual Studio, etc. One possible organization struc ..." Type: Post
Tags : teststack, bddfy, bdd, testing, qa
http://dontcodetired.com/blog/post/A-Feature-Based-Approach-to-Organising-Test-Code-in-BDDfy-and-Other-Testing-Frameworks
Different Ways to Parse Http Request Data in Http-triggered Azure Functions (This post refers to Azure Functions v2) There are different ways to access both the request data an Type: Post
Tags : azure, azure functions, c#, serverless, .net, .net core
http://dontcodetired.com/blog/post/Different-Ways-to-Parse-Http-Request-Data-in-Http-triggered-Azure-Functions