Home
Archive
Contact
Search results for 'desktop qr code scanner-(yokoscan.net)'
Testing for Thrown Exceptions in NUnit
In a previous post, testing for thrown exceptions using xUnit.net was demonstrated. In this post we&
Type
: Post
Tags
: nunit, testing, qa, c#
http://dontcodetired.com/blog/post/Testing-for-Thrown-Exceptions-in-NUnit
Testing for Thrown Exceptions in MSTest V2
In previous posts we looked at testing for thrown exceptions in xUnit.net and NUnit. In this post we
Type
: Post
Tags
: mstest, testing, qa, c#
http://dontcodetired.com/blog/post/Testing-for-Thrown-Exceptions-in-MSTest-V2
Setting Up Mock ref Return Values in Moq
I recently received a message related to my Mocking in .NET Core Unit Tests with Moq: Getting Starte
Type
: Post
Tags
: mocking, testing, qa, xunit.net
http://dontcodetired.com/blog/post/Setting-Up-Mock-ref-Return-Values-in-Moq
Prevent Secrets From Accidentally Being Committed to Source Control in ASP.NET Core Apps
One problem when dealing with developer “secrets” in development is accidentally checkin
Type
: Post
Tags
: .net core, .net, C#, asp.net core, asp.net
http://dontcodetired.com/blog/post/Prevent-Secrets-From-Accidentally-Being-Committed-to-Source-Control-in-ASPNET-Core-Apps
What I Learned Building My First 4 Windows 8 Apps
"This is a bit of a brain-dump, in no particular order, of things I learned building my first 4 Windows 8 (C# XAML) apps: - Countdown To - Big Screen Countdown - BizBuzBingo - Code Retreat Countdown A ..."
Type
: Post
Tags
: windows 8 apps, windows 8, apps, tablet
http://dontcodetired.com/blog/post/What-I-Learned-Building-My-First-4-Windows-8-Apps
Introducing InAppPurchaseToggle for Windows Store In App Purchase
"I just released version 2 of a new open source project called InAppPurchaseToggle. It simplifies querying if the current user has paid for a particular in-app-purchase (IAP). It’s convention based and ..."
Type
: Post
Tags
: windows 8 apps, windows 8, open source, inapppurchasetoggle, in app purchase, winrt
http://dontcodetired.com/blog/post/Introducing-InAppPurchaseToggle-for-Windows-Store-In-App-Purchase
Brownfield Application Development (Part 2) - Lose Weight, Feel Great
"If there was The Biggest Loser for software, legacy applications would be up there sweating on the treadmill and trying to resist the chocolate cake. One of the characteristics of legacy code bas ..."
Type
: Post
Tags
: brownfield application development
http://dontcodetired.com/blog/post/Brownfield-Application-Development-(Part-2)-Lose-Weight-Feel-Great
Non Short Circuiting C# Conditional Operators
Most of the time when writing C# programs we use the short-circuiting conditional operators. These o
Type
: Post
Tags
: c# tips, c#, .net
http://dontcodetired.com/blog/post/Non-Short-Circuiting-C-Conditional-Operators
Running Silverlight 3 Application Out Of Browser
"This is pleasantly simple to do :) In response to a user action (clicking a button, etc.) add the following code: Application.Current.Install(); e.g. private void Button_Click_1(object sende ..."
Type
: Post
Tags
: silverlight, silverlight 3, c#, oob, out of browser
http://dontcodetired.com/blog/post/Running-Silverlight-3-Application-Out-Of-Browser
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
Silverlight Open and Save Dialog Boxes
"If you want your Silverlight app to be able to load and save data to the users file system in a location of their choice (such as My Documents, Desktop, etc.) you can use the SaveFileDialog and OpenFi ..."
Type
: Post
Tags
: .net, c#, silverlight, silverlight 3
http://dontcodetired.com/blog/post/Silverlight-Open-and-Save-Dialog-Boxes
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
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
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
SpecFlow Cheat Sheet
"SpecFlow is a tool that allows the writing of business-readable tests that can then be automated in code. If you’re new to SpecFlow check out my Pluralsight course or the resources page. The cheat she ..."
Type
: Post
Tags
: testing, quality, specflow, gherkin, bdd, atdd, specification by example
http://dontcodetired.com/blog/post/SpecFlow-Cheat-Sheet
Setting Foreground and Background Colours in .NET Console Applications
In addition to doing some fun/weird/useful/annoying things in Console applications, we can also set
Type
: Post
Tags
: c# tips, c#, .net, console applications
http://dontcodetired.com/blog/post/Setting-Foreground-and-Background-Colours-in-NET-Console-Applications
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
Scholar Open Source Project
"Scholar is now up on Codeplex. Scholar is a new open source project that will provide a starting point for developers to create distributed data processing such as the SETI@home project. It will use A ..."
Type
: Post
Tags
: .net, asp.net, silverlight, xaml, azure, scholar, open source
http://dontcodetired.com/blog/post/Scholar-Open-Source-Project
MVVM Light Messenger Action Executing Multiple Times
"With MVVM Light you can get into a situation where you code-behind's message handler gets called multiple times. If the ctor for the view is registering for a message then the every time the ..."
Type
: Post
Tags
: c#, mvvm, wp7, mvvm light, windows phone 7
http://dontcodetired.com/blog/post/MVVM-Light-Messenger-Action-Executing-Multiple-Times
Thunder (beta)
"I've been working on a Silverlight 3 drum machine/sequencer called Thunder, the first (beta) version is now available at: http://www.dontcodetired.com/live/thunder/ It' ..."
Type
: Post
Tags
: c#, blend, silverlight, silverlight 3, wpf, xaml, thunder
http://dontcodetired.com/blog/post/Thunder-(beta)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18