Skip to content

Instantly share code, notes, and snippets.

@quexy
quexy / JiraClientTest.Program.cs
Last active August 29, 2015 13:56
TechTalk.JiraRestClient sample
using System;
using System.Linq;
using TechTalk.JiraRestClient;
namespace JiraClientTest
{
class Program
{
static void Main(string[] args)
{
@quexy
quexy / SpecRun.Indices.sql
Created September 3, 2013 08:55
Naive SpecRun statistics store database indices
use SpecRun
create nonclustered index idx_events on
[Events] (Id, EventSourceId, Sequence, TimeStamp)
include (Version, Name, Data)
create nonclustered index idx_eventsources on
[EventSources] (Id, Type, Version)
create nonclustered index idx_pipelinestate on