Search results for 'aiab.top[How to get the pages indexed by Google fast'

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
What’s New in C# 10: Create Constants Using String Interpolation "This is part of a series on the new features introduced with C# 10.Prior to C# 10 if you wanted to create a const that was made up from other constants you had to add the string fragments togeter, for ..." Type: Post http://dontcodetired.com/blog/post/Whats-New-in-C-10-Create-Constants-Using-String-Interpolation
Understanding Azure Durable Functions - Part 7: The Function Chaining Pattern This is the seventh part in a series of articles. If you’re not familiar with Durable Function Type: Post
Tags : C#, azure, azure functions, durable functions, serverless, .net, durfuncseries
http://dontcodetired.com/blog/post/Understanding-Azure-Durable-Functions-Part-7-The-Function-Chaining-Pattern
Understanding Azure Durable Functions - Part 10 The Monitor Pattern This is the tenth part in a series of articles. If you’re not familiar with Durable Functions Type: Post
Tags : C#, azure, azure functions, durable functions, serverless, .net, durfuncseries
http://dontcodetired.com/blog/post/Understanding-Azure-Durable-Functions-Part-10-The-Monitor-Pattern
What’s New in C# 10: Value Type Records "This is part of a series on the new features introduced with C# 10.In a previous post I wrote about records in C# 9.Prior to C# 10 record types were reference types. In C# 10 you can now declare recor ..." Type: Post
Tags : cs10newseries, c#, .net, .net core, C#10
http://dontcodetired.com/blog/post/Whats-New-in-C-10-Value-Type-Records
50 Apps by Christmas: SilverKeys - Porting a Silverlight App to a Windows Store App "This article is part of the 50 Apps by Christmas series. I developed a Silverlight app a few years ago and I wanted to see how easy it would be to port to a Windows Store app. You can download free t ..." Type: Post
Tags : silverlight, windows 8 apps, windows 8, winrt, windows phone, 50appsbychristmas2013, portable class library, rhinomocks
http://dontcodetired.com/blog/post/50-Apps-by-Christmas-SilverKeys-Porting-a-Silverlight-App-to-a-Windows-Store-App
Watch My Pluralsight Courses For Free This Weekend "If you don’t have a Pluralsight subscription and you want to watch my courses you can this weekend for FREE! Click the ad below to get started and then once you've signed up for your free weekend, hea ..." Type: Post
Tags : profession, personal development
http://dontcodetired.com/blog/post/Watch-My-Pluralsight-Courses-For-Free-This-Weekend
Using Local Functions to Replace Comments One idea I’ve been thinking about recently is the replacement of comments with local function Type: Post
Tags : C#, .net, .net core, testing
http://dontcodetired.com/blog/post/Using-Local-Functions-to-Replace-Comments
Colour: Thinking in Proportions (Dominant, Subdominant, and Accent) "One way of thinking or planning colour is to think in terms of relative expansiveness, that is, the proportion of the use of different colours. One way to describe this proportionality is to think in ..." Type: Post
Tags : design, colour, ui, ux
http://dontcodetired.com/blog/post/Colour-Thinking-in-Proportions-(Dominant-Subdominant-and-Accent)
Microsoft Buys Part of Nokia "So the big news of the moment is that Nokia is selling it’s Devices & Services business to Microsoft. The deal is “expected to close in the first quarter of 2014, subject to approval by Nokia shar ..." Type: Post
Tags : nokia, windows phone, apps
http://dontcodetired.com/blog/post/Microsoft-Buys-Part-of-Nokia
Remote Debugging Azure Functions V2 "The breakpoint will not currently be hit. No symbols have been loaded for this document" Sometimes it can be tricky to attach the Visual Studio debugger to a deployed Azure Functions app. F Type: Post
Tags : Azure, azure functions, visual studio, debugging, serverless
http://dontcodetired.com/blog/post/Remote-Debugging-Azure-Functions-V2-The-breakpoint-will-not-currently-be-hit-No-symbols-have-been-loaded-for-this-document
The Ethereal Second Deliverable of Software Projects "So the project or release or iteration is done. We’ve “finished”. The customer and users are (hopefully) reasonably satisfied, and we say that we’ve delivered the software. There’s a second hidden del ..." Type: Post
Tags : technical debt, quality, cost, metrics
http://dontcodetired.com/blog/post/The-Ethereal-Second-Deliverable-of-Software-Projects
System.ExecutionEngineException in Silverlight "Check your resource styles have specified a target type, e.g. TargetType="TextBlock": the exception that is thrown is System.ExecutionEngineException but with no inner exception details it d ..." Type: Post
Tags : xaml, silverlight
http://dontcodetired.com/blog/post/SystemExecutionEngineException-in-Silverlight
Unit Testing with Silverlight 2 "It doesn't appear there is any VS IDE integrated support for running SL unit tests but there is a browser-based unit testrunner,  To get the correct templates follow this straightforward ..." Type: Post http://dontcodetired.com/blog/post/Unit-Testing-with-Silverlight-2
What’s New in C# 10: New Possibilities for Validation and Logging Methods "This is part of a series on the new features introduced with C# 10.From C# 10 we can make use of the [CallerArgumentExpression] attribute.This attribute can be applied to a parameter to get informatio ..." Type: Post
Tags : cs10newseries, c#, .net, .net core, C#10
http://dontcodetired.com/blog/post/Whats-New-in-C-10-New-Possibilities-for-Validation-and-Logging-Methods
xUnit.net Cheat Sheet "To help people get started with xUnit.net and as an accompaniment to my  Pluralsight xUnit.net training course I thought I’d create a cheat sheet showing common assert methods and attributes. Hop ..." Type: Post
Tags : xunit, .net, c#, testing, tdd, quality
http://dontcodetired.com/blog/post/xUnitnet-Cheat-Sheet
The Golden Age of Software Development "There's a lot of negativity sometimes in our profession, just take a look in your Twitter stream. The tools we use aren't absolutely 100% without imperfection; the vendors of the tools we use don't al ..." Type: Post
Tags : people, profession, personal development
http://dontcodetired.com/blog/post/The-Golden-Age-of-Software-Development
What’s New in C# 10: Simplify Argument Null Checking Code "This is part of a series on the new features introduced with C# 10.Prior to C# 10 you may have had code similar to the following: public static string Join(string a, string b) { i ..." Type: Post
Tags : cs10newseries, c#, .net, .net core, C#10
http://dontcodetired.com/blog/post/Whats-New-in-C-10-Simplify-Argument-Null-Checking-Code
Auto-Generating Sequences of Integer Values in C# When we need to generate a sequence of integer values, we can do it manually using some kind of loop Type: Post
Tags : c# tips, c#, .net
http://dontcodetired.com/blog/post/Auto-Generating-Sequences-of-Integer-Values-in-C
To XSLT a large file (.NET1.1) "To XSLT a large file use XPathDocument rather than XmlDocument, e.g. Slower: Me.m_oldStream.Position = 0Dim xsl As New Xml.Xsl.XslTransformxsl.Load(Me.m_xsltFilePath)Dim xDoc As New Xml.XmlDocum ..." Type: Post http://dontcodetired.com/blog/post/To-XSLT-a-large-file-(NET11)