Search results for 'desktop qr code scanner-(yokoscan.net)'

Azure Functions Continuous Deployment with Azure Pipelines: Part 6 - Creating an Azure DevOps Release Pipeline This is the sixth part in a series demonstrating how to setup continuous deployment of an Azure Func Type: Post
Tags : funcpipeseries, azure, azuredevops, azure functions, c#
http://dontcodetired.com/blog/post/Azure-Functions-Continuous-Deployment-with-Azure-Pipelines-Part-6-Creating-an-Azure-DevOps-Release-Pipeline
Beyond the Compiler with ConventionTests "We often have conventions in our code. For example all DTOs/entity/etc. classes should be in a specific namespace, or the name of certain types of class should end with a given word. Another example, ..." Type: Post
Tags : conventiontests, teststack, c#, testing
http://dontcodetired.com/blog/post/Beyond-the-Compiler-with-ConventionTests
Simplifying Parameter Null and Other Checks with the GuardClauses Library "Often you want to add null checking and other check code at the start of a method to ensure all the values passed into the method are valid before continuing. For example the following method checks t ..." Type: Post
Tags : C#, .net, .net core
http://dontcodetired.com/blog/post/Simplifying-Parameter-Null-and-Other-Checks-with-the-GuardClauses-Library
Different Ways to Parse Http Request Data in Http-triggered Azure Functions (This post refers to Azure Functions v2) There are different ways to access both the request data an Type: Post
Tags : azure, azure functions, c#, serverless, .net, .net core
http://dontcodetired.com/blog/post/Different-Ways-to-Parse-Http-Request-Data-in-Http-triggered-Azure-Functions
Using the Azure SignalR Service Bindings in Azure Functions to Create Real-time Serverless Applications The Azure SignalR Service is a serverless offering from Microsoft to facilitate real-time communicat Type: Post
Tags : azure, azure functions, c#, serverless, .net
http://dontcodetired.com/blog/post/Using-the-Azure-SignalR-Service-Bindings-in-Azure-Functions-to-Create-Real-time-Serverless-Applications
The Toggle Function in jQuery "jQuery's Toggle function allows you to specify 2 or more functions to be called alternately on each click. Specifying 2 functions you can create a simple 2 state toggle. The example below (se ..." Type: Post
Tags : jquery, html
http://dontcodetired.com/blog/post/The-Toggle-Function-in-jQuery
Adding Tuple Support to .NET Classes in C# Edit: Updated to improve clarity (thanks to Paulo in the comments for helping to improve his article Type: Post
Tags : C#, .net, .net core
http://dontcodetired.com/blog/post/Adding-Tuple-Support-to-NET-Classes-in-C
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
You Can Watch All My Pluralsight Training Videos for Free This April "No credit card needed, sign up for free now and start watching all my Pluralsight training courses for free. Some suggestions: C# C# Attributes: Power and Flexibility for Your Code Working with Nul ..." Type: Post
Tags : pluralsight courses, personal development, profession, career development
http://dontcodetired.com/blog/post/You-Can-Watch-All-My-Pluralsight-Training-Videos-for-Free-This-April
What’s New in C# 10: Take Control of Interpolated String Handling "This is part of a series on the new features introduced with C# 10.In C# you can create an interpolated string such as: $"{DateTime.Now}: starting..."The compiler will transform this to a single strin ..." Type: Post
Tags : cs10newseries, c#, .net, .net core, C#10
http://dontcodetired.com/blog/post/Whats-New-in-C-10-Take-Control-of-Interpolated-String-Handling
What’s New in C# 10: Easier Lambda Expressions This is part of a series on the new features introduced with C# 10. Prior to C# 10, working with lam Type: Post
Tags : cs10newseries, c#, .net, .net core, C#10
http://dontcodetired.com/blog/post/Whats-New-in-C-10-Easier-Lambda-Expressions
Using Server Side Timers and SignalR in ASP.NET MVC Applications "I thought it would be fun to create an “Internet uptime” page that you can see live here on Azure Websites. It shows how long the Internet (since ARPANET) has been around for. Creating a Class that c ..." Type: Post
Tags : web, signalr, html, c#, asp.net
http://dontcodetired.com/blog/post/Using-Server-Side-Timers-and-SignalR-in-ASPNET-MVC-Applications
10 Pluralsight Courses–A Milestone "I just had my 10th Pluralsight course released; Building .NET Console Applications in C# teaches how to create well-designed, fully-featured .NET Console applications. When I hit 7 courses I wrote Thr ..." Type: Post
Tags : pluralsight courses, profession, personal development
http://dontcodetired.com/blog/post/10-Pluralsight-Coursese28093A-Milestone
Maintaining Basic State With jQuery And CSS "When working on the client, you may have a number of HTML elements that have some form of logical state, e.g. coins (heads/tails), cards (face up/down), importance (high, medium, low), etc. You c ..." Type: Post
Tags : asp.net, html, jquery, css, javascript
http://dontcodetired.com/blog/post/Maintaining-Basic-State-With-jQuery-And-CSS
Using Predicates in Akka.NET Receive Actors When using the Receive actor API in Akka.NET, we can take advantage of overloads of the Receive meth Type: Post
Tags : .net, akka.net, distributed computing, actor model
http://dontcodetired.com/blog/post/Using-Predicates-in-AkkaNET-Receive-Actors
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
Using AutoFixture To Generate Anonymous Test Data in Web UI Automation With BDDfy and Seleno I’m currently working on an AutoFixture Pluralsight course and it got me thinking about using Type: Post
Tags : testing, autofixture, bddfy, seleno, teststack, ui testing, web, asp.net, .net
http://dontcodetired.com/blog/post/Using-AutoFixture-To-Generate-Anonymous-Test-Data-in-Web-UI-Automation-With-BDDfy-and-Seleno
ICYMI C# 9 New Features: Create Immutable Objects with Records "This is part of a series of articles on new features introduced in C# 9. C# 9 introduced a new type of object that is neither a class or a struct. This new type is called a  record. In C# 9 a rec ..." Type: Post
Tags : icymcs9series, c#, .net, .net core, C#9
http://dontcodetired.com/blog/post/ICYMI-C-9-New-Features-Create-Immutable-Objects-with-Records
Switchable Actor Behaviour in Akka.NET One of the things that actors can do is change their behaviour in response to an incoming message. T Type: Post
Tags : .net, akka.net, distributed computing, actor model
http://dontcodetired.com/blog/post/Switchable-Actor-Behaviour-in-AkkaNET
Actor Models Come to .NET Developers with Akka.NET Akka.NET is a port of the Java/Scala Akka framework. In some ways, the emergence of Akka.NET could b Type: Post
Tags : .net, akka.net, distributed computing, actor model
http://dontcodetired.com/blog/post/Actor-Models-Come-to-NET-Developers-with-AkkaNET