Skip to content

Instantly share code, notes, and snippets.

View zezba9000's full-sized avatar

Andrew zezba9000

  • For Fun Labs
  • Bellevue, WA
View GitHub Profile
@aksakalli
aksakalli / SimpleHTTPServer.cs
Last active April 22, 2024 13:20
SimpleHTTPServer in C#
// MIT License - Copyright (c) 2016 Can Güney Aksakalli
// https://aksakalli.github.io/2014/02/24/simple-http-server-with-csparp.html
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net.Sockets;
using System.Net;
using System.IO;