Skip to content

Instantly share code, notes, and snippets.

View TrevorVonSeggern's full-sized avatar

Trevor Von Seggern TrevorVonSeggern

  • Johnstown Colorado, USA
View GitHub Profile
@TrevorVonSeggern
TrevorVonSeggern / Removeoldbranches.sh
Created January 27, 2020 16:32
Git: Delete old merged branches
git branch -r --merged develop -v --format="%(refname:short) - %(authorname)" | grep "Trevor Von Seggern"
@TrevorVonSeggern
TrevorVonSeggern / TreatWarningsAsErrors.csproj
Created December 3, 2018 15:58
C# Treat warnings as errors
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
@TrevorVonSeggern
TrevorVonSeggern / operator_example.cs
Last active October 17, 2018 03:24
C# Operator Overloading
using System;
public class Program
{
public static void Main()
{
var a = new Thing();
var b = new Thing();
Console.WriteLine(a + b);