Home
Archive
Contact
Search results for 'desktop qr code scanner-(yokoscan.net)'
2013 - Accomplishments, Failures, Learnings, and Thanks
"I started 2013 by quitting my job, and during the remainder of the year I learned a lot, made the odd mistake, and accomplished a few things. This is the obligatory end-of-year post, I hope it will in ..."
Type
: Post
Tags
: end of line
http://dontcodetired.com/blog/post/2013-Accomplishments-Failures-Learnings-and-Thanks
Auto-Generating Sequences of Integer Values in C#
When we need to generate a sequence of integer values, we can do it manually using some kind of loop
Type
: Post
Tags
: c# tips, c#, .net
http://dontcodetired.com/blog/post/Auto-Generating-Sequences-of-Integer-Values-in-C
FeatureToggle Version 3 Released
"Version 3 of my open source feature toggle library is now released to NuGet. Version 3 introduces some breaking changes and new features. Breaking Changes The WPF value convertor package has been rem ..."
Type
: Post
Tags
: featuretoggle, open source, .net
http://dontcodetired.com/blog/post/FeatureToggle-Version-3-Released
Using XAML Behaviours to stop MVVM Light Messenger Action Executing Multiple Times
"In MVVM Light, when we derive our ViewModel from ViewModelBase, we inherit a Cleanup() method. This method can be overridden, by default it will unregister all messages for the ViewModel, so calling C ..."
Type
: Post
Tags
: xaml, mvvm light, behaviours
http://dontcodetired.com/blog/post/Using-XAML-Behaviours-to-stop-MVVM-Light-Messenger-Action-Executing-Multiple-Times
Centralising RaiseCanExecuteChanged Logic in an MVVM Light Portable View Model
"When working with an MVVM Light sometime we need to “tell” the view that a command’s ability to be executed has changed. For example, when a user clicks a Start button to start a countdown, the Start ..."
Type
: Post
Tags
: c#, mvvm light, xaml, pcl
http://dontcodetired.com/blog/post/Centralising-RaiseCanExecuteChanged-Logic-in-an-MVVM-Light-Portable-View-Model
xUnit.net 2 Cheat Sheet
To compliment the release of my Testing .NET Code with xUnit.net 2 Pluralsight course, I’ve up
Type
: Post
Tags
: xunit, .net, c#, testing, tdd, quality
http://dontcodetired.com/blog/post/xUnitnet-2-Cheat-Sheet
Clean C# eBook Published
The final version of my free Clean C# eBook has just been published. You can download the bo
Type
: Post
Tags
: c#, writing
http://dontcodetired.com/blog/post/Clean-C-eBook-Published
New Pluralsight Course - Better .NET Unit Tests with AutoFixture
My new Pluralsight testing course was just released: Better .NET Unit Tests with AutoFixture: Get St
Type
: Post
Tags
: autofixture, testing, .net, pluralsight courses
http://dontcodetired.com/blog/post/New-Pluralsight-Course-Better-NET-Unit-Tests-with-AutoFixture
Open Source Thanks
"In a previous post (5 Ways to Contribute to Open Source - It’s Not All Code) I mentioned the simplest way to be involved in open source is to simply Tweet about the project or by saying thanks to the ..."
Type
: Post
Tags
: open source, people, profession
http://dontcodetired.com/blog/post/Open-Source-Thanks
Fixie - A Convention-based .NET Testing Framework
"Fixie is a relative newcomer to the .NET testing framework space. It throws away the idea of marking elements of test code with attributes in favour of a conventions based approach. At a high level, w ..."
Type
: Post
Tags
: c#, testing, fixie
http://dontcodetired.com/blog/post/Fixie-A-Convention-based-NET-Testing-Framework
Find a Designer for your Open Source Project
"Are you running an open source project? Need some help with your project CSS, perhaps a NuGet logo, or help with your GUI? It’s hard to find designers, so I made OS Designer Finder. If your open sour ..."
Type
: Post
Tags
: open source, design, ux, ui
http://dontcodetired.com/blog/post/Find-a-Designer-for-your-Open-Source-Project
FeatureToggle Version 2 Released
"Version 2 of my open source feature toggling .Net library has just been released to NuGet. V2 introduces a number of breaking changes – see release notes. It also include binary Windows Store DLLs as ..."
Type
: Post
Tags
: open source, featuretoggle
http://dontcodetired.com/blog/post/FeatureToggle-Version-2-Released
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
15-Second Favourite Programmer Music Survey
"Hi, I thought it would be cool to collate peoples favourite music album to code to. I created this Excel Web App survey – I would be grateful if you could take 15-seconds to tell me (anonymously) what ..."
Type
: Post
Tags
: profession
http://dontcodetired.com/blog/post/15-Second-Favourite-Programmer-Music-Survey
Automated Acceptance Testing with SpecFlow and Gherkin Course
With my new Pluralsight course you’ll learn how to narrow the gap between the business/custome
Type
: Post
Tags
: .net, pluralsight courses, testing, quality, specflow, gherkin
http://dontcodetired.com/blog/post/Automated-Acceptance-Testing-with-SpecFlow-and-Gherkin-Course
Using Azure Functions and Microsoft Flow to Send Notifications for NuGet Package Downloads
One of the NuGet packages I maintain is approaching 100,000 downloads. I thought it would be nice to
Type
: Post
Tags
: microsoft flow, azure, azure functions, serverless
http://dontcodetired.com/blog/post/Using-Azure-Functions-and-Microsoft-Flow-to-Send-Notifications-for-NuGet-Package-Downloads
You Don’t Have to Write a Generic Class to Use Generic Methods in C#
"We can create generic classes such as:class ThingWriter<T> { public void Write(T thing) { Console.WriteLine(thing); } } Here we’re defining a generic class, then usi ..."
Type
: Post
Tags
: c# tips, c#, .net
http://dontcodetired.com/blog/post/You-Done28099t-Have-to-Write-a-Generic-Class-to-Use-Generic-Methods-in-C
NUnit 3 Quick Tips: Asserting Within Ranges
If you are asserting that a value is equal to something and you want to specify some tolerance you c
Type
: Post
Tags
: nunit, testing, qa, quality, c#
http://dontcodetired.com/blog/post/NUnit-3-Quick-Tips-Asserting-Within-Ranges
Making 2019 Your Best Year Yet
"Whilst I’m not personally a fan of New Year’s Resolutions, preferring instead to adopt a mindset of continuous improvement, the end of a calendar year is as good a time as any to do a 12 month retrosp ..."
Type
: Post
Tags
: personal development, productivity, profession
http://dontcodetired.com/blog/post/Making-2019-Your-Best-Year-Yet
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
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18