Home
Archive
Contact
Search results for 'aiab.top[How to get the pages indexed by Google fast'
Testing Responsive Web Designs and Layout
"CSS3 Media Queries enable us to have different layouts and show/hide content based on the width of the browser or device the page is being displayed on. Typically you will have a number of Respon ..."
Type
: Post
Tags
: web design, responsive web design, responsive design, web, web design, design
http://dontcodetired.com/blog/post/Testing-Responsive-Web-Designs-and-Layout
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
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
FeatureToggle 1.1.0 Released
"FeatureToggle 1.1.0 includes a new EnabledBetweenDatesFeatureToggle. This toggle can enable a feature when the current date is between a start and end date. Also in 1 ..."
Type
: Post
Tags
: open source, featuretoggle
http://dontcodetired.com/blog/post/FeatureToggle-110-Released
Redesigning DontCodeTired.Com (Part 11) - Conclusion
"The redesigned Don't Code Tired is now live. This article wraps up the series with a look back at what I learned and what things are still outstanding. Key Things I Learned I am not a designer. ..."
Type
: Post
Tags
: redesigning dontcodetired, web design, responsive web design, responsive design, web, web design, sass, design, css
http://dontcodetired.com/blog/post/Redesigning-DontCodeTiredCom-(Part-11)-Conclusion
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
Failed to encrypt the section [name] using provider RsaProtectedConfigurationProvider. Error message from the provider: Object already exists.
"If you're running aspnet_regiis to encrypt a section in your web.config, e.g. aspnet_regiis -pef mytestsection . (assuming your current directory contains the web.config and the se ..."
Type
: Post
Tags
: .net, asp.net, web, security
http://dontcodetired.com/blog/post/Failed-to-encrypt-the-section-name-using-provider-RsaProtectedConfigurationProvider-Error-message-from-the-provider-Object-already-exists
Checking if a given Type implements a specific interface
"There is possibly a framework method to do this but… private bool IsInterfaceImplemented(Type typeToCheck, Type interfaceToFind){Type[] interfaces = typeToCheck.GetInterfaces();foreach (Type iface in ..."
Type
: Post
http://dontcodetired.com/blog/post/Checking-if-a-given-Type-implements-a-specific-interface
FeatureToggle moved to GitHub
"The FeatureToggle project has been moved to: https://github.com/jason-roberts/FeatureToggle The documentation will be moved shortly and a NuGet package will also be available soon..."
Type
: Post
Tags
: open source, featuretoggle
http://dontcodetired.com/blog/post/FeatureToggle-moved-to-GitHub
Understanding Lambda Expressions
Of all the additions to the C# language, lambda expressions are potentially the most confusing. Part
Type
: Post
Tags
: c#, lambda expressions, .net
http://dontcodetired.com/blog/post/Understanding-Lambda-Expressions
Introduction To Extension Methods in C#
Extension methods allow you to extend the functionality of an existing class without using inheritan
Type
: Post
Tags
: c#, extension methods
http://dontcodetired.com/blog/post/Introduction-To-Extension-Methods-in-C
Global.asax Application_Error "File does not exist" Exception
"This can sometime also manifest as a "Session state is not available in this context" exception. If you get either of these in your Application_Error event where you are using Response.Redir ..."
Type
: Post
Tags
: .net, asp.net, visual studio, web
http://dontcodetired.com/blog/post/Globalasax-Application_Error-File-does-not-exist-Exception
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
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
Improving Test Code Readability and Assert Failure Messages with Shouldly
Shouldly is an open source library that aims to improve the assert phase of tests; it does this in t
Type
: Post
Tags
: c#, testing, qa, quality, open source
http://dontcodetired.com/blog/post/Improving-Test-Code-Readability-and-Assert-Failure-Messages-with-Shouldly
Maintaining Energy with the Pomodoro Technique
"(The below is an extract from the “Time Management and Motivation” chapter of my book Keeping Software Soft) The Pomodoro Technique is a simple time management system developed by Francesco Cirillo. A ..."
Type
: Post
Tags
: time management, pomodoro, energy
http://dontcodetired.com/blog/post/Maintaining-Energy-with-the-Pomodoro-Technique
MSTest V2
In the (relatively) distant past, MSTest was often used by organizations because it was provided by
Type
: Post
Tags
: .net, .net core, testing, qa, quality
http://dontcodetired.com/blog/post/MSTest-V2
Testing Precompiled Azure Functions Overview
Just because serverless allows us to quickly deploy value, it doesn’t mean that testing is now
Type
: Post
Tags
: azure functions, azure, serverless, c#, .net
http://dontcodetired.com/blog/post/Testing-Precompiled-Azure-Functions-Overview
New Free eBook: C# 7.2: What's New Quick Start
"My new free eBook is now available for download. The book covers the following new features of C# 7.2: Leading Digit Separator Reference Semantics With Value Types Non-trailing Named Arguments Pri ..."
Type
: Post
http://dontcodetired.com/blog/post/New-Free-eBook-C-72-Whats-New-Quick-Start
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
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20