Hunter的大杂烩 技术学习笔记

2020-03-18

Python 2.7下的非阻塞tcp client实现

Filed under: 技术话题 — hunter @ 5:05 pm

因为要实现一个简单的网络服务性能测试工具,需要衡量TCP CONNECT环节耗时,发现目前网上对于python 2下的非阻塞connect/send/recv介绍很少,于是自己实现了一个

参考:

https://docs.python.org/2/howto/sockets.html#sockets

https://docs.python.org/2/howto/sockets.html#non-blocking-sockets

https://learnku.com/docs/pymotw/select-wait-for-io-efficiently/3429

https://stackoverflow.com/questions/8277970/what-are-possible-reason-for-socket-error-einprogress-in-solaris

https://www.cnblogs.com/MnCu8261/p/6403340.html

https://gist.github.com/hduffddybz/daa4c931f6ea0bd7ed93

(more…)

2020-03-13

华硕梅林版下载大师与entware冲突的问题

Filed under: 技术话题 — hunter @ 11:48 pm

路由器内自带的APP(比如下载大师)使用的是asusware套件,该套件安装到u盘后,会建立软链到 /tmp/opt ,而entware也要占用/tmp/opt 入口,所以两者不能同时安装。

如果不小心安装了APP,导致/tmp/opt 入口被 asusware占用,可以手动修改/jffs/addons/diversion/mount-entware.div 文件的24和26行:

[code lang=”bash”]

if [ "$opkgFile" ] && [ ! -f /opt/bin/opkg ]; then
mount_entware $1
elif [ "$opkgFile" ] && [ -f /opt/bin/opkg ]; then
logger -t Entware "Not starting Entware services on $1, Entware is already started"

[/code]

确保entware初始化时,能覆盖掉asusware的入口

2020-03-11

UltraEdit正则表达式变量

Filed under: 技术话题 — hunter @ 10:40 pm

使用 \1 \2 表示搜索项中的元祖,比如

search :  (\d)$

replace to :  \1″

这个\1 就是元组 (\d)

例子:

(more…)

Powered by WordPress