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

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
Specifying How Soon a Storage Queue Message Will Be Retried in an Azure Function By default, if an exception occurs in an Azure Function that uses a Storage Queue trigger, the messa Type: Post
Tags : azure, azure functions, C#, serverless
http://dontcodetired.com/blog/post/Specifying-How-Soon-a-Storage-Queue-Message-Will-Be-Retried-in-an-Azure-Function
Dealing With Unprocessed Storage Queue Poison Messages in Azure Functions If an Azure Function that is triggered by a message on a Storage Queue throws an exception, the mess Type: Post
Tags : azure, azure functions, C#, serverless
http://dontcodetired.com/blog/post/Dealing-With-Unprocessed-Storage-Queue-Poison-Messages-in-Azure-Functions
Telling a View to display a Message Dialog from the ViewModel With MVVMLight in Windows 8.1 Store Apps "The technique below is one technique, others exist, but the design goals of this approach are: The ViewModel cannot know or reference the View The ViewModel should should not care how the View displ ..." Type: Post
Tags : c#, mvvm, mvvm light, windows store apps, xaml, portable class library
http://dontcodetired.com/blog/post/Telling-a-View-to-display-a-Message-Dialog-from-the-ViewModel-With-MVVMLight-in-Windows-81-Store-Apps
Using Sass Maps to Save Time in CSS Sass is a superset of CSS that “compiles” down to regular CSS usable by any browser. It Type: Post
Tags : css, sass, web, html
http://dontcodetired.com/blog/post/Using-Sass-Maps-to-Save-Time-in-CSS
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
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
Leveraging C# Partial Classes and Methods in Windows Universal Apps There’s a number of ways we could implement platform specific code in Windows Universal Apps w Type: Post
Tags : c#, windows store apps, windows phone apps, universal apps, partial classes, partial methods
http://dontcodetired.com/blog/post/Leveraging-C-Partial-Classes-and-Methods-in-Windows-Universal-Apps
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
Using network load balancing (NLB) with transactional MSMQ message "Want to send transactional messages using DIRECT format TCP to multiple server through a network load balancer? You can’t. Simple as that. See MSDN article ID 899611 Essentially you could have a singl ..." Type: Post http://dontcodetired.com/blog/post/Using-network-load-balancing-(NLB)-with-transactional-MSMQ-message
Improving Message Throughput in Akka.NET with Routers One of the things I cover in my new Pluralsight course is the awesome feature of routers in Akka.NET Type: Post
Tags : .net, akka.net, actor model
http://dontcodetired.com/blog/post/Improving-Message-Throughput-in-AkkaNET-with-Routers
Say Goodbye to Boring INotifyPropertyChanged Implementation in Universal Windows Apps with Fody We need to implement INotifyPropertyChanged to allow bindings to be updated. For example in a simple Type: Post
Tags : fody, productivity, code generation, c#
http://dontcodetired.com/blog/post/Say-Goodbye-to-Boring-INotifyPropertyChanged-Implementation-in-Universal-Windows-Apps-with-Fody
Failed to encrypt the section [name] using provider RsaProtectedConfigurationProvider. Error message from the provider: Object already exists. "If you're running aspnet_regiis to encrypt a section in your web.config, e.g.  aspnet_regiis -pef mytestsection . (assuming your current directory contains the web.config and the se ..." Type: Post
Tags : .net, asp.net, web, security
http://dontcodetired.com/blog/post/Failed-to-encrypt-the-section-name-using-provider-RsaProtectedConfigurationProvider-Error-message-from-the-provider-Object-already-exists
Understanding Azure Durable Functions - Part 6: Activity Functions with Additional Input Bindings This is the sixth part in a series of articles. Up until this point in this series, the activity fun Type: Post
Tags : C#, azure, azure functions, durable functions, serverless, .net, durfuncseries
http://dontcodetired.com/blog/post/Understanding-Azure-Durable-Functions-Part-6-Activity-Functions-with-Additional-Input-Bindings
Create More Maintainable CSS in Less Time with Sass and Visual Studio My new Pluralsight course was recently released that shows how to use Sass when developing ASP.Net w Type: Post
Tags : css, sass, web, html
http://dontcodetired.com/blog/post/Create-More-Maintainable-CSS-in-Less-Time-with-Sass-and-Visual-Studio
Getting Started Building a Universal Windows App "Universal Windows apps promise to enable the sharing of app code between Windows 8.1 Store apps and Windows Phone 8.1 apps. In this demo, we’ll create a simple app and see how much work we can share b ..." Type: Post
Tags : c#, windows store apps, windows phone apps, xbox apps, universal apps
http://dontcodetired.com/blog/post/Getting-Started-Building-a-Universal-Windows-App
Silverlight Open and Save Dialog Boxes "If you want your Silverlight app to be able to load and save data to the users file system in a location of their choice (such as My Documents, Desktop, etc.) you can use the SaveFileDialog and OpenFi ..." Type: Post
Tags : .net, c#, silverlight, silverlight 3
http://dontcodetired.com/blog/post/Silverlight-Open-and-Save-Dialog-Boxes
Developing Samsung TV Apps with .NET - Getting Started In 2018, Samsung started to release Smart TVs that support apps written in .NET. These TVs run on th Type: Post
Tags : .net, xamarin, c#, tizen, samsung
http://dontcodetired.com/blog/post/Developing-Samsung-TV-Apps-with-NET-Getting-Started
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
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