Skip to content

Instantly share code, notes, and snippets.

View davidnewhall's full-sized avatar
💭
Pioneering Profit

David Newhall davidnewhall

💭
Pioneering Profit
  • Russian Federation
  • 21:28 (UTC +03:00)
View GitHub Profile
@TRaSH-
TRaSH- / notifiarr.subdomain.conf
Last active August 22, 2022 00:40
notifiarr subdomain conf for swag
## Version 2022/08/05
server {
listen 443 ssl;
listen [::]:443 ssl;
server_name notifiarr.*;
include /config/nginx/ssl.conf;
@boaz0
boaz0 / main.go
Last active February 10, 2023 07:09
Detect compression type in Golang
package main
import (
"flag"
"log"
"net/http"
"os"
"strings"
)