Home
Archive
Contact
Search results for 'Final ng 2022 Women'
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
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
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
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
Brownfield Application Development (Part 2) - Lose Weight, Feel Great
"If there was The Biggest Loser for software, legacy applications would be up there sweating on the treadmill and trying to resist the chocolate cake. One of the characteristics of legacy code bas ..."
Type
: Post
Tags
: brownfield application development
http://dontcodetired.com/blog/post/Brownfield-Application-Development-(Part-2)-Lose-Weight-Feel-Great
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
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
Better User Experiences and More Robust Applications Pluralsight Course
My new Pluralsight course was just published which shows how to use the open source Polly library. P
Type
: Post
Tags
: c#, ux, pluralsight courses
http://dontcodetired.com/blog/post/Better-User-Experiences-and-More-Robust-Applications-Pluralsight-Course
New Pluralsight Course: Feature Flag Fundamentals with Microsoft Feature Management
My latest Pluralsight video training course was just published just in time for some holiday season
Type
: Post
Tags
: .net, msftseries, FeatureManagement, featuretoggle, c#, software development, productivity
http://dontcodetired.com/blog/post/New-Pluralsight-Course-Feature-Flag-Fundamentals-with-Microsoft-Feature-Management
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
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
Kill CapsLock with AutoHotkey
"How often do you actually use CapsLock – deliberately that is? Most of the time I hit it accidentally then END UP SHOUTING in emails or Tweets. It’s especially a pain sometimes while coding… We can st ..."
Type
: Post
Tags
: autohotkey, productivity, visual studio
http://dontcodetired.com/blog/post/Kill-CapsLock-with-AutoHotkey
Persistent Actors in Akka.NET
By default, actors in Akka.NET lose their internal state when they are restarted, for example due to
Type
: Post
Tags
: .net, akka.net, actor model
http://dontcodetired.com/blog/post/Persistent-Actors-in-AkkaNET
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
Design Pattern for Silverlight 2
"It seems the Model-View-ViewModel (MVVM) is the preferred pattern at present for implementing cleanly separated SL apps (& WPF client apps). Aims to increase testability and leverage data-bin ..."
Type
: Post
Tags
: silverlight, design patterns, mvvm
http://dontcodetired.com/blog/post/Design-Pattern-for-Silverlight-2
Goodbye 2020, Hello 2030
"It has felt like a looong year. We have been relatively lucky here in Australia and especially so in Western Australia. We still went through the toilet paper panic, the handwash shortages, and the tr ..."
Type
: Post
Tags
: personal development
http://dontcodetired.com/blog/post/Goodbye-2020-Hello-2030
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
New Pluralsight Course - Improve Your Application User Experience with Humanizer
My new Pluralsight course Making .NET Data Types More Human With Humanizer was recently released. Wi
Type
: Post
Tags
: pluralsight courses, humanizer, ux
http://dontcodetired.com/blog/post/New-Pluralsight-Course-Improve-Your-Application-User-Experience-with-Humanizer
Cleaner Code in Unit Tests
One thing that can quickly become messy when writing unit tests is the creation of test objects. If
Type
: Post
Tags
: .net, c#, tdd, testing
http://dontcodetired.com/blog/post/Cleaner-Code-in-Unit-Tests
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