Skip to content

Instantly share code, notes, and snippets.

@JustLogic
JustLogic / Program.cs
Created March 1, 2018 17:01
EventStore HTTP API - Replaying Parked Message Queue with C# and HttpClient
using System;
using System.Collections.Generic;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Text;
namespace EventStoreHTTPSpike
{
class Program
{
@JustLogic
JustLogic / JiraApiHelper.cs
Last active January 3, 2018 14:51
JiraApiHelper is a wrapper around the .net jira api, with a function to get all users by iterating over the alphabet
public class JiraApiHelper
{
private readonly Jira inner_client;
public JiraApiHelper()
{
this.inner_client = Jira.CreateRestClient("JiraUrl", "UserName", "Password");
}
public List<User> GetAllUsers()