IPv6 Proxy Pool
This article is a step-by-step guide (and personal note) on how to configure an IPv6 proxy pool. It’s based on practical experiments with Debian/Ubuntu systems, with special thanks to zu1k and missuo for their excellent base guides and references. How It Works Assumptions: We have a dedicated ...
Github GPG Keys
GitHub Web-flow GPG Key GitHub sets the committer for all commits made using their web interface to the user web-flow. For any given GitHub account, you can add .gpg to its URL to get its public key — so for web-flow, you can find it at https://github.com/web-flow.gpg: -----BEGIN PGP PUBLIC KEY BLOC...
How to Enable Giscus Comments System in Hugo
Introduction to Giscus Giscus is an open-source comment system powered by GitHub Discussions, and it works really well! Open source. No tracking, no ads, always free. No database needed. All data is stored in GitHub Discussions. Supports custom themes! Supports multiple languages. Extensively config...
Collection of Hugo Shortcodes
Here are a few handy tricks for Hugo, along with some practical improvements. Gist Hugo can embed Gist code blocks directly using its built-in shortcodes. Display All Gist Files {{< gist jmooring 50a7482715eac222e230d1e64dd9a89b >}} Display a Specific File {{< gist jmooring 50a7482715eac222...
How to Embed Raw Html Code in Hugo
Sometimes Markdown’s syntax and features are a bit limiting, and we need to add some extra components. In that case, we can simply embed the HTML directly, like this: <iframe src="https://www.youtube.com/embed/aWzlQ2N6qqg" title="YouTube video player" frameborder="0"...
How to Update VMware ESXi
VMware ESXi Update References https://esxi-patches.v-front.de/ https://vt.wooomooo.com/?p=3956 Community Networking Driver for ESXi https://flings.vmware.com/community-networking-driver-for-esxi
SO_BINDTODEVICE Socket Option in Linux
Motivation While working on tun2socks, I spent some time on and off looking into how to make socket traffic leave through a specific interface instead of following the routing table. This would prevent certain traffic from going through the TUN interface and getting stuck in an infinite loop. Policy...