Home
Archive
Contact
Search results for 'aiab.top[How to get the pages indexed by Google fast'
Understanding Azure Durable Functions - Part 1: Overview
This is the first part in a series of articles. Durable Functions are built on top of top of the bas
Type
: Post
Tags
: C#, azure, azure functions, serverless, .net, durfuncseries
http://dontcodetired.com/blog/post/Understanding-Azure-Durable-Functions-Part-1-Overview
Using C# 7.1 Features
With the release of Visual Studio 2017 update 3, the new C# 7.1 features became available. To use th
Type
: Post
Tags
: c#, .net
http://dontcodetired.com/blog/post/Using-C-71-Features
Testing ASP.NET Core Controllers in Isolation with Mock Objects and Moq
In previous posts we saw how to get started testing ASP.NET Core MVC controllers and also how to use
Type
: Post
Tags
: testing, .net core, xunit.net, asp.net core, mocking
http://dontcodetired.com/blog/post/Testing-ASPNET-Core-Controllers-in-Isolation-with-Mock-Objects-and-Moq
Creating a Spinner Animation in a Console Application in C#
If we have a longer running process taking place in a console application, it’s useful to be a
Type
: Post
Tags
: c# tips, c#, .net, console applications
http://dontcodetired.com/blog/post/Creating-a-Spinner-Animation-in-a-Console-Application-in-C
50 App By Christmas: A New Challenge
"So I’ve been running this series: 50 Apps by Christmas. Currently I’ve got 29 new apps to create before Christmas 2013 (next week). As I’m not going to hit this (my book has been a higher priority) I ..."
Type
: Post
Tags
: windows 8 apps, winrt, 50appsbychristmas2013, windows phone apps, ayearofapps
http://dontcodetired.com/blog/post/50-App-By-Christmas-A-New-Challenge
Comparing SQL dates without the time part
"SELECT CAST(FLOOR(CAST( AS float))AS datetime)e.g. to get all rows where an product as been ordered today:SELECT *FROM Orders AS aWHERECAST(FLOOR(CAST( a.OrderDateTime AS float)) AS datetime) = CAST( ..."
Type
: Post
http://dontcodetired.com/blog/post/Compating-SQL-dates-without-the-time-part
Mocking with FeatureToggle
"I was asked a question on Twitter so I thought I’d write it up here. When using the FeatureToggle library you may have some some code that behaves differently if a toggle is enabled. When writing a te ..."
Type
: Post
Tags
: mocking, testing, featuretoggle, c#
http://dontcodetired.com/blog/post/Mocking-with-FeatureToggle
Kill Your Productivity Demons with my New Pluralsight Course
"My new Pluralsight course Personal Productivity & Performance Tools for Windows Developers “get more done in less time” has just been released. It covers a range of developer-focused and general p ..."
Type
: Post
Tags
: productivity, linqpad, pluralsight courses, profession, personal development, autohotkey, ifttt
http://dontcodetired.com/blog/post/Kill-Your-Productivity-Demons-with-my-New-Pluralsight-Course
Silverlight 3 - Detecting Network Availability
"One of the new SL3 features is the ability to test if there is a network connection currently active. This complements the out of browser experience by letting an app use local (isolated) storage when ..."
Type
: Post
Tags
: silverlight, silverlight 3, wpf, c#, oob, out of browser, sloob
http://dontcodetired.com/blog/post/Silverlight-3-Detecting-Network-Availability
Investing In You
"I grew up in humble surroundings, my family was for the most part “working class”, I moved around a bit as a kid, moved schools a few times, and lived in state/council housing. At one point as a child ..."
Type
: Post
Tags
: profession, productivity, personal development
http://dontcodetired.com/blog/post/Investing-In-You
Redesigning DontCodeTired.Com (Part 5) - Showing and Hiding Mobile Specific Elements
"Taking a "mobile-first" approach, the initial work on styling will be for mobile devices, i.e. small screen resolutions. Getting Started In a previous post in this series I added the s ..."
Type
: Post
Tags
: redesigning dontcodetired, web design, responsive web design, responsive design, web, web design
http://dontcodetired.com/blog/post/Redesigning-DontCodeTiredCom-(Part-5)-Showing-and-Hiding-Mobile-Specific-Elements
Centralising RaiseCanExecuteChanged Logic in an MVVM Light Portable View Model
"When working with an MVVM Light sometime we need to “tell” the view that a command’s ability to be executed has changed. For example, when a user clicks a Start button to start a countdown, the Start ..."
Type
: Post
Tags
: c#, mvvm light, xaml, pcl
http://dontcodetired.com/blog/post/Centralising-RaiseCanExecuteChanged-Logic-in-an-MVVM-Light-Portable-View-Model
Save Keystrokes with AutoHotkey Hotstrings
"AutoHotkey is a free open source tool that does all kinds of cool things, one of which is hotstrings. Hotstrings allow us to define shorthand phrases that get expanded into full text. For things we ty ..."
Type
: Post
Tags
: productivity, autohotkey
http://dontcodetired.com/blog/post/Save-Keystrokes-with-AutoHotkey-Hotstrings
Free eBook C# 6.0: What’s New Quick Start Complete
My new free eBook “C# 6.0: What’s New Quick Start” is now complete and available f
Type
: Post
Tags
: c#, writing, .net
http://dontcodetired.com/blog/post/Free-eBook-C-60-Whate28099s-New-Quick-Start-Complete
Azure Functions Dependency Injection with Autofac
This post refers specifically to Azure Function V2. If you want to write automated tests for Azure F
Type
: Post
Tags
: azure functions, serverless, c#, cloud, .net
http://dontcodetired.com/blog/post/Azure-Functions-Dependency-Injection-with-Autofac
Redesigning DontCodeTired.Com (Part 6) - Creating Mobile Styling Using a Typography-Out Approach
"Redesigning DontCodeTired.Com Part 5 - Showing and Hiding Mobile Specific Elements The idea of typography-out is that for websites where the textual content is king, it makes sense to elevate it ..."
Type
: Post
Tags
: redesigning dontcodetired, web design, responsive web design, responsive design, web, web design, sass, css, typography
http://dontcodetired.com/blog/post/Redesigning-DontCodeTiredCom-(Part-6)-Creating-Mobile-Styling-Using-a-Typography-Out-Approach
Simplifying Parameter Null and Other Checks with the Pitcher Library
"In a previous post I looked at the GaurdClauses library that can simplify the usual guard checks we sometimes need to write. In the comments someone mentioned the Pitcher library that accomplishes the ..."
Type
: Post
Tags
: C#, .net, .net core
http://dontcodetired.com/blog/post/Simplifying-Parameter-Null-and-Other-Checks-with-the-Pitcher-Library
Using XAML Behaviours to stop MVVM Light Messenger Action Executing Multiple Times
"In MVVM Light, when we derive our ViewModel from ViewModelBase, we inherit a Cleanup() method. This method can be overridden, by default it will unregister all messages for the ViewModel, so calling C ..."
Type
: Post
Tags
: xaml, mvvm light, behaviours
http://dontcodetired.com/blog/post/Using-XAML-Behaviours-to-stop-MVVM-Light-Messenger-Action-Executing-Multiple-Times
Introducing JS Name-O-Tron – Find a Name for Your JavaScript Library
"As a Microsoft MVP I get free Azure credits to use every month, so I thought I’d better start making use of them :) JS Name-O-Tron is the first web site I’ve deployed to Azure and I’m pleased to say ..."
Type
: Post
Tags
: azure, asp.net mvc, asp.net, web, bootstrap, .net
http://dontcodetired.com/blog/post/Introducing-JS-Name-O-Tron-e28093-Find-a-Name-for-Your-JavaScript-Library
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
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20