frp 安装

wget https://github.com/fatedier/frp/releases/download/v0.27.1/frp_0.27.1_linux_amd64.tar.gz -O /tmp/frp.tar.gz tar -xzvf /tmp/frp.tar.gz -C /tmp/ ...

V-box虚拟机 无法启动 新任务

VERR_NEM_VM_CREATE_FAILED解决方法禁用 Hyper-V bcdedit /set hypervisorlaunchtype off,重启 Windows 10如果后续要使用 Hyper-V 使用 bcdedit /set hypervisorlaunchtype aut...

GDB 调试

设置退出断点catch syscall 60catch syscall 231catch syscall exit exit_group查看断点堆栈列表info stack OR info s切换堆栈层次updown查看当前堆栈frame OR f查看当前堆栈详细信息info frame OR...

Python 常用 IDE 收集

http://eric-ide.python-projects.org/https://www.jetbrains.com/pycharm/

Python 通过 SMTP 直接投递邮件

邮件发送发送邮件的Python代码示例import smtplib from email.header import Header from email.mime.text import MIMEText import dns.resolver server_email = 'system...