Search results for 'Mobile casino app (ph365.mx)Mobile casino app (ph365.mx)'

Writing Azure Functions with Function Monkey: Using Commands Without Handlers "If you’ve read the previous articles on Function Monkey you may be wondering if you always need a command handler. Sometimes you may want to accept a request into the system (for example via HTTP) and ..." Type: Post
Tags : azure, azure functions, serverless, .net, C#
http://dontcodetired.com/blog/post/Writing-Azure-Functions-with-Function-Monkey-Using-Commands-Without-Handlers
Handling Errors and Poison Blobs in Azure Functions With Azure Blob Storage Triggers (This article applies to Azure Functions V2) An Azure Function can be triggered by new blobs being w Type: Post
Tags : C#, azure, azure functions, .net, serverless
http://dontcodetired.com/blog/post/Handling-Errors-and-Poison-Blobs-in-Azure-Functions-With-Azure-Blob-Storage-Triggers
Improving Azure Functions Blob Trigger Performance and Reliability - Part 2: Processing Delays and Missed Blobs This is the second part of a series or articles. When you add a new blob, your blob-triggered functi Type: Post
Tags : C#, azure, azure functions, .net, serverless, azurefunctionblobtriggerseries
http://dontcodetired.com/blog/post/Improving-Azure-Functions-Blob-Trigger-Performance-and-Reliability-Part-2-Processing-Delays-and-Missed-Blobs
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
Microsoft Feature Toggle Feature Flag Library: A First Look EDIT: my Feature Management Pluralsight training course is now available. As the creator of the .NET Type: Post
Tags : C#, .net, .net core, featuretoggle
http://dontcodetired.com/blog/post/Microsoft-Feature-Toggle-Feature-Flag-Library-A-First-Look
2013 - Accomplishments, Failures, Learnings, and Thanks "I started 2013 by quitting my job, and during the remainder of the year I learned a lot, made the odd mistake, and accomplished a few things. This is the obligatory end-of-year post, I hope it will in ..." Type: Post
Tags : end of line
http://dontcodetired.com/blog/post/2013-Accomplishments-Failures-Learnings-and-Thanks
How to Schedule Cosmos DB Data Processing With Azure Functions This is the seventh part in a series of articles. You can perform scheduled/batch processing of Azur Type: Post
Tags : c#, .net, .net core, Azure, azure functions, cosmosdb, cosmosfuncseries
http://dontcodetired.com/blog/post/How-to-Schedule-Cosmos-DB-Data-Processing-With-Azure-Functions
Understanding Azure Event Grid Azure Event Grid (currently in preview) is a managed publisher-subscriber service that pushes events Type: Post
Tags : azure, azure event grid, cloud
http://dontcodetired.com/blog/post/Understanding-Azure-Event-Grid
Accessing Entity Framework Entities In EntityDataSource Data-Bound Controls "If using ASP.NET EntityDataSource and databound controls you may need to access the actual entity object being represented in the control, e.g. a data row in a table or a single entity in a FormView. ..." Type: Post
Tags : .net, c#, asp.net, extension methods, web, databinding, entity framework, ef, orm, object relational mapping
http://dontcodetired.com/blog/post/Accessing-Entity-Framework-Entity-In-EntityDataSource-Data-Bound-Controls
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
Writing Azure Functions with Function Monkey: Validation "Function Monkey is a framework to define Azure Functions in a fluent way as opposed to using binding attributes on function methods. Other Function Monkey articles: Creating Azure Functions with Func ..." Type: Post
Tags : azure, azure functions, serverless, .net, C#
http://dontcodetired.com/blog/post/Writing-Azure-Functions-with-Function-Monkey-Validation
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
Retrieving Raw JSON Data in Web API with 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/Retrieving-Raw-JSON-Data-in-Web-API-with-Marten
Doing an Internet Search for the Current Word in Visual Studio with AutoHotkey "I got bored in Visual Studio double clicking a class, copying to clipboard, then heading to browser then pasting into search box. I wanted to be able to quickly search for something (e.g. in Google) f ..." Type: Post
Tags : autohotkey, productivity
http://dontcodetired.com/blog/post/Doing-an-Internet-Search-for-the-Current-Word-in-Visual-Studio-with-AutoHotkey
3 Ways to Pass State Between SpecFlow Step Definitions Sometimes we need one step definition to know about parameter data that was passed to previous steps Type: Post
Tags : testing, quality, specflow, gherkin, bdd, atdd, specification by example
http://dontcodetired.com/blog/post/3-Ways-to-Pass-State-Between-SpecFlow-Step-Definitions
Parsing Command Line Arguments with Command Line Parser Library "When writing .Net console applications we often need to parse command line arguments that the user specified when launching the application. We get these arguments passed into the program in the args ..." Type: Post
Tags : c#, .net, console applications
http://dontcodetired.com/blog/post/Parsing-Command-Line-Arguments-with-Command-Line-Parser-Library
Custom FeatureToggle Implementations for Non-Continuous-Delivery Usages "My open source fetaure toggling library contains a number of prebuilt toggles for common things such as enabling a feature based on the date, or a configuration value. It’s also easy to create custom ..." Type: Post
Tags : featuretoggle, mvvm, mvvmlight
http://dontcodetired.com/blog/post/Custom-FeatureToggle-Implementations-for-Non-Continuous-Delivery-Usages
Write Less MVVM ViewModel Boilerplate Code with T4 "Although code snippets can make creating our initial viewmodels easier (properties, commands,etc.) it’s still tantamount to boilerplate code. Obviously the actions that happen when a command is execut ..." Type: Post
Tags : c#, mvvm, mvvm light, t4, code generation
http://dontcodetired.com/blog/post/Write-Less-MVVM-ViewModel-Boilerplate-Code-with-T4
The Complete Beginners Guide to Hello World using C# .Net and Mono on Raspberry Pi "Disclaimer: some of the software used below is pre-release, use at your own risk... This article assumes basic knowledge of writing C# and using Visual Studio - it doesn't assume any prior knowledge ..." Type: Post
Tags : .net, c#, visual studio, raspberry pi, hardware, linux
http://dontcodetired.com/blog/post/The-Complete-Beginners-Guide-to-Hello-World-using-C-Net-and-Mono-on-Raspberry-Pi
Centralising RaiseCanExecuteChanged Logic in an MVVM Light Portable View Model "When working with an MVVM Light sometime we need to “tell” the view that a command’s ability to be executed has changed. For example, when a user clicks a Start button to start a countdown, the Start ..." Type: Post
Tags : c#, mvvm light, xaml, pcl
http://dontcodetired.com/blog/post/Centralising-RaiseCanExecuteChanged-Logic-in-an-MVVM-Light-Portable-View-Model