Search results for 'Pamamalas ng tagumpay sa Texas Hold'em(ph365.mx)Pamamalas ng tagumpay sa Texas Hold'em(ph365.mx)'

Women in IT "I’m a white male. I’ve never been subject to discrimination in the workplace because of these things, so I wondered whether I have any claim to write about women in IT. I have worked in all-male teams ..." Type: Post
Tags : profession
http://dontcodetired.com/blog/post/Women-in-IT
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
You Don’t Have to Write a Generic Class to Use Generic Methods in C# "We can create generic classes such as:class ThingWriter<T> { public void Write(T thing) { Console.WriteLine(thing); } } Here we’re defining a generic class, then usi ..." Type: Post
Tags : c# tips, c#, .net
http://dontcodetired.com/blog/post/You-Done28099t-Have-to-Write-a-Generic-Class-to-Use-Generic-Methods-in-C
5 Ways to Contribute to Open Source - It’s Not All Code "Open source is cool. Most of us use at least one open source project in our daily work. Even if we don’t, the websites we visit probably do. It’s easy to contribute to an open source project, even if ..." Type: Post
Tags : profession, personal development, open source
http://dontcodetired.com/blog/post/5-Ways-to-Contribute-to-Open-Source-Ite28099s-Not-All-Code
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
Azure Functions Dependency Injection with Autofac This post refers specifically to Azure Function V2. If you want to write automated tests for Azure F Type: Post
Tags : azure functions, serverless, c#, cloud, .net
http://dontcodetired.com/blog/post/Azure-Functions-Dependency-Injection-with-Autofac
ICYMI C# 8 New Features: Prevent Bugs with Static Local Functions This is part 6 in a series of articles. C# 7 introduced local functions that allow you to create fun Type: Post
Tags : icymcs8series, C#, .net, .net core, C#8
http://dontcodetired.com/blog/post/ICYMI-C-8-New-Features-Prevent-Bugs-with-Static-Local-Functions
Right Click and Context Menu Support in Silverlight 4 "Silverlight 4 allows us access to right-click functionality, in earlier versions of Silverlight right-clicking would bring up the standard SL popup menu. Simple Right Click To capture a right ..." Type: Post
Tags : .net, c#, silverlight, silverlight 4, wpf, xaml
http://dontcodetired.com/blog/post/Right-Click-and-Context-Menu-Support-in-Silverlight-4
New RavenDB FeatureToggle "I just published new NuGet package for my open source .NET feature toggling library. This package allows you to turn features on/off depending on what’s configured in a RavenDB database. PM> Instal ..." Type: Post
Tags : open source, featuretoggle, ravendb
http://dontcodetired.com/blog/post/New-RavenDB-FeatureToggle
MSTest V2 In the (relatively) distant past, MSTest was often used by organizations because it was provided by Type: Post
Tags : .net, .net core, testing, qa, quality
http://dontcodetired.com/blog/post/MSTest-V2
Azure HTTP Function Authorization with Function Keys When creating an Azure Function triggered via HTTP, one way to authorize use of the function is to c Type: Post
Tags : azure functions, azure, serverless
http://dontcodetired.com/blog/post/Azure-HTTP-Function-Authorization-with-Function-Keys
50 Apps by Christmas: Start Screen Splitter "This article is part of the 50 Apps by Christmas series Start Screen Splitter is a simple idea to help organise the tiles on the Windows Phone Start screen. The idea is to allow the user to create an ..." Type: Post
Tags : windows phone apps, windows phone, 50appsbychristmas2013
http://dontcodetired.com/blog/post/50-Apps-by-Christmas-Start-Screen-Splitter
Prevent Procrastination With This One Simple Tip "I’m currently reading Limitless by Jim Kwik and there’s an excellent  method that he outlines if you struggle with getting stuff done due to procrastination. So I though I’d share. Generally I am ..." Type: Post
Tags : career development, personal development, productivity
http://dontcodetired.com/blog/post/Prevent-Procrastination-With-This-One-Simple-Tip
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
Beyond the Compiler with ConventionTests "We often have conventions in our code. For example all DTOs/entity/etc. classes should be in a specific namespace, or the name of certain types of class should end with a given word. Another example, ..." Type: Post
Tags : conventiontests, teststack, c#, testing
http://dontcodetired.com/blog/post/Beyond-the-Compiler-with-ConventionTests
Using LinqToTwitter in Windows Store Apps "LinqToTwitter is an open source library to help work with the Twitter API. It can be used in a Windows Store app to authorise a user and your app and allow querying and sending of Tweets. Setting Up F ..." Type: Post
Tags : linqtotwitter, windows store apps, c#
http://dontcodetired.com/blog/post/Using-LinqToTwitter-in-Windows-Store-Apps
What are Your 3 Wins for 2014? "The idea of "the power of three" is a universal concept; it can be seen anywhere from religion (The Holy Trinity, Triquetra, etc.) to childhood learning ("ABC", "123") to entertainment (The Three Musk ..." Type: Post
Tags : profession, personal development, productivity
http://dontcodetired.com/blog/post/What-are-Your-3-Wins-for-2014
New FeatureToggle Release: v3.4 With Fluent Syntax "FeatureToggle is an open source feature toggling / feature switching library for .NET.Version 3.4 Introduces an new additional way to get the value of whether a toggle is enabled or not.In versions to ..." Type: Post
Tags : featuretoggle, open source, .net
http://dontcodetired.com/blog/post/New-FeatureToggle-Release-v34-With-Fluent-Syntax
Silverlight 3 WritableBitmap pixel colour values "Rather than taking an array of Color objects, the WritableBitmap.Pixels property holds an array on ints which represent premultiplied ARGB colour values. To set a given pixel to a given colour you hav ..." Type: Post
Tags : c#, .net, extension methods, silverlight, silverlight 3, wpf, xaml
http://dontcodetired.com/blog/post/Silverlight-3-WritableBitmap-pixel-colour-values
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