Home
Archive
Contact
Search results for 'aiab.top[The method to get your independent website indexed by google fast'
MSMQ Transactional Queues
"When using MSMQ transactional queues ensure you use an overloaded send method passing a transaction object otherwise you may find the message will go nowhere and no exception will be thrown."
Type
: Post
http://dontcodetired.com/blog/post/MSMQ-Transactional-Queues
Windows Service Path Not Found Exception
"If you get an invalid path / path not found error when trying to start a .net windows service or right-click properties for it check any PerformanceCounterInstaller(s) and ensure their CategoryName is ..."
Type
: Post
http://dontcodetired.com/blog/post/Windows-Service-Path-Not-Found-Exception
C# 7.0: What’s New Quick Start eBook Early Access
Just as I created the free C# 6.0: What’s New Quick Start eBook, I will be writing a new book
Type
: Post
Tags
: c#, .net, writing
http://dontcodetired.com/blog/post/C-70-Whats-New-Quick-Start-eBook-Early-Access
What’s New in C# 10: Simplify Nested Property Pattern Code
"This is part of a series on the new features introduced with C# 10.Pattern matching in C# was first introduced in C# 7 and has been added to in later versions.C# 8 added property pattern matching to a ..."
Type
: Post
Tags
: cs10newseries, c#, .net, .net core, C#10
http://dontcodetired.com/blog/post/Whats-New-in-C-10-Simplify-Nested-Property-Pattern-Code
Azure HTTP Function Authorization with Function Keys
When creating an Azure Function triggered via HTTP, one way to authorize use of the function is to c
Type
: Post
Tags
: azure functions, azure, serverless
http://dontcodetired.com/blog/post/Azure-HTTP-Function-Authorization-with-Function-Keys
The request failed with HTTP status 401: Unauthorized
"If you are using IIS 6.0 and your application is using an Application Pool with an Identity set to a domain account you may get: The request failed with HTTP status 401: Unauthorized Check out this ..."
Type
: Post
http://dontcodetired.com/blog/post/The-request-failed-with-HTTP-status-401-Unauthorized
Generating truly random numbers with multiple simultaneous request
"The Random Class, given a constant seed will always generate the samesequence of numbers.Creating a Random object using the default constructor uses the current timeas the seed, so if you have multipl ..."
Type
: Post
http://dontcodetired.com/blog/post/Generating-truly-random-numbers-with-multiple-simultaneous-request
New Pluralsight Course: Testing C# Code in Production with Scientist.NET
My latest Pluralsight course is now available for viewing. It demonstrates how to use the Scientist.
Type
: Post
Tags
: pluralsight courses, .net, c#, quality, testing
http://dontcodetired.com/blog/post/New-Pluralsight-Course-Testing-C-Code-in-Production-with-ScientistNET
New Pluralsight Course: Working with Data and Schemas in Marten
Marten is a .NET document database library to allows objects to be stored, retrieved, and queried as
Type
: Post
Tags
: c#, .net, data, marten, nosql, pluralsight courses
http://dontcodetired.com/blog/post/New-Pluralsight-Course-Working-with-Data-and-Schemas-in-Marten
Dataset designer global:: namespace issues
"If you change the namespace of a typed dataset in Visual Studio 2005, you may find that the .designer.cs doesn’t re-generate properly, for example the connection string init. To fix, delete the ..."
Type
: Post
http://dontcodetired.com/blog/post/Dataset-designer-global-namespace-issues
New Pluralsight Course: Working with Nulls in C#
My latest Pluralsight course is now available for viewing. It covers the fundamental aspects of work
Type
: Post
Tags
: pluralsight courses, .net, c#
http://dontcodetired.com/blog/post/New-Pluralsight-Course-Working-with-Nulls-in-C
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
Databinding Conversions Using Functions in UWP XAML Apps
"When using compiled data bindings using the x:Bind syntax in UWP apps, as an alternative to using an IValueConverter, a function can instead be defined. This means that whenever a value needs converti ..."
Type
: Post
Tags
: c#, UWP, xaml
http://dontcodetired.com/blog/post/Databinding-Conversions-Using-Functions-in-UWP-XAML-Apps
Cannot find 'ServiceReferences.ClientConfig' in the .xap application package when running Silverlight unit tests
"When using the browser-based Silverlight unit testing framework to test a SL app which contains service references you might get a Cannot find 'ServiceReferences.ClientConfig' in the .xap ..."
Type
: Post
http://dontcodetired.com/blog/post/Cannot-find-ServiceReferencesClientConfig-in-the-xap-application-package-when-running-Silverlight-unit-tests
Design Pattern for Silverlight 2
"It seems the Model-View-ViewModel (MVVM) is the preferred pattern at present for implementing cleanly separated SL apps (& WPF client apps). Aims to increase testability and leverage data-bin ..."
Type
: Post
Tags
: silverlight, design patterns, mvvm
http://dontcodetired.com/blog/post/Design-Pattern-for-Silverlight-2
System.Windows.Markup.XamlParseException when using Tag property in Silverlight
"Although MSDN says you can use the FrameworkElement.Tag Property to store an arbitary object, if you try to store anything other than a string you get a System.Windows.Markup.XamlParseException. It se ..."
Type
: Post
Tags
: silverlight, wpf
http://dontcodetired.com/blog/post/SystemWindowsMarkupXamlParseException-when-using-Tag-property-in-Silverlight
Determine site’s absolute, fully-qualified url in asp.net
" I'm working on a Silverlight media player like you get on MySpace and other sites. The app is meant to be as simple as possible, so i've created a Silverlight-enabled WCF service which r ..."
Type
: Post
Tags
: silverlight, c#, wcf, asp.net
http://dontcodetired.com/blog/post/Determine-sitee28099s-absolute-fully-qualified-url-in-aspnet
What’s New in C# 10: Write Less Code and Reduce Repeated Using Directives
This is part of a series on the new features introduced with C# 10. There are 2 related features in
Type
: Post
Tags
: cs10newseries, c#, .net, .net core, C#10
http://dontcodetired.com/blog/post/Whats-New-in-C-10-Write-Less-Code-and-Reduce-Repeated-Using-Directives
New Pluralsight Course: Automated Business Readable Web Tests with Selenium and SpecFlow
SpecFlow is a tool that can translate natural language scenarios (e.g. writing in English or other s
Type
: Post
Tags
: pluralsight courses, .net, c#, testing, quality, specflow, atdd, specification by example, selenium
http://dontcodetired.com/blog/post/New-Pluralsight-Course-Automated-Business-Readable-Web-Tests-with-Selenium-and-SpecFlow
A Bouncing Ball Animation in jQuery
"Out of the box and without plug-ins, you can animate elements with basic jQuery. You can view a live example of the following code which animates the position of a "ball" up and down. T ..."
Type
: Post
Tags
: jquery, html
http://dontcodetired.com/blog/post/A-Bouncing-Ball-Animation-in-jQuery
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22