Kyle Nunery
  • Home
Subscribe
.net

Preferred .NET Open Source Packages - Q2 2018

Kyle Nunery

May 1, 2018 • 1 min read

Database Migration

RoundhousE
DbUp

Inversion of Control Container

Autofac

Logging

Serilog
NLog

Mapping

AutoMapper

Mediator/Command Handler/Pipeline

MediatR

Testing

XUnit
Fake It Easy
Approval Tests
Shouldly
Fluent Assertions

Validation

Fluent Validation

Sign up for more like this.

Enter your email
Subscribe

Postgres in a Hurry

Here are some common queries I use in Postgres. View Current Query Activity SELECT query, state, * FROM pg_stat_activity Drop Existing Connections Except Yours (9.2+)SELECT pg_terminate_backend(pg_stat_activity.pid) FROM pg_stat_activity WHERE pg_stat_activity.datname = 'TARGET_DB' -- ← change this to

Kyle Nunery Feb 2, 2021 • 1 min read

Guide to Naming Resources in Azure

Naming resource groups and resources in Azure in a consistent manner is challenging. The naming guidance by Microsoft is quite good and is a good starting point. Naming Resource Groups In most modern systems you will have resource groups for each of your environments. A typical environment naming convention is

Kyle Nunery May 8, 2019 • 2 min read

LastPass Autofill Rules

LastPass is a very convenient tool for managing and autofilling usernames and passwords on internet sites. How does LastPass determine which inputs to autofill? My research and testing showed that LastPass as of 2/18/2019 uses the following rules. There must be at least one <input type="

Kyle Nunery Feb 18, 2019 • 1 min read
Kyle Nunery © 2022
Powered by Ghost