Search results for 'Investment sa sugal(ph365.mx)'

New Pluralsight Course: Testing C# Code in Production with Scientist.NET My latest Pluralsight course is now available for viewing. It demonstrates how to use the Scientist. Type: Post
Tags : pluralsight courses, .net, c#, quality, testing
http://dontcodetired.com/blog/post/New-Pluralsight-Course-Testing-C-Code-in-Production-with-ScientistNET
.NET Document Databases with Marten Document databases are a form of NoSQL database that store items (objects) as single documents rathe Type: Post
Tags : c#, .net, data, marten, nosql
http://dontcodetired.com/blog/post/NET-Document-Databases-with-Marten
No App Is An Island "No app is an island entire of itself; every app is a piece of the continent, a part of the main (Apologies to John Donne) It’s very easy to be so focussed (either as a developer/team/department) on a ..." Type: Post
Tags : software development, profession, process
http://dontcodetired.com/blog/post/No-App-Is-An-Island
Refactoring Production Code With Experiments and Scientist.NET When refactoring a part of an application we can use the existing tests to give a level of confidenc Type: Post
Tags : c#, quality, .net, testing
http://dontcodetired.com/blog/post/Refactoring-Production-Code-With-Experiments-and-ScientistNET
Permanently Redirecting a Page in ASP.NET 4 "Rather that using Response.Redirect("newpage.aspx"), ASP.NET 4 introduces the RedirectPermanent method. To signal that the redirect is of a permanent nature (such as a url to a page cha ..." Type: Post
Tags : .net, asp.net, asp.net 4, c#, html, web
http://dontcodetired.com/blog/post/Permanently-Redirecting-a-Page-in-ASPNET-4
Session State Compression in ASP.NET 4 "ASP.NET 4 introduces the ability to turn on compression of session data. Compression is disabled by default, to enable it modify the web.config file and set the new compressionEnabled attribute ..." Type: Post
Tags : .net, asp.net, asp.net 4, web
http://dontcodetired.com/blog/post/Session-State-Compression-in-ASPNET-4
Databinding Conversions Using Functions in UWP XAML Apps "When using compiled data bindings using the x:Bind syntax in UWP apps, as an alternative to using an IValueConverter, a function can instead be defined. This means that whenever a value needs converti ..." Type: Post
Tags : c#, UWP, xaml
http://dontcodetired.com/blog/post/Databinding-Conversions-Using-Functions-in-UWP-XAML-Apps
Playing and Processing Audio in UWP Apps with Audio Graphs UWP apps can take advantage of the Audio Graph API. This allows the creation of audio nodes into an Type: Post
Tags : uwp, c#
http://dontcodetired.com/blog/post/Playing-and-Processing-Audio-in-UWP-Apps-with-Audio-Graphs
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
SpecFlow 2 Cheat Sheet "Below is a revised version of my original SpecFlow cheat sheet updated for v2. Just right click, save-as to get your copy." Type: Post
Tags : testing, quality, specflow, gherkin, bdd, atdd, specification by example
http://dontcodetired.com/blog/post/SpecFlow-2-Cheat-Sheet
Introducing FeatureToggle "You can now take a first glance at my new open source project FeatureToggle It's early days yet and I'm not quite what direction it will take. The next thing I'd like to upload ..." Type: Post
Tags : open source, featuretoggle
http://dontcodetired.com/blog/post/Introducing-FeatureToggle
FeatureToggle v3.3 Released "FeatureToggle is an open source feature toggling library for .NET.Version 3.3 was just released to NuGet and includes two minor new features as described below.FallbackValueDecoratorThe FallbackValueD ..." Type: Post
Tags : featuretoggle, open source, .net
http://dontcodetired.com/blog/post/FeatureToggle-v33-Released
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
Previewing the Generated PostgreSQL SQL for a Query in Marten Marten is a .NET document database library that uses an underlying PostgreSQL database to store obje Type: Post
Tags : c#, .net, data, marten, nosql
http://dontcodetired.com/blog/post/Previewing-the-Generated-PostgreSQL-SQL-for-a-Query-in-Marten
Mocking with FeatureToggle "I was asked a question on Twitter so I thought I’d write it up here. When using the FeatureToggle library you may have some some code that behaves differently if a toggle is enabled. When writing a te ..." Type: Post
Tags : mocking, testing, featuretoggle, c#
http://dontcodetired.com/blog/post/Mocking-with-FeatureToggle
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
FeatureToggle v4 RC2 with .NET Core Configuration Changes "The pre-release RC2 version of FeatureToggle with .NET Core support is now available on NuGet. See release notes and GitHub issues for additional background/breaking changes/limitations. RC2 builds ..." Type: Post
Tags : featuretoggle, open source, .net, .net core
http://dontcodetired.com/blog/post/FeatureToggle-v4-RC2-with-NET-Core-Configuration-Changes
New Pluralsight Course: Error Handling in C# 10 "My newest Pluralsight course Error Handling in C# 10 was just released.This is an updated course of my previous error handling courses to bring the demo code up to C# 10, .NET 6, Visual Studio 2022.Co ..." Type: Post
Tags : C#, .net, pluralsight courses, profession
http://dontcodetired.com/blog/post/New-Pluralsight-Course-Error-Handling-in-C-10
What’s New in C# 10: Write Less Code and Reduce Repeated Using Directives This is part of a series on the new features introduced with C# 10. There are 2 related features in Type: Post
Tags : cs10newseries, c#, .net, .net core, C#10
http://dontcodetired.com/blog/post/Whats-New-in-C-10-Write-Less-Code-and-Reduce-Repeated-Using-Directives
Catching Errors in Windows Services "In Windows Service put a try..catch around InitializeComponent in New constructor to catch and handle any init problems, especially when using components that have external dependencies such as perfor ..." Type: Post http://dontcodetired.com/blog/post/Catching-Errors-in-Windows-Services