Skip to content

Instantly share code, notes, and snippets.

@wforney
wforney / keybase.md
Created January 24, 2018 04:37
keybase.md

Keybase proof

I hereby claim:

  • I am wforney on github.
  • I am wforney (https://keybase.io/wforney) on keybase.
  • I have a public key ASDyG0bn_6vnGv_4EP1kvbn36PKijU1qGiusRkg7HxfxEwo

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am wforney on github.
  • I am wforney (https://keybase.io/wforney) on keybase.
  • I have a public key ASBUcr3P0dLid-tO0bb7ARHItbNLYvTZjCHAYYOnUPvG8Ao

To claim this, I am signing this object:

@wforney
wforney / index.css
Created October 18, 2015 23:46
Simple CSS Popover
.user {
position: relative;
padding: 8px 12px 8px 8px;
display: inline-block;
}
.user:hover div {
visibility: visible;
opacity: 1;
padding: 4px 12px 6px 8px;
}
@wforney
wforney / DatabaseDataStore.cs
Last active August 27, 2015 00:39
Google API Authentication Data Store for .NET 4.6+ and SQL Server using ADO.NET
namespace GmailTest.Google
{
using System;
using System.Configuration;
using System.Data.SqlClient;
using System.Threading.Tasks;
using global::Google.Apis.Json;
using global::Google.Apis.Util.Store;