PPTP VPN is no longer supported in iOS 10 and macOS Sierra for security concerns[1]. The alternative protocols are L2TP over IPSec,
IKEv2, Cisco IPSec. It forces me to update my previous blog Set up VPN on OS X with AWS.
计算机应用
升级Amazon AWS EC2 T2实例
本文介绍Amazon AWS EC2 T2实例,Amazon CloudWatch的一些指标,如何从t2.micro升级到t2.small。
更换评论系统:从多说到网易云跟贴
网易、腾讯、阿里免费企业邮箱注册及邮件客户端IMAP设置
最近新买了一个.su域名,想把自己的邮箱统一规划下,并决定用Airmail(看中其支持Markdown)统一管理我的邮箱。注册企业邮箱需要域名解析,使用邮件客户端需要设置IMAP,本文将这些作个记录,方便日后添加新邮箱用。
网页排序算法PageRank
计算PageRank,之前直接用NetworkX的API nx.pagerank
求的,大概知道PageRank是怎么回事,但对算法细节并不了解。现在想进一步了解PageRank的细节。
迭代方法求PageRank
本文介绍如何用迭代的方法计算PageRank。
代数方法求PageRank
本文结合实例介绍如何用代数方法求PageRank。
LaTeX使用笔记:长表格longtable(附实例)
本文记录我在插入长表格遇到的一些问题及解决方法,包括重复表头、表尾(纵向显示),调整表格适应页面宽度(横向显示)。
Python Application Notes: pathname manipulations
I usually process simulation results in batch, which is generally associated with pathname manipulations. In this article, I take notes of pathname manipulations from my programming experiences.
Calculate a minimum spanning tree with Python
This article presents how to calculate a minimum spanning tree with the Python package, NetworkX.