Skip to content

Instantly share code, notes, and snippets.

View nover's full-sized avatar

Nicklas Laine Overgaard nover

View GitHub Profile

Keybase proof

I hereby claim:

  • I am nover on github.
  • I am nover (https://keybase.io/nover) on keybase.
  • I have a public key ASCmuDagTkG1FDXmCgOHWYF-NNb7W6soH-cBuis81_Fg9go

To claim this, I am signing this object:

@nover
nover / main.cs
Created July 17, 2017 09:07
Create new SS JWT Key
using System.Linq;
using System;
using ServiceStack;
using ServiceStack.Text;
Convert.ToBase64String(AesUtils.CreateKey()).PrintDump();
// Save a copy of this *public* Gist by clicking the "Save As" below
@nover
nover / miniprofilers.sql
Last active January 4, 2016 01:19
ServiceStack MiniProfiler SqlStorage table scripts.
create table MiniProfilers
(
RowId integer not null identity constraint PK_MiniProfilers primary key clustered, -- Need a clustered primary key for SQL Azure
Id uniqueidentifier not null, -- don't cluster on a guid
Name nvarchar(200) not null,
Started datetime not null,
MachineName nvarchar(100) null,
[User] nvarchar(100) null,
Level tinyint null,
RootTimingId uniqueidentifier null,