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
@zezba9000
zezba9000 / SimpleHTTPServer.cs
Created June 19, 2017 01:36 — forked from aksakalli/SimpleHTTPServer.cs
SimpleHTTPServer in C#
// Modified from: https://gist.github.com/aksakalli/9191056
using System;
using System.Collections.Generic;
using System.Net;
using System.IO;
using System.Threading;
namespace MyNamespace
{