Skip to content

Instantly share code, notes, and snippets.

View sjdweb's full-sized avatar
🎯
Focusing

Sean Drumm sjdweb

🎯
Focusing
  • Toronto, Canada
View GitHub Profile

Keybase proof

I hereby claim:

  • I am sjdweb on github.
  • I am seandrumm (https://keybase.io/seandrumm) on keybase.
  • I have a public key ASBnM9K85aL0beHg0BkvOBF7tWGBh9aUVWmipZ6qdqdHAwo

To claim this, I am signing this object:

@sjdweb
sjdweb / BrowserShim.cs
Created October 28, 2016 20:27
NancyFx Browser shim for acceptance tests to HttpResponseMessage (specifically for asp.net core migration).
public class BrowserShim
{
private readonly HttpClient _client;
public BrowserShim(HttpClient client)
{
_client = client;
}
private static RequestModifier ApplyModifier(Action<RequestModifier> action, HttpRequestMessage req, string url)
@sjdweb
sjdweb / MassTransitStructureMapExtensions.cs
Created June 16, 2015 17:37
MassTransit StructureMap Extensions
namespace MyApp.MassTransitExtensions
{
using MassTransit;
using StructureMap;
using StructureMap.Graph;
public static class MassTransitStructureMapExtensions
{
public static void ScanConsumers(this IContainer container)