拿到conditional offer之后,就要寄送材料来获得正式offer。

其中雅思成绩HKUST推荐寄送电子成绩单:

如果你在中国大陆考的雅思,登录https://ielts.neea.edu.cn/,在额外成绩单寄送页面,选择你想额外寄送的考试,档案号填申请号,其他如图填写:

大约一个月后,即可在申请官网查看到寄送状态:

拿到conditional offer之后,就要寄送材料来获得正式offer。
其中雅思成绩HKUST推荐寄送电子成绩单:
如果你在中国大陆考的雅思,登录https://ielts.neea.edu.cn/,在额外成绩单寄送页面,选择你想额外寄送的考试,档案号填申请号,其他如图填写:
大约一个月后,即可在申请官网查看到寄送状态:
对于处在中国大陆的维基人,因众所周知的原因,需要使用代理访问维基百科,但英文维基百科会封禁一部分代理 IP 。
这个时候就需要申请 IPBE 权限:Wikipedia:IP block exemption
向 [email protected]
邮箱发送邮件申请,模版如下:
标题:
Request for unblock
正文:
Username: 你的用户名
I am living in mainland China and the Wikipedia is blocked by the GFW. Usually I modify the hosts file to edit enwiki without any proxy, but sometimes it doesn't work, so I need to edit from a proxy or webhost.
然后等待英文维基百科管理员的回复即可。
1.使用 LAMP 一键安装包配置 Apache 环境:https://lamp.sh/
2.运行 lamp add 时选择 Let's Encrypt 证书,后续需要使用
3.修改 /usr/local/apache/conf/httpd.conf,开启
LoadModule proxy_wstunnel_module libexec/apache2/mod_proxy_wstunnel.so
4.自行安装 v2ray,v2ray 配置如下:
{
"inbounds": [
{
"port": 1090,
"listen":"127.0.0.1",
"protocol": "vmess",
"settings": {
"clients": [
{
"id": "Your ID",
"alterId": 64
}
]
},
"streamSettings": {
"network": "ws",
"wsSettings": {
"path": "/typesomething/"
}
}
}
],
"outbounds": [
{
"protocol": "freedom",
"settings": {}
}
]
}
5.Apache 配置,修改 /usr/local/apache/conf/vhost/ 里面你运行 lamp add 新增的 vhost,在 里面添加:
<VirtualHost *:443>
<LocationMatch "/ray/">
ProxyPass ws://127.0.0.1:1090/typesomething/ upgrade=WebSocket
ProxyAddHeaders Off
ProxyPreserveHost On
RequestHeader set Host %{HTTP_HOST}s
RequestHeader set X-Forwarded-For %{REMOTE_ADDR}s
</LocationMatch>
</VirtualHost>
6.客户端配置:
{
"inbounds": [
{
"port": 1090,
"listen": "127.0.0.1",
"protocol": "socks",
"sniffing": {
"enabled": true,
"destOverride": ["http", "tls"]
},
"settings": {
"auth": "noauth",
"udp": false
}
}
],
"outbounds": [
{
"protocol": "vmess",
"settings": {
"vnext": [
{
"address": "Your Domain",
"port": 443,
"users": [
{
"id": "Your ID",
"alterId": 64
}
]
}
]
},
"streamSettings": {
"network": "ws",
"security": "tls",
"wsSettings": {
"path": "/typesomething/"
}
}
}
]
}
7.如果你想隐藏真实 IP,可以开启使用 Cloudflare 的免费 CDN。
因为疫情原因,在家闲的慌,想折腾一下 Hackintosh,但是手头上没有 U 盘,就想看看能不能不用 U 盘安装黑苹果。
其实完全是可以的,参见:macOS Catalina 10.15.6(17G73)恢复版系统镜像包
这个方法类似以前的 ghost 镜像,恢复硬盘,安装完后建议新建一个用户,把原来的用户删除。
最重要的还是 EFI 分区的配置,上面的镜像是通用的,Clover 则是根据每一部机器定制的。
创建文件 dns.bat
@echo off
chcp 65001
netsh interface ip set dnsservers "以太网" static 114.114.114.114 primary
netsh interface ip add dnsservers "以太网" 8.8.8.8 index=2
ipconfig /flushdns
右键-以管理员身份运行即可,以太网改为你的网络名称