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
Giscus介绍 Giscus是一个基于GitHub Discussions的开源评论系统,非常好用! 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 configurable. Automatically fetches new comments and edits from GitHub. Ca...
Collection of Hugo Shortcodes
整理了一些在 Hugo 下使用比较方便的技巧,以及一些可行的优化。 Gist Hugo 可以直接使用其内置的shortcodes来嵌入Gist代码块。 显示所有的gist文件 {{< gist jmooring 50a7482715eac222e230d1e64dd9a89b >}} 显示指定的文件 {{< gist jmooring 50a7482715eac222e230d1e64dd9a89b 1-template.html >}} Ref: Hugo Shortcodes GitHub Hugo本身并不支持直接显示GitHub上的代码文件,所以想要这么做的话,需...
How to Embed Raw Html Code in Hugo
有时候受限于Markdown的语法或者功能,需要添加一些额外的组件,这时候直接内嵌进去HTML代码即可,如: <iframe src="https://www.youtube.com/embed/aWzlQ2N6qqg" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscr...
How to Update VMware ESXi
VMware ESXi 版本更新参考链接 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
起因 因为写tun2socks的缘故,近来断断续续搜索+研究了一下下如何让socket流量只从特定的interface发出而不走路由表,这样就可以防止特定流量经过tun接口然后无限循环。 策略路由+bind 在Linux下其实方法挺多的,比如可以用策略路由(policy routing),先用bind绑定特定的接口地址,然后根据源地址配置用双路由表即可。 这里不得不吐槽Windows下既不能绑接口也没有策略路由,可能是我还没找到,反正目前没想好怎么解决。 bind函数的作用只是让发送包的源地址是你绑定的接口地址,但是在匹配路由表的时候该怎么走还是怎么走(匹配路由只看目的地址),而且还可能因为源...