Skip to content

Instantly share code, notes, and snippets.

View kkguo's full-sized avatar
🎯
Focusing

Guo KK kkguo

🎯
Focusing
  • PA
View GitHub Profile
@aksakalli
aksakalli / SimpleHTTPServer.cs
Last active January 4, 2025 06:04
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;