Heary's Blog

渡口缀满灯花

东南大学新的DrCOM网关认证系统只提供Web登陆,且Web页面是基于Javascript加载的(无法通过w3m之类的浏览器打开),因此无GUI的Linux服务器难以直接登陆。为此我分析了的该认证系统的登陆认证报文,写了一个小脚本,通过curl即可发送请求,实现Linux shell环境下登陆。

阅读全文 »

通过Python自带的socket包提取本机IP地址的代码,在Windows上正常,但在Linux上得到的是127.0.1.1。可以通过netifaces包等方法解决。

阅读全文 »

"These violent delights have violent ends And in their triumph die, like fire and powder, Which as they kiss consume: the sweetest honey Is loathsome in his own deliciousness And in the taste confounds the appetite: Therefore love moderately; long love doth so; Too swift arrives as tardy as too slow."

- Shakespeare, Romeo and Juliet

阅读全文 »

"Have you ever questioned the nature of your reality? Did you ever stop to wonder about your actions? The price you'd have to pay if there was a reckoning? That reckoning is here."

- Westworld

基于Flask部署的PyTorch模型HTTP API在debug模式下偶现死锁问题,无法被kill掉,rebootshutdown无法正常重启,nvidia-smi无法调出。初步推测可能与debug模式下创建的两套进程有关。

阅读全文 »

读取文件中的指定行,是经常需要用到的功能。通过Python的linecache模块,可以快速定位、读取文件中的指定行。

阅读全文 »

screen是Linux环境下的多窗口管理器,可以管理可后台运行的窗口。问题是,每次进入screen时,窗口就无法滚动查看先前输出的内容了。可以通过copy mode解决。

阅读全文 »