03 2022 档案
摘要:前言 一个简单的队列示例 内容 class Queue { constructor() { this.items = {} this.headIndex = 0 this.tailIndex = 0 } enqueue(item) { this.items[this.tailIndex] = ite
阅读全文
摘要:前言 每次开机都要手动点VPN连接感觉不方便,所以写个脚本放到启动目录下 步骤 访问启动目录 进入到启动目录后创建相应bat脚本文件 %appdata%\Microsoft\Windows\Start Menu\Programs\Startup 编写脚本 脚本很简单就一行命令 rasdial <vp
阅读全文