Home
Archive
Contact
Search results for 'aiab.top[The method to get your independent website indexed by google fast'
Free .NET Testing Courses This Month
This month all my Pluralsight courses are available for free including a lot of .NET testing content
Type
: Post
Tags
: C#, pluralsight courses, profession, personal development, .net, .net core
http://dontcodetired.com/blog/post/Free-NET-Testing-Courses
Setting Meta Tags in ASP.Net 4
"ASP.Net 4 adds 2 new Meta tag related properties to the Page. They can be used to set meta tags for keywords and description. You can set them in the code behind: Page.MetaKeywords = "k ..."
Type
: Post
Tags
: .net, asp.net, asp.net 4, c#, html, web
http://dontcodetired.com/blog/post/Setting-Meta-Tags-in-ASPNet-4
Session State Compression in ASP.NET 4
"ASP.NET 4 introduces the ability to turn on compression of session data. Compression is disabled by default, to enable it modify the web.config file and set the new compressionEnabled attribute ..."
Type
: Post
Tags
: .net, asp.net, asp.net 4, web
http://dontcodetired.com/blog/post/Session-State-Compression-in-ASPNET-4
Don't Code Tired 1st Birthday
"Don't Code Tired is a year old! For Year 2 I really want to ramp up the content, especially more tutorial style articles and end-to-end examples - I also intent to start producing tutorial videos ..."
Type
: Post
http://dontcodetired.com/blog/post/Dont-Code-Tired-1st-Birthday
Architecting Azure Functions: Function Timeouts and Work Fan-Out with Queues
When moving to Azure Functions or other FaaS offerings it’s possible to fall into the trap of
Type
: Post
Tags
: azure, azure functions, serverless, c#, .net
http://dontcodetired.com/blog/post/Architecting-Azure-Functions-Function-Timeouts-and-Work-Fan-Out-with-Queues
Auto Expanding Div Columns (when floated div has no set size)
"Usually 2 divs side-by-side (e.g. left menu and main content) will have the left div floated left with set size, the 2nd div also float with a left margin equal to the width of the left div. When ..."
Type
: Post
Tags
: css, html, web
http://dontcodetired.com/blog/post/Auto-Expanding-Div-Columns-(when-floated-div-has-no-set-size)
Hosting HTML Content in Silverlight 4
"In Silverlight 4 we can present HTML content to the user. The WebBrowser Control For example to display the content of DontCodeTired.com we can set the Source property in XAML: <WebB ..."
Type
: Post
Tags
: .net, c#, html, javascript, oob, out of browser, silverlight, silverlight 4, wpf, xaml
http://dontcodetired.com/blog/post/Hosting-HTML-Content-in-Silverlight-4
FeatureToggle v4 RC2 with .NET Core Configuration Changes
"The pre-release RC2 version of FeatureToggle with .NET Core support is now available on NuGet. See release notes and GitHub issues for additional background/breaking changes/limitations. RC2 builds ..."
Type
: Post
Tags
: featuretoggle, open source, .net, .net core
http://dontcodetired.com/blog/post/FeatureToggle-v4-RC2-with-NET-Core-Configuration-Changes
C# 4.0 Optional Parameters
C# 4.0 introduces the concepts of Optional Parameters and the related Named Parameters language feat
Type
: Post
Tags
: .net, c#, visual studio 2010
http://dontcodetired.com/blog/post/C-40-Optional-Parameters
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
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
New Pluralsight Course: Implementing Logging and Dependency Injection in Akka.NET
If you’ve already watched my Akka.NET fundamentals Pluralsight course and want to learn more a
Type
: Post
Tags
: .net, akka.net, distributed computing, actor model, di, logging, pluralsight courses
http://dontcodetired.com/blog/post/New-Pluralsight-Course-Implementing-Logging-and-Dependency-Injection-in-AkkaNET
Improving Message Throughput in Akka.NET with Routers
One of the things I cover in my new Pluralsight course is the awesome feature of routers in Akka.NET
Type
: Post
Tags
: .net, akka.net, actor model
http://dontcodetired.com/blog/post/Improving-Message-Throughput-in-AkkaNET-with-Routers
New Second Shot Offer For Some Microsoft Exams
"According to the website the offer is valid until 30 June 2010: http://www.prometric.com/microsoft/ss_mcp.htm for terms and conditions."
Type
: Post
Tags
: certification, microsoft, exam, career development
http://dontcodetired.com/blog/post/New-Second-Shot-Offer-For-SOme-Microsoft-Exams
Akka.NET Dispatchers and User Interface Thread Access
Akka.NET actors typically run in their own (non-UI) threads. This means by default accessing UI obje
Type
: Post
Tags
: .net, akka.net, wpf, mvvm
http://dontcodetired.com/blog/post/AkkaNET-Dispatchers-and-User-Interface-Thread-Access
Testing Events Using Rhino Mocks
"There are possible more 'elegant' methods for the below but these are fairly well understandable by someone new to Rhino Mocks or mocking in general. Testing Event Subscription Sometime ..."
Type
: Post
Tags
: .net, c#, lambda expressions, tdd, testing, rhino mocks, mocking
http://dontcodetired.com/blog/post/Testing-Events-Using-Rhino-Mocks
Permanently Redirecting a Page in ASP.NET 4
"Rather that using Response.Redirect("newpage.aspx"), ASP.NET 4 introduces the RedirectPermanent method. To signal that the redirect is of a permanent nature (such as a url to a page cha ..."
Type
: Post
Tags
: .net, asp.net, asp.net 4, c#, html, web
http://dontcodetired.com/blog/post/Permanently-Redirecting-a-Page-in-ASPNET-4
ChildWindow in Silverlight 3
"SL 3 introduced the ChildWindow to allow easy creation of modal 'pop-up' windows inside our main window. Once you have added a new ChildWindow to your project you can customise its appearance ..."
Type
: Post
Tags
: c#, silverlight, silverlight 3, xaml
http://dontcodetired.com/blog/post/ChildWindow-in-Silverlight-3
Free Xaml drawing tool
"I stumbled upon a nice (free) open source drawing application (a la Adobe Illustrator) which allows saving in SVG but also XAML! So if you don't want to/cannot afford to use Blend this could be a ..."
Type
: Post
Tags
: .net, xaml, wpf, silverlight, silverlight 3, blend
http://dontcodetired.com/blog/post/Free-Xaml-drawing-tool
FeatureToggle v3.3 Released
"FeatureToggle is an open source feature toggling library for .NET.Version 3.3 was just released to NuGet and includes two minor new features as described below.FallbackValueDecoratorThe FallbackValueD ..."
Type
: Post
Tags
: featuretoggle, open source, .net
http://dontcodetired.com/blog/post/FeatureToggle-v33-Released
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22