Home
Archive
Contact
Search results for 'desktop qr code scanner-(yokoscan.net)'
Silverlight Cooking Timer
"http://www.dontcodetired.com/live/cookingtimer/"
Type
: Post
Tags
: c#, mvvm, silverlight, silverlight 3, xaml
http://dontcodetired.com/blog/post/Silverlight-Cooking-Timer
WeightTracker (beta) Silverlight App Now Live
"http://www.dontcodetired.com/live/weighttracker/"
Type
: Post
Tags
: .net, silverlight, silverlight 3
http://dontcodetired.com/blog/post/WeightTracker-(beta)-Silverlight-App-Now-Live
(Unofficial) BlogEngine.Net Logos
"As part of Don't Code Tired redesign I wanted a logo for BlogEngine.Net, I could find an existing one so I created the below: They are available for free download (includi ..."
Type
: Post
Tags
: blogengine.net
http://dontcodetired.com/blog/post/(Unofficial)-BlogEngineNet-Logos
Pretty Method Display in xUnit.net
One little-known feature of the xUnit.net testing framework is the ability to write test method name
Type
: Post
Tags
: xunit.net, C#, testing, qa, quality, .net, .net core
http://dontcodetired.com/blog/post/Pretty-Method-Display-in-xUnitnet
Synology DiskStation DS1618 Plus Setup And Initial Review
Early this year I tweeted this: Think 2020 is the year to my first NAS. Would you still recommend a
Type
: Post
Tags
: hardware, nas, networking, Synology
http://dontcodetired.com/blog/post/Synology-DiskStation-DS1618-Plus-Setup-And-Initial-Review
Copy and Paste in Silverlight 4
"Silverlight 4 added the static Clipboard class with the clearly-named SetText, GetText and ContainsText methods. If running in-browser or out-of-browser without elevated trust the Clipboard metho ..."
Type
: Post
Tags
: .net, c#, oob, out of browser, silverlight, silverlight 4, sloob, wpf, xaml
http://dontcodetired.com/blog/post/Copy-and-Paste-in-Silverlight-4
Writing Azure Functions with Function Monkey: Dependency Injection
"In my continued exploration/experimentation with Function Monkey I thought I’d look at how easy/hard it is to inject dependencies into handlers. Previous articles: Creating Azure Functions with Functi ..."
Type
: Post
Tags
: azure, azure functions, serverless, .net, C#
http://dontcodetired.com/blog/post/Writing-Azure-Functions-with-Function-Monkey-Dependency-Injection
Notification Window "toast" in Silverlight 4
"To create "toast" notifications (small popup messages that appear at the bottom right on Windows) the NotificationWindow class can be used. NotificationWindow will only work in out-of-b ..."
Type
: Post
Tags
: .net, c#, out of browser, oob, silverlight, silverlight 4, wpf, xaml
http://dontcodetired.com/blog/post/Notification-Window-toast-in-Silverlight-4
Getting Message Metadata When Using Azure Functions Storage Queue Triggers
When creating an Azure Function that is triggered by incoming messages on a Storage Queue, the type
Type
: Post
Tags
: azure, azure functions, C#, serverless
http://dontcodetired.com/blog/post/Getting-Message-Metadata-When-Using-Azure-Functions-Storage-Queue-Triggers
Getting Started with SASS for Microsoft Developers
"Sass (Syntactically Awesome Style Sheets) tries to make CSS fun again. It's a set of "extensions" on top of standard CSS that make it easier to write and maintain style sheets. A Sass file compi ..."
Type
: Post
Tags
: .net, asp.net, css, html, responsive design, responsive web design, sass, web, web design
http://dontcodetired.com/blog/post/Getting-Started-with-SASS-for-Microsoft-Developers
NUnit 3 Quick Tips: Asserting On Object Reference Equality
When asserting on equality using the EqualConstraint you may not always get the behaviour you want d
Type
: Post
Tags
: nunit, testing, qa, quality, c#
http://dontcodetired.com/blog/post/NUnit-3-Quick-Tips-Asserting-On-Object-Reference-Equality
Persistent Actors in Akka.NET
By default, actors in Akka.NET lose their internal state when they are restarted, for example due to
Type
: Post
Tags
: .net, akka.net, actor model
http://dontcodetired.com/blog/post/Persistent-Actors-in-AkkaNET
Creating Your Own Custom Dynamic C# Classes
C# provides pre-supplied dynamic types such as the ExpandoObject. It is also possible to create new
Type
: Post
Tags
: c#, .net
http://dontcodetired.com/blog/post/Creating-Your-Own-Custom-Dynamic-C-Classes
New FeatureToggle Release: v3.4 With Fluent Syntax
"FeatureToggle is an open source feature toggling / feature switching library for .NET.Version 3.4 Introduces an new additional way to get the value of whether a toggle is enabled or not.In versions to ..."
Type
: Post
Tags
: featuretoggle, open source, .net
http://dontcodetired.com/blog/post/New-FeatureToggle-Release-v34-With-Fluent-Syntax
Gherkin Cheat Sheet
"Gherkin is a Business Readable Domain Specific Language. It allows the documentation of what a system should do in natural language (multiple languages are supported) and allows test automation code t ..."
Type
: Post
Tags
: testing, quality, specflow, gherkin, bdd, atdd, specification by example
http://dontcodetired.com/blog/post/Gherkin-Cheat-Sheet
SilverKeys Part 3
"The UI (or should I say UX now?) is 90% complete (for this iteration that is) as the image below shows. There are a few bug fixes left to complete, plus I'd like to to some moderate re-factoring o ..."
Type
: Post
Tags
: silverkeys, silverlight, wpf
http://dontcodetired.com/blog/post/SilverKeys-Part-3
3 Surprising Things to Do with the Console in C#
The Console class can do more than just WriteLine(). Here’s 3 fun/weird/useful/annoying things
Type
: Post
Tags
: c# tips, c#, .net, console applications
http://dontcodetired.com/blog/post/3-Surprising-Things-to-Do-with-the-Console-in-C
The Joys of Silence
"I recently took possession of new desktop PC. As a Pluralsight author one of the unique considerations when choosing a new machine was generated noise. After some research I settled on sourcing the co ..."
Type
: Post
Tags
: hardware, productivity, tools
http://dontcodetired.com/blog/post/The-Joys-of-Silence
50 App By Christmas: A New Challenge
"So I’ve been running this series: 50 Apps by Christmas. Currently I’ve got 29 new apps to create before Christmas 2013 (next week). As I’m not going to hit this (my book has been a higher priority) I ..."
Type
: Post
Tags
: windows 8 apps, winrt, 50appsbychristmas2013, windows phone apps, ayearofapps
http://dontcodetired.com/blog/post/50-App-By-Christmas-A-New-Challenge
Handling CTRL-C in .NET Console Applications
By default, pressing CTRL-C while a console application is running will cause it to terminate. If we
Type
: Post
Tags
: c# tips, c#, .net, console applications
http://dontcodetired.com/blog/post/Handling-CTRL-C-in-NET-Console-Applications
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18