Cisco AnyConnect & Openconnect PlayBook

https://github.com/ma-wenqian/vpn-playbook A complete guide and toolkit for automating login to Cisco AnyConnect / Cisco Secure Client VPNs that use TOTP-based two-factor authentication, plus a Dockerized OpenConnect setup for split-tunnel / proxy-chain use. Tags: HKU, Cisco AnyConnect, Cisco Secure Client, OpenConnect, 2FA, TOTP, VPN Guide Overview Most institutional VPNs built on Cisco AnyConnect / Cisco Secure Client (this repo was written against HKU’s vpn2fa.hku.hk, but the approach generalizes to any similarly-configured gateway) require two factors to log in: ...

August 7, 2026 · 7 min · Vinkey

How To Configure Conda Environment Settings

This article was written with the assistance of GitHub Copilot Create a new environment To create a new conda environment, use the following command: conda create --name myenv Replace myenv with the name you want for your environment. You can also specify the Python version: conda create --name myenv python=3.8 Alternatively, you can create an environment at a specific path using the -p option: conda create -p /path/to/myenv Replace /path/to/myenv with your desired path. You can also specify the Python version: ...

November 5, 2024 · 2 min · Vinkey