Skip to content

Instantly share code, notes, and snippets.

View callumjohnspiller's full-sized avatar

Callum John Spiller callumjohnspiller

  • London
View GitHub Profile
@callumjohnspiller
callumjohnspiller / config
Last active August 9, 2025 14:27
Bitwig popup menu logs
# Default config for sway
#
# Copy this to ~/.config/sway/config and edit it to your liking.
#
# Read `man 5 sway` for a complete reference.
### Variables
#
# Logo key. Use Mod1 for Alt.
set $mod Mod4
@callumjohnspiller
callumjohnspiller / HttpServer.cs
Created July 24, 2023 17:57 — forked from define-private-public/HttpServer.cs
A Simple HTTP server in C#
// Filename: HttpServer.cs
// Author: Benjamin N. Summerton <define-private-public>
// License: Unlicense (http://unlicense.org/)
using System;
using System.IO;
using System.Text;
using System.Net;
using System.Threading.Tasks;