Skip to content

Instantly share code, notes, and snippets.

View jeremiahredekop's full-sized avatar
😀
life is good.

Jeremiah Redekop jeremiahredekop

😀
life is good.
View GitHub Profile
@pbolduc
pbolduc / EventStoreScriptExtensionProvisionFile.ps1
Last active January 29, 2016 13:33
Create Event Store Cluster Azure VMs
param (
[Int]
$clusterSize,
[string]
$VMName,
[Int]
$nodeNumber,
[Int]
$IntIp,
[Int]
@sebz
sebz / grunt-hugo-lunrjs.md
Last active July 21, 2025 21:38
hugo + gruntjs + lunrjs = <3 search
@jkonecki
jkonecki / ConcreteState.cs
Last active November 10, 2018 03:11
Orleans EventSourcing design
using System.Threading.Tasks;
using Orleans;
namespace MyApp
{
public class MyState
{
public string Foo { get; set; }
public int Bar { get; set; }
}