Skip to content

Instantly share code, notes, and snippets.

View olithissen's full-sized avatar
🏠
Working from home

Oli Thissen olithissen

🏠
Working from home
View GitHub Profile
@javahippie
javahippie / awesome-tech-feeds.md
Last active November 4, 2022 12:52
Awesome Tech RSS Feeds
@tomwhoiscontrary
tomwhoiscontrary / Main.java
Last active June 25, 2024 16:37
A simple Java web server with basic logging, tracing, health check, graceful shutdown and zero dependencies
import com.sun.net.httpserver.Filter;
import com.sun.net.httpserver.HttpExchange;
import com.sun.net.httpserver.HttpHandler;
import com.sun.net.httpserver.HttpServer;
import java.io.IOException;
import java.net.HttpURLConnection;
import java.net.InetSocketAddress;
import java.util.Arrays;
import java.util.List;