Skip to content

Instantly share code, notes, and snippets.

View ant-sv's full-sized avatar
💭
still alive

ant-sv

💭
still alive
View GitHub Profile
@ant-sv
ant-sv / SimpleHTTPServer.cs
Created December 9, 2019 06:16 — forked from aksakalli/SimpleHTTPServer.cs
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;