Skip to content

Instantly share code, notes, and snippets.

View rabryst's full-sized avatar
🌈
I fix broken things in C# and SQL Server

Randolph West rabryst

🌈
I fix broken things in C# and SQL Server
View GitHub Profile
@rabryst
rabryst / keybase.md
Created March 26, 2014 22:02
Keybase verification

Keybase proof

I hereby claim:

  • I am rabryst on github.
  • I am rabryst (https://keybase.io/rabryst) on keybase.
  • I have a public key whose fingerprint is F075 7DBB 07DE 8428 9256 E5B0 1447 AE5D DDFA 5644

To claim this, I am signing this object:

@rabryst
rabryst / JsonWrangler.cs
Created August 3, 2017 03:14
Wrapper for reading and writing classes to and from disk (using Newtonsoft.Json.dll)
using System.Collections.Generic;
using System.IO;
using Newtonsoft.Json;
namespace JsonPersistenceExample
{
public static class JsonWrangler
{
public static void WriteJsonItem<T>(T item, FileInfo outputFile)
{