Jinzhe Zeng's Blog

苟利国家生死以,岂因祸福避趋之

今天是马克思诞辰纪念日,有感而发。

Read more »

Rutgers Today 4月3日报道[1],疾控中心现在推荐人们离家时佩戴口罩。罗格斯大学医学与微生物学教授、CABM(先进生物技术与医学中心)主任Martin Blaser表示,口罩可以阻止病毒传播的证据明确,人们都应当佩戴口罩。他指出,病毒主要通过呼吸道传播,既可以通过咳嗽传播,也可以由无症状患者传播,而戴口罩能有效防护病毒传染。因此,每个人在离家时或散步时,抑或在6英尺范围内与他人接触时,都应佩戴口罩。

Read more »

引用使馆及总领馆官网内容,均提供参考资料,按时间倒序排列,长期更新。

Read more »

NJDOH于3月24日起公布了所有测试点的Negative数据总和,从图中可以看出,3月25日起,测试量稳定在了5k左右,应该就是目前的测试极限了。然而今明两天要将测试量限制在每日500,试剂盒的供应可能存在问题。

Read more »

很久没有写技术贴了。最近,总有在Linux环境下连回ecnu服务器的需求,但是又不想丧失使用Google的权利,怎么办?openconnect是一个非常好的开源软件,可以实现这一需求。

openconnect支持AnyConnect、Pluse Connect等诸多高校常用的校外访问平台,可以用包:

1
sudo apt install openconnect

1
sudo dnf install openconnect

然后用pip安装vpn-slice:

1
pip install vpn-slice

确定which vpn-slice能够找到路径。

方便起见,我们先设置环境变量:

1
2
3
4
export SERVER=vpn-cn.ecnu.edu.cn
export USERNAME=20199966
export PASSWORD=<HIDDEN>
export IPRANGE="219.228.63.0/21 59.78.176.0/20 59.78.199.0/21 202.120.80.0/20 222.66.117.0/24"

SERVER是要连接的服务器地址,USERNAME是我的用户名,PASSWORD是密码,IPRANGE是需要用VPN访问的IP段,这里就是ecnu的IP段。然后我们使用openconnect连接:

1
2
3
4
5
6
7
8
echo "$PASSWORD" | \
sudo openconnect $SERVER \
-m 1290 \
-u $USERNAME \
--passwd-on-stdin \
-s "$(which vpn-slice) $IPRANGE" \
-b \
--syslog

即可连接成功。

ping ecnu的服务器,大致就是中美之间的正常延迟:

1
2
3
4
5
6
7
8
9
10
(base) [[email protected] bin]$ ping 219.228.63.136
PING 219.228.63.136 (219.228.63.136) 56(84) bytes of data.
64 bytes from 219.228.63.136: icmp_seq=1 ttl=62 time=246 ms
64 bytes from 219.228.63.136: icmp_seq=2 ttl=62 time=246 ms
64 bytes from 219.228.63.136: icmp_seq=3 ttl=62 time=246 ms
64 bytes from 219.228.63.136: icmp_seq=4 ttl=62 time=246 ms
64 bytes from 219.228.63.136: icmp_seq=5 ttl=62 time=246 ms
64 bytes from 219.228.63.136: icmp_seq=6 ttl=62 time=246 ms
64 bytes from 219.228.63.136: icmp_seq=7 ttl=62 time=246 ms
64 bytes from 219.228.63.136: icmp_seq=8 ttl=62 time=246 ms

ping google,延迟极小:

1
2
3
4
5
6
7
8
9
(base) [[email protected] bin]$ ping www.google.com
PING www.google.com (172.217.12.164) 56(84) bytes of data.
64 bytes from lga25s62-in-f4.1e100.net (172.217.12.164): icmp_seq=1 ttl=53 time=2.10 ms
64 bytes from lga25s62-in-f4.1e100.net (172.217.12.164): icmp_seq=2 ttl=53 time=2.25 ms
64 bytes from lga25s62-in-f4.1e100.net (172.217.12.164): icmp_seq=3 ttl=53 time=2.30 ms
64 bytes from lga25s62-in-f4.1e100.net (172.217.12.164): icmp_seq=4 ttl=53 time=2.32 ms
64 bytes from lga25s62-in-f4.1e100.net (172.217.12.164): icmp_seq=5 ttl=53 time=2.31 ms
64 bytes from lga25s62-in-f4.1e100.net (172.217.12.164): icmp_seq=6 ttl=53 time=2.25 ms
64 bytes from lga25s62-in-f4.1e100.net (172.217.12.164): icmp_seq=7 ttl=53 time=2.20 ms

日前发布的《华东师范大学2019年毕业生就业质量报告》显示,华东师范大学化学与分子工程学院2019年共毕业245人,就业率达98.78%(242人),仅3人暂不就业。就业率超过孟宪承书院、计算机科学与软件工程学院等23个院系,也超过全校平均水平(96.91%)。

Read more »

题图

2019年11月11日晚,数十名爱国学生自发聚集在一起,发起“反废青”爱国集会。此前,“废青”们计划当晚在罗格斯大学道格拉斯学生中心散布有关香港的谣言,引起了极大愤慨。爱国学生自发策划了是次活动,旨在传播真相,抵制谣言。

Read more »
0%