Math Notations

Notations We use upper-case sans serif letters, e.g., $\mathsf{Z}$ to denote random variables with sample spaces denoted as $\mathcal{Z}$. $p_{\mathsf{Z}}$ denote the distribution of $\mathsf{Z}$, which is a propability density function if $\mathsf{Z}$ is continuous. $P_{\mathsf{Z}}$ denotes the probability measure. $\mathcal{P}(\mathcal{Z})$ denotes the set of all probability measures over the Borel σ-algebra on $\mathcal{Z}$. $E[\mathsf{Z}]$ denotes the expectation of $\mathsf{Z}$. Let $(\mathsf{Z}_1,\mathsf{Z}_2,\cdots,\mathsf{Z}_n)$ be $n$ i.i.d. copies of $\mathsf{Z}$. We use $\mathsf{Z}^n$ to denote the sequence $\{\mathsf{Z}_1,\mathsf{Z}_2,\cdots,\mathsf{Z}_n\}$....

December 1, 2022 · 2 min · 255 words · Xu Wang

How to setup Canokey

因朋友的安利以及對加密技術的好奇,我前不久購買了剛剛製作完成的Canokey,但對與其設置和使用方法是一竅不通的,在朋友細心(手把手)指導下終於啓用了,現將其中設置過程以及對GPG的學習過程記錄與此。 1. 什麼是Canokey? 作爲Yubikey的替代品,CanoKeys也是一款可以保護用戶數據隱私的硬件安全工具,可用來進行網絡兩步認證(2FA),存儲PGP key等。 2. 爲什麼需要此類設備? 硬件安全设备具有物理隔离作用,用户需将硬件安全设备通过USB端口或者NFC接入电脑/手機,然后手动触摸生成安全验证码,不存在被黑客截获情况。 Canokey/YubiKey 硬件支持一次性密码、公钥加密和身份验证以及各种一次性密码协议,其生成的独特 OTP 几乎不可能伪造,爲帳號安全提供更高的保障 讓自己認爲自己非常重要。 3. 如何設置? 如果只使用其WebAuthn的功能,windows用戶和MacOS用戶不需要額外的設置。若使用OpenGPG,則需要單獨配置。 目前支持此類SmartCard密碼器的網站有:Google 帐号, Microsoft account, GitHub等 4. GPG 關於GnuPG的介紹和使用,已經有非常的詳細的資源了,在此將主要記錄我安裝和使用過程中所採用的方案和其他相關的資源。 GPG使用教程 GPG命令原理 示例 4.1 MacOS 安裝 GPG 首先可以檢查當前系統中是否安裝GPG,以及查詢其版本: gpg --version 可執行如下命令安裝GPG: brew install gnupg 4.2 生成keys gpg --expert --full-gen-key 上面的命令生成了一个主公钥,選擇默認的1;生成後立即再建立一個徹消證書: gpg --gen-revoke [Your ID] 列出公鑰/私鑰: gpg --list-keys --keyid-format long 输出的内容中,最前面的标识是密钥类型的标识。如果后面的标识带的 # ,则表示密钥已经被删除 pub 主公钥 sub 子公钥 sec 主私钥 ssb 子私钥 尾部被 [] 包围的部分是密钥的用途 S 用于签名与验签 E 用于加密与解密 A 用于身份认证 C 认证其他子密钥或UID 下面開始生成子密鑰:...

November 13, 2022 · 1 min · 197 words · Xu Wang

How to build your website?

In this blog, I will show you how to build your website using Hugo and Cloudflare. The theme I am using is papermod (e.g., example here) and it is builded via Cloudflare Pages. My website is here. Install Hugo I use Homebrew to install hugo. # Mac & Linux brew install hugo # Windows choco install hugo -confirm # Normal, no SCSS # Verify it says something like "Hugo Static Site Generator v0....

November 9, 2022 · 4 min · 643 words · Xu Wang

PyTorch Notes

PyTorch...

September 23, 2020 · 10 min · 2008 words · Xu Wang