Skip to content

Instantly share code, notes, and snippets.

View nikescar's full-sized avatar
😁
;)

Woojae, Park nikescar

😁
;)
View GitHub Profile
@dtony
dtony / Readme.md
Last active August 24, 2024 04:29
Headless jitsi meet on Raspberry pi
@NinoFoxx
NinoFoxx / main.go
Created November 11, 2022 03:54
Golang DNS server with multiple A/SRV records
package main
import (
"fmt"
"log"
"github.com/miekg/dns"
)
// adapted from https://gist.github.com/walm/0d67b4fb2d5daf3edd4fad3e13b162cb
@arvati
arvati / alpine.md
Last active June 24, 2025 07:07
Install Alpine Linux on sdcard

Mount Destination partition on sdcard

lsblk -f
sudo fdisk /dev/sda
sudo mkfs -t ext4 /dev/sda1
sudo mount -t auto /dev/sda1 /mnt
cd /mnt
sudo su

mkdir -p ./etc/apk
@1999AZZAR
1999AZZAR / DoH Setup with cloudflared.md
Last active November 24, 2025 05:39
This guide explains how to set up DNS over HTTPS (DoH) on a Linux system using `cloudflared`. DoH ensures that your DNS queries are encrypted and secure, protecting your online privacy and preventing third-party monitoring of your internet activity.