Skip to content

Instantly share code, notes, and snippets.

View AnthonySteele's full-sized avatar
💭
😪

Anthony Steele AnthonySteele

💭
😪
View GitHub Profile
@AnthonySteele
AnthonySteele / Async_basic_mistakes.md
Last active January 9, 2023 16:29
Avoiding Basic mistakes with async ... await in C# code

When we started coding on NuKeeper, things were different - there were automated update tools for other ecosystems, but not for .NET, and I was working with a lot of services with a lot of dependencies. Most (but not all) of these at my work were solutions in .NET full framework version 4.6.2 or the like.

I tried to find the .NET support on "Greenkeeper" before realising what the docs didn't even feel the need to spell out: this was for node.js and NPM, only. So there was a gap and a need for .NET package automation.

Well, things changed. Most notably, Dependabot got .NET Core support, and was acquired by GitHub, which was in turn acquired my Microsoft.
Automated package update management is a win for developers, so this is good for people working in .NET.

@AnthonySteele
AnthonySteele / NancyModuleExtensions
Last active April 11, 2019 09:19
Example code for my blog post on function shims for NancyFx request handlers
/*
* Example code for my blog post on function shims for NancyFx request handlers
* Blog post is here: http://anthonysteele.co.uk/more-patterns-for-web-services-in-nancyfx
*/
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Nancy;

A microbenchmark on the new message context store in JustSaying. The last one, ReadWriteNewMessageContext is probably the most realistic.

So we have an overhead of around 50 nanoseconds (5×10-5 ms). This is good. And I suggest that we don't bother with ways to opt in or out of this, just have it on all the time, regardless of if it is used by handlers or not.

// * Summary *

BenchmarkDotNet=v0.11.3, OS=Windows 10.0.17134.112 (1803/April2018Update/Redstone4)   
Intel Core i7-8750H CPU 2.20GHz (Coffee Lake), 1 CPU, 12 logical and 6 physical cores   
.NET Core SDK=2.2.101 
using System.Threading.Tasks;
using SqsMessage = Amazon.SQS.Model.Message;
namespace JustSaying.Messaging.MessageHandling
{
public interface IHandlerAsync<in T>
{
/// <summary>
/// Handle a message of a given type
/// </summary>
@AnthonySteele
AnthonySteele / gist:e031652f89c97cda8d398156aae2529e
Created November 15, 2018 09:10
NuKeeper Release Checklist
rem nukeeper release script
rem in cmd:
cd C:\Code\NuKeeper\NuKeeper
del C:\Code\NuKeeper\NuKeeper\bin\Debug\*.nupkg
dotnet build
dotnet pack
cd C:\Code\NuKeeper\NuKeeper\bin\Debug
dir

I have finally done a like-for-like benchmaerk on JustEat.Statsd version 2.1 versus version 3.1

In order to get a consistent measurement, it has to be on the same machine under the same conditions.

dotnet run -c Release --framework netcoreapp2.0

BenchmarkDotNet=v0.11.0, OS=Windows 10.0.17134.167 (1803/April2018Update/Redstone4)
Intel Core i7-4712HQ CPU 2.30GHz (Max: 2.20GHz) (Haswell), 1 CPU, 8 logical and 4 physical cores
@AnthonySteele
AnthonySteele / optimization_and_metrics.md
Last active August 28, 2017 08:35
About optimization and metrics
@AnthonySteele
AnthonySteele / EndpointData.cs
Last active March 10, 2017 17:27
EndpointData
using System.Net;
namespace JustEat.StatsD.EndpointLookups
{
public class EndpointData
{
private readonly IPEndPoint _ipEndpoint;
private readonly string _hostName;
private readonly int _port;
@AnthonySteele
AnthonySteele / AgileValues.md
Last active January 22, 2017 12:42
Agile with values