Skip to content

Instantly share code, notes, and snippets.

View martea's full-sized avatar
🏠
Working from home

Mårten Andersson martea

🏠
Working from home
View GitHub Profile
@shanselman
shanselman / profile.json
Created May 7, 2019 04:22
Windows Terminal Profile
{
"defaultProfile": "{7d04ce37-c00f-43ac-ba47-992cb1393215}",
"initialRows": 30,
"initialCols": 120,
"alwaysShowTabs": true,
"showTerminalTitleInTitlebar": true,
"experimental_showTabsInTitlebar": true,
"requestedTheme": "dark",
"profiles": [
{
@rcknight
rcknight / main.cs
Last active April 25, 2019 13:41
Example Event Store SignalR publisher. For real-time push of events to a web page.
using System;
using System.Net;
using System.Text;
using System.Threading.Tasks;
using EventStore.ClientAPI;
using Microsoft.AspNet.SignalR;
using Microsoft.Owin.Hosting;
using Owin;
namespace EventStoreSignalR