Home
Archive
Contact
Search results for 'MALAYSIA 4D, [OFFICIAL | winbox-login.com] , MALAYSIA 4D, FREE 10, [OFFICIAL | winbox-login.com] cE'
Starting Where You're At
Someone says to you: "you must be doing agile, continuous integration, continuous deployment, automa
Type
: Post
Tags
: profession, personal development, productivity
http://dontcodetired.com/blog/post/Starting-Where-Youre-At
Using Python Expressions from C# Code
Utilizing the dynamic features of C# and the Dynamic Language Runtime (DLR), among other things, all
Type
: Post
Tags
: .net, c#
http://dontcodetired.com/blog/post/Using-Python-Expressions-from-C-Code
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
Consuming Server-Side SignalR Events in Universal Windows App Clients
"In a previous article I wrote about creating server side SignalR timer events. As part of my learning of SignalR I wanted to see how easy it would be to create a Universal Windows app consuming these ..."
Type
: Post
Tags
: windows phone, windows store, web, signalr, c#, asp.net
http://dontcodetired.com/blog/post/Consuming-Server-Side-SignalR-Events-in-Universal-Windows-App-Clients
No App Is An Island
"No app is an island entire of itself; every app is a piece of the continent, a part of the main (Apologies to John Donne) It’s very easy to be so focussed (either as a developer/team/department) on a ..."
Type
: Post
Tags
: software development, profession, process
http://dontcodetired.com/blog/post/No-App-Is-An-Island
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
Testing Akka.NET Actor Systems
My new Pluralsight course Akka.NET Testing Fundamentals is now available. Testing actor system bring
Type
: Post
Tags
: .net, akka.net, actor model
http://dontcodetired.com/blog/post/Testing-AkkaNET-Actor-Systems
Testing That Your Public APIs Have Not Changed Unexpectedly with PublicApiGenerator and Approval Tests
We can write automated tests to cover various aspects of the code we write. We can write unit/integr
Type
: Post
Tags
: approval tests, testing, qa, c#, .net
http://dontcodetired.com/blog/post/Testing-That-Your-Public-APIs-Have-Not-Changed-Unexpectedly-with-PublicApiGenerator-and-Approval-Tests
Using Cyclomatic Complexity as an Indicator of Clean Code
Cyclomatic complexity is one way to measure how complicated code is, it measures how complicated the
Type
: Post
Tags
: c#, clean code, quality, metrics
http://dontcodetired.com/blog/post/Using-Cyclomatic-Complexity-as-an-Indicator-of-Clean-Code
Reducing Magic Strings with Microsoft Feature Toggles (Microsoft.FeatureManagement)
This is the second part in a series. EDIT: my Feature Management Pluralsight training course is now
Type
: Post
Tags
: .net, .net core, c#, featuretoggle, msftseries, FeatureManagement
http://dontcodetired.com/blog/post/Reducing-Magic-Strings-with-Microsoft-Feature-Toggles-(MicrosoftFeatureManagement)
Testing ASP.NET Core MVC Controllers: Getting Started
When writing ASP.NET Core MVC web applications, you may want to test that controller actions behave
Type
: Post
Tags
: testing, .net core, xunit.net, asp.net core
http://dontcodetired.com/blog/post/Testing-ASPNET-Core-MVC-Controllers-Getting-Started
Using LinqToTwitter in Windows Store Apps
"LinqToTwitter is an open source library to help work with the Twitter API. It can be used in a Windows Store app to authorise a user and your app and allow querying and sending of Tweets. Setting Up F ..."
Type
: Post
Tags
: linqtotwitter, windows store apps, c#
http://dontcodetired.com/blog/post/Using-LinqToTwitter-in-Windows-Store-Apps
Using FeatureToggle In Your Windows 8 WinRT App
"I just released an update to my open source feature toggling library FeatureToggle. Version 1.2.0 add support for using feature toggles in your Windows 8 WinRT .Net (C#) app. For this initial release, ..."
Type
: Post
Tags
: open source, featuretoggle
http://dontcodetired.com/blog/post/Using-FeatureToggle-In-Your-Windows-8-WinRT-App
Beyond Simple Asserts with ApprovalTests
In a test, we are often testing (asserting) individual items such as an (int) age is correct or a st
Type
: Post
Tags
: approval tests, testing, qa, pluralsight courses, .net, c#
http://dontcodetired.com/blog/post/Beyond-Simple-Asserts-with-ApprovalTests
Binding a Dynamically Created WPF Control’s ItemTemplate to a DataTamplate Defined in XAML
"I was asked a question about this on Twitter, so thought I’d create a quick post about it. The example below shows how to use a DataTemplate that is defined in XAML with a ListView control that is dyn ..."
Type
: Post
Tags
: wpf, xaml, c#
http://dontcodetired.com/blog/post/Binding-a-Dynamically-Created-WPF-Controle28099s-ItemTemplate-to-a-DataTamplate-Defined-in-XAML
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
An Update on Keeping Software Soft
"I’m writing my first ever book calling Keeping Software Soft. I just published 3 new chapters: Technical Debt Software Craftsmanship, Professionalism, and Personal Development What Programmers Want a ..."
Type
: Post
Tags
: keeping software soft, writing
http://dontcodetired.com/blog/post/An-Update-on-Keeping-Software-Soft
Running xUnit.net Tests on Specific Threads for WPF and Other UI Tests
Sometimes when you write a test with xUnit.net (or other testing frameworks) you may run into proble
Type
: Post
Tags
: xunit.net, testing, qa, quality, .net, .net core
http://dontcodetired.com/blog/post/Running-xUnitnet-Tests-on-Specific-Threads-for-WPF-and-Other-UI-Tests
Drag and Drop in Silverlight 4
"To enable drag and drop support on a Silverlight UIElement the AllowDrop property needs to be set to True (it is false by default). The Drop event can now be subscribed to, in which the dropped item(s ..."
Type
: Post
Tags
: .net, c#, silverlight, silverlight 4, wpf, xaml
http://dontcodetired.com/blog/post/Drag-and-Drop-in-Silverlight-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
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26