Home
Archive
Contact
Search results for 'Libreng live na broadcast ng Women'
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
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
ICYMI C# 9 New Features: More Pattern Matching Features
This is part of a series of articles on new features introduced in C# 9. Pattern matching was introd
Type
: Post
Tags
: icymcs9series, c#, .net, .net core, C#9
http://dontcodetired.com/blog/post/ICYMI-C-9-New-Features-More-Pattern-Matching-Features
Maintaining Energy with the Pomodoro Technique
"(The below is an extract from the “Time Management and Motivation” chapter of my book Keeping Software Soft) The Pomodoro Technique is a simple time management system developed by Francesco Cirillo. A ..."
Type
: Post
Tags
: time management, pomodoro, energy
http://dontcodetired.com/blog/post/Maintaining-Energy-with-the-Pomodoro-Technique
Unit Testing C# File Access Code with System.IO.Abstractions
It can be difficult to write unit tests for code that accesses the file system. It’s pos
Type
: Post
Tags
: c#, testing, xunit.net, qa, .net
http://dontcodetired.com/blog/post/Unit-Testing-C-File-Access-Code-with-SystemIOAbstractions
An Overview of Structured Logging with Serilog
Traditional logging techniques (such as writing lines of text to files) results in the loss of struc
Type
: Post
Tags
: serilog, logging, c#, .net
http://dontcodetired.com/blog/post/An-Overview-of-Structured-Logging-with-Serilog
Imported posts not appearing in BlogEngine.NET
" If you've used the BlogEngine.NET import tool and your post are not showing you could try the following: http://mcgeown.co.uk/BlogEngine/post/2008/05/09/Force-BlogEngineNet-to-up ..."
Type
: Post
http://dontcodetired.com/blog/post/Imported-posts-not-appearing-in-BlogEngineNET
Importing posts from Blogger into BlogEngine.NET
"Just managed to successfully get my posts from Blogger into DCT. Read a post suggesting using a new temp WordPress blog which can import directly from Blogger. Then export, then use the Import to ..."
Type
: Post
http://dontcodetired.com/blog/post/Importing-posts-from-Blogger-into-BlogEngineNET
Writing Implicit and Explicit C# Conversion Operators
When writing custom classes we can provide behaviour to allow for both explicit and implicit convers
Type
: Post
Tags
: c#, .net
http://dontcodetired.com/blog/post/Writing-Implicit-and-Explicit-C-Conversion-Operators
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
Introducing (probably) The World's Only Mocking Framework for Windows Phone 7 (WP7)
"Introducing MoqaLate Whilst I love developing apps for Windows Phone 7, the testing aspect is hard! I'm a TDD-er by default and it's such a pain to have to hand roll my own mock objects. ..."
Type
: Post
Tags
: windows phone 7, wp7, c#, testing, tdd, mocking, moqalate
http://dontcodetired.com/blog/post/Introducing-(probably)-The-Worlds-Only-Mocking-Framework-for-Windows-Phone-7-(WP7)
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
Creating a Tweet Buffer with Azure Queues and Microsoft Flow
There are apps and services that allow the scheduling or buffering of the sending of Tweets. Using t
Type
: Post
Tags
: microsoft flow, azure, azure functions, serverless
http://dontcodetired.com/blog/post/Creating-a-Tweet-Buffer-with-Azure-Queues-and-Microsoft-Flow
Mocking Framework for Windows Store apps (and Windows Phone)
"With Windows Store apps there are challenges getting traditional mocking frameworks such as Rhino and Moq working due to limited reflection support in the platform (presumably for security reasons). I ..."
Type
: Post
Tags
: tdd, windows 8, windows 8 apps, winrt, mocking, testing
http://dontcodetired.com/blog/post/Mocking-Framework-for-Windows-Store-apps-(and-Windows-Phone)
Pretty Method Display in xUnit.net
One little-known feature of the xUnit.net testing framework is the ability to write test method name
Type
: Post
Tags
: xunit.net, C#, testing, qa, quality, .net, .net core
http://dontcodetired.com/blog/post/Pretty-Method-Display-in-xUnitnet
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
Merging IEnumerable Sequences in C# with LINQ
The Zip method allows us to join IEnumerable sequences together by interleaving the elements in the
Type
: Post
Tags
: c# tips, c#, .net
http://dontcodetired.com/blog/post/Merging-IEnumerable-Sequences-in-C-with-LINQ
Using Cyclomatic Complexity as an Indicator of Clean Code
Cyclomatic complexity is one way to measure how complicated code is, it measures how complicated the
Type
: Post
Tags
: c#, clean code, quality, metrics
http://dontcodetired.com/blog/post/Using-Cyclomatic-Complexity-as-an-Indicator-of-Clean-Code
An Alternative to SQLite in Windows Store Apps
"SQLite is a popular embedded database in use in Windows Store and Windows Phone apps, thought it can sometimes be tricky to get setup: there are a few different choices of NuGet packages / Visual Stud ..."
Type
: Post
Tags
: brightstardb, nosql, windows store apps, database
http://dontcodetired.com/blog/post/An-Alternative-to-SQLite-in-Windows-Store-Apps
MVVM Light Messenger Events Firing Multiple Times
"If you register for a message in the ctor of your views code-behind, eg: Messenger.Default.Register<DialogMessage>(this, DialogMessageHandler); Every time you reload the view, i.e ..."
Type
: Post
Tags
: .net, c#, design patterns, mvvm, windows phone 7, wp7
http://dontcodetired.com/blog/post/MVVM-Light-Messenger-Events-Firing-Multiple-Times
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29