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

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
What’s New in C# 10: Simplify Argument Null Checking Code "This is part of a series on the new features introduced with C# 10.Prior to C# 10 you may have had code similar to the following: public static string Join(string a, string b) { i ..." Type: Post
Tags : cs10newseries, c#, .net, .net core, C#10
http://dontcodetired.com/blog/post/Whats-New-in-C-10-Simplify-Argument-Null-Checking-Code
New Pluralsight Course: Reducing C# Code Duplication in Azure Functions "Azure Functions allow small discrete pieces of code to execute in response to an external stimulus such as a HTTP request, message queue message, new blob data, etc. Just because functions are easy t ..." Type: Post
Tags : azure functions, azure, pluralsight courses, serverless
http://dontcodetired.com/blog/post/New-Pluralsight-Course-Reducing-C-Code-Duplication-in-Azure-Functions
Redesigning DontCodeTired.Com (Part 4) - Adding Semantic HTML 5 Markup and Removing Unwanted Elements "Redesigning DontCodeTired.Com (Part 3) - Creating Content Reference Wireframes using Mobile-First Responsive In-Browser Design Adding New HTML5 Semantic Tags DontCodeTired.com is currently using ..." Type: Post
Tags : redesigning dontcodetired, web design, responsive web design, responsive design, web, web design
http://dontcodetired.com/blog/post/Redesigning-DontCodeTiredCom-(Part-4)-Adding-Semantic-HTML-5-Markup-and-Removing-Unwanted-Elements
Advanced SpecFlow: Using Hooks to Run Additional Automation Code SpecFlow is a tool that allows the writing of business-readable tests that can then be automated in Type: Post
Tags : testing, quality, specflow, gherkin, bdd, atdd, specification by example
http://dontcodetired.com/blog/post/Advanced-SpecFlow-Using-Hooks-to-Run-Additional-Automation-Code
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
Work with SQL Data with Fewer Lines of Code Using Dynamic C# "If you need to query a SQL database and work with the data quickly you can use dynamic C# to write less boilerplate code.For example, if you wanted to query a Customer table (or a more complex joined ..." Type: Post
Tags : C#, .net
http://dontcodetired.com/blog/post/Work-with-SQL-Data-with-Fewer-Lines-of-Code-Using-Dynamic-C
ICYMI C# 8 New Features: Simplify Array Access and Range Code This is part 5 in a series of articles. One of the new features that C# 8 introduced was the ability Type: Post
Tags : icymcs8series, C#, .net, .net core, C#8
http://dontcodetired.com/blog/post/ICYMI-C-8-New-Features-Simplify-Array-Access-and-Range-Code
ICYMI C# 8 New Features: Upgrade Interfaces Without Breaking Existing Code This is part 7 in a series of articles. Prior to C# 8, if you add members to an interface, exiting c Type: Post
Tags : icymcs8series, c#, .net, .net core, C#8
http://dontcodetired.com/blog/post/ICYMI-C-8-New-Features-Upgrade-Interfaces-Without-Breaking-Existing-Code
Write Less Repetitive Boilerplate Code with Fody My newest Pluralsight course on Fody was just released. Fody is a tool that frees us up from having Type: Post
Tags : fody, productivity, code generation, c#
http://dontcodetired.com/blog/post/Write-Less-Repetitive-Boilerplate-Code-with-Fody
Simplify and Reduce Test Code with AutoFixture AutoFixture is a library that you can use alongside your testing framework to reduce the amount of b Type: Post
Tags : testing, c#, .net, .net core, quality, xunit.net, autofixture
http://dontcodetired.com/blog/post/Simplify-and-Reduce-Test-Code-with-AutoFixture
Determine if code is currently running in Blend "You can use IsInDesignTool to change behaviour of code if it is running in a designer (Blend), e.g.  if (System.ComponentModel.DesignerProperties.IsInDesignTool)     // code ..." Type: Post
Tags : c#, silverlight, silverlight 3, xaml, blend
http://dontcodetired.com/blog/post/Determine-if-code-is-currently-running-in-Blend
Redesigning DontCodeTired.Com (Part 5) - Showing and Hiding Mobile Specific Elements "Taking a "mobile-first" approach, the initial work on styling will be for mobile devices, i.e. small screen resolutions. Getting Started In a previous post in this series I added the s ..." Type: Post
Tags : redesigning dontcodetired, web design, responsive web design, responsive design, web, web design
http://dontcodetired.com/blog/post/Redesigning-DontCodeTiredCom-(Part-5)-Showing-and-Hiding-Mobile-Specific-Elements
ICYMI C# 8 New Features: Write Less Code with Using Declarations This is part 2 in a series of articles. One nice little enhancement introduced in C# 8 helps to simp Type: Post
Tags : icymcs8series, C#, .net, .net core, C#8
http://dontcodetired.com/blog/post/ICYMI-C-8-New-Features-Write-Less-Code-with-Using-Declarations
ICYMI C# 9 New Features: Reducing Code with Target-typed New Expressions This is part of a series of articles on new features introduced in C# 9. C# 9 introduced some enhanc Type: Post
Tags : icymcs9series, c#, .net, .net core, C#9
http://dontcodetired.com/blog/post/ICYMI-C-9-New-Features-Reducing-Code-with-Target-typed-New-Expressions
Redesigning DontCodeTired.Com (Part 3) - Creating Content Reference Wireframes using Mobile-First Responsive In-Browser Design "Redesigning DontCodeTired.Com (Part 2) - Designing with Personality This step is all about deciding what content will go where, and more importantly what content will be removed when viewed on mo ..." Type: Post
Tags : redesigning dontcodetired, web design, responsive web design, responsive design, web, web design
http://dontcodetired.com/blog/post/Redesigning-DontCodeTiredCom-(Part-3)-Creating-Content-Reference-Wireframes-using-Mobile-First-Responsive-In-Browser-Design
Modify And Save an EF EntityDataSource Bound Entity From Code Behind "If you're using databound controls (e.g. FormView) and binding them to an EntityDataSource you might want to be able to modify (and save) the underlying entity from code. For example, if you have ..." Type: Post
Tags : c#, databinding, asp.net, .net, web, entity framework
http://dontcodetired.com/blog/post/Modify-And-Save-an-EF-EntityDataSource-Bound-Entity-From-Code-Behind
Cleaner Code in Unit Tests One thing that can quickly become messy when writing unit tests is the creation of test objects. If Type: Post
Tags : .net, c#, tdd, testing
http://dontcodetired.com/blog/post/Cleaner-Code-in-Unit-Tests
Albums to Code To "I did a little survey to ask what people’s favourite albums were to code to, here’s the results. Hopefully will give some ideas for some different aural code fuel. Artist name Album name Amon A ..." Type: Post
Tags : people, profession
http://dontcodetired.com/blog/post/Albums-to-Code-To
Redesigning DontCodeTired.Com (Part 6) - Creating Mobile Styling Using a Typography-Out Approach "Redesigning DontCodeTired.Com Part 5 - Showing and Hiding Mobile Specific Elements The idea of typography-out is that for websites where the textual content is king, it makes sense to elevate it ..." Type: Post
Tags : redesigning dontcodetired, web design, responsive web design, responsive design, web, web design, sass, css, typography
http://dontcodetired.com/blog/post/Redesigning-DontCodeTiredCom-(Part-6)-Creating-Mobile-Styling-Using-a-Typography-Out-Approach