duplicates = multiple editions
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
| # WSL通过Win访问网络,所以WSL的网关指向的是Windows,DNS服务器指向的也是Windows,设置WSL的proxy为win的代理ip+端口即可 | |
| # WSL中的DNS server在/etc/resolv.conf中查看,该文件是由/etc/wsl.conf自动生成的。 | |
| # 如果关闭了wsl.conf中自动生成resolve.conf并自行修改了resolve.conf,DNS nameserver并不是本机win ip | |
| # 需要开启wsl.conf的自动生成,再运行以下命令 | |
| # https://zhuanlan.zhihu.com/p/153124468 | |
| # 添加到环境变量设置中,例如~/.zshrc | |
| export hostip=$(cat /etc/resolv.conf |grep -oP '(?<=nameserver\ ).*') | |
| export https_proxy="http://${hostip}:7890" | |
| export http_proxy="http://${hostip}:7890" |
| package main | |
| import ( | |
| "database/sql" | |
| "fmt" | |
| "net" | |
| "os" | |
| "github.com/go-sql-driver/mysql" | |
| "golang.org/x/crypto/ssh" |
| -- === sizeup === | |
| -- | |
| -- SizeUp emulation for hammerspoon | |
| -- | |
| -- To use, you can tweak the key bindings and the margins | |
| local sizeup = { } | |
| -------------- | |
| -- Bindings -- |
| git clone https://github.com/username/username.github.io.git | |
| git checkout source | |
| Then we need to setup the deploy directory. | |
| mkdir _deploy | |
| cd _deploy | |
| git init | |
| git remote add -t master -f origin https://github.com/username/username.github.io.git | |
| Done! Now we can make changes in source branch and use rake gen_deploy as usual. |
| CCA2 | Name | CCA3 | Nationality | |
|---|---|---|---|---|
| AD | Andorra | AND | Andorran | |
| AE | United Arab Emirates | ARE | Emirati | |
| AF | Afghanistan | AFG | Afghan | |
| AG | Antigua and Barbuda | ATG | Antiguan, Barbudan | |
| AI | Anguilla | AIA | Anguillian | |
| AL | Albania | ALB | Albanian | |
| AM | Armenia | ARM | Armenian | |
| AN | Netherlands Antilles | ANT | Dutch | |
| AO | Angola | AGO | Angolan |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
| Version 2, December 2004 | |
| Copyright (C) 2011 Attila Incze <http://atimb.me> | |
| Everyone is permitted to copy and distribute verbatim or modified | |
| copies of this license document, and changing it is allowed as long | |
| as the name is changed. | |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |