Home
Archive
Contact
Search results for 'Final ng 2022 Women'
C# Source Generators: Less Boilerplate Code, More Productivity
One exciting feature of the upcoming .NET 5 are Source Generators. Source Generators as the name sug
Type
: Post
http://dontcodetired.com/blog/post/C-Source-Generators-Less-Boilerplate-Code-More-Productivity
Imported posts not appearing in BlogEngine.NET
" If you've used the BlogEngine.NET import tool and your post are not showing you could try the following: http://mcgeown.co.uk/BlogEngine/post/2008/05/09/Force-BlogEngineNet-to-up ..."
Type
: Post
http://dontcodetired.com/blog/post/Imported-posts-not-appearing-in-BlogEngineNET
Creating Precompiled Azure Functions with Visual Studio 2017
As the Azure Functions story continues to unfold, the latest facility is the ease of creation of pre
Type
: Post
Tags
: C#, azure, azure functions, .net
http://dontcodetired.com/blog/post/Creating-Precompiled-Azure-Functions-with-Visual-Studio-2017
Introducing (probably) The World's Only Mocking Framework for Windows Phone 7 (WP7)
"Introducing MoqaLate Whilst I love developing apps for Windows Phone 7, the testing aspect is hard! I'm a TDD-er by default and it's such a pain to have to hand roll my own mock objects. ..."
Type
: Post
Tags
: windows phone 7, wp7, c#, testing, tdd, mocking, moqalate
http://dontcodetired.com/blog/post/Introducing-(probably)-The-Worlds-Only-Mocking-Framework-for-Windows-Phone-7-(WP7)
Simplifying Parameter Null and Other Checks with the GuardClauses Library
"Often you want to add null checking and other check code at the start of a method to ensure all the values passed into the method are valid before continuing. For example the following method checks t ..."
Type
: Post
Tags
: C#, .net, .net core
http://dontcodetired.com/blog/post/Simplifying-Parameter-Null-and-Other-Checks-with-the-GuardClauses-Library
Getting Message Metadata When Using Azure Functions Storage Queue Triggers
When creating an Azure Function that is triggered by incoming messages on a Storage Queue, the type
Type
: Post
Tags
: azure, azure functions, C#, serverless
http://dontcodetired.com/blog/post/Getting-Message-Metadata-When-Using-Azure-Functions-Storage-Queue-Triggers
Understanding Azure Event Grid
Azure Event Grid (currently in preview) is a managed publisher-subscriber service that pushes events
Type
: Post
Tags
: azure, azure event grid, cloud
http://dontcodetired.com/blog/post/Understanding-Azure-Event-Grid
Serverless Computing and Workflows with Azure Functions and Microsoft Flow
Microsoft Flow is a tool for creating workflows to automate tasks. It’s similar in concept to
Type
: Post
Tags
: C#, azure, microsoft flow, serverless, azure functions
http://dontcodetired.com/blog/post/Serverless-Computing-and-Workflows-with-Azure-Functions-and-Microsoft-Flow
Creating a Tweet Buffer with Azure Queues and Microsoft Flow
There are apps and services that allow the scheduling or buffering of the sending of Tweets. Using t
Type
: Post
Tags
: microsoft flow, azure, azure functions, serverless
http://dontcodetired.com/blog/post/Creating-a-Tweet-Buffer-with-Azure-Queues-and-Microsoft-Flow
Importing posts from Blogger into BlogEngine.NET
"Just managed to successfully get my posts from Blogger into DCT. Read a post suggesting using a new temp WordPress blog which can import directly from Blogger. Then export, then use the Import to ..."
Type
: Post
http://dontcodetired.com/blog/post/Importing-posts-from-Blogger-into-BlogEngineNET
Refactoring Code to Use C# Local Functions
In a previous post I talked about the potential use of local functions to replace comments. This gen
Type
: Post
Tags
: C#, .net, .net core
http://dontcodetired.com/blog/post/Refactoring-Code-to-Use-C-Local-Functions
Accessing Cosmos DB JSON Properties in Azure Functions with Dynamic C#
This is the eighth part in a series of articles. When working with the Cosmos DB Microsoft.Azure.Doc
Type
: Post
Tags
: c#, .net, .net core, Azure, azure functions, cosmosdb, cosmosfuncseries
http://dontcodetired.com/blog/post/Accessing-Cosmos-DB-JSON-Properties-in-Azure-Functions-with-Dynamic-C
On Showing Up
"So I just listened to episode 1000 of .NET Rocks. I’ve been listening to this podcast for many years, through biting snow-covered walks in England to the cosseted comfort of an air-conditioned car in ..."
Type
: Post
Tags
: profession, personal development
http://dontcodetired.com/blog/post/On-Showing-Up
Specifying How Soon a Storage Queue Message Will Be Retried in an Azure Function
By default, if an exception occurs in an Azure Function that uses a Storage Queue trigger, the messa
Type
: Post
Tags
: azure, azure functions, C#, serverless
http://dontcodetired.com/blog/post/Specifying-How-Soon-a-Storage-Queue-Message-Will-Be-Retried-in-an-Azure-Function
Azure Functions Continuous Deployment with Azure Pipelines: Part 2 - Getting Started
This is the second 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-2-Getting-Started
Azure Functions Continuous Deployment with Azure Pipelines: Part 5 - Adding Unit Tests
This is the fifth part in a series demonstrating how to setup continuous deployment of an Azure Func
Type
: Post
Tags
: funcpipeseries, azure, azuredevops, azure functions, c#
http://dontcodetired.com/blog/post/Azure-Functions-Continuous-Deployment-with-Azure-Pipelines-Part-5-Adding-Unit-Tests
Asserting the Results of Tests in xUnit.net
The below is an excerpt from the latest chapter “An Introduction to Unit Testing With xUnit.ne
Type
: Post
Tags
: xunit, testing
http://dontcodetired.com/blog/post/Asserting-the-Results-of-Tests-in-xUnitnet
Updating Your Windows 8 App to Windows 8.1: Dealing With Coloured Fonts
"With Windows 8.1, font characters (glyphs) can now contain coloured layers. In a Windows 8.0 app, this XAML:<TextBlock>$★☺☹❤✈⛱⛺⛵⚽✘✔☀⛅☕⛄❓♀♂❋❄✹</TextBlock> Will produce the following (bla ..."
Type
: Post
Tags
: windows 8 apps, xaml
http://dontcodetired.com/blog/post/Updating-Your-Windows-8-App-to-Windows-81-Dealing-With-Coloured-Fonts
Getting Daily Emails with your Windows Store and Windows Phone App PubCenter Earnings
"If you’re writing Windows Phone or Windows Store apps and you’re using Microsoft’s pubCenter to display adverts, you can schedule a daily email report of your earnings for that day. Log in to pubCente ..."
Type
: Post
Tags
: windows 8 apps, windows 8, winrt, monetization, pubcenter, windows phone
http://dontcodetired.com/blog/post/Getting-Daily-Emails-with-your-Windows-Store-and-Windows-Phone-App-PubCenter-Earnings
MVVM Light Messenger Events Firing Multiple Times
"If you register for a message in the ctor of your views code-behind, eg: Messenger.Default.Register<DialogMessage>(this, DialogMessageHandler); Every time you reload the view, i.e ..."
Type
: Post
Tags
: .net, c#, design patterns, mvvm, windows phone 7, wp7
http://dontcodetired.com/blog/post/MVVM-Light-Messenger-Events-Firing-Multiple-Times
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28