0%

配置国内源

1
2
3
4
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host = https://pypi.tuna.tsinghua.edu.cn

安装包

1
2
3
pip install XXX              # 最新版本
pip install XXX==1.0.4 # 指定版本
pip install XXX>=1.0.4 # 最低版本
阅读全文 »

traceroute原理

Traceroute 是一种网络诊断工具,用于确定数据包从一个源到达目的地所经过的路径。它通过发送一系列的数据包,并观察每个数据包经过的路由器(或称为跃点)来实现这一目的。

阅读全文 »

Docker中使用GDB调试的方法

  1. 首先在docker中安装gdb, 以centos为例,可以用yum install gdb安装
  2. 启动docker容器命令时,需要添加--privileged, --cap-add=SYS_PTRACE, --security-opt seccomp=unconfined参数, 如下
    1
    docker run --privileged -d -it  --cap-add=SYS_PTRACE --security-opt seccomp=unconfined [your_container_id]  bash
    阅读全文 »

list

1
2
3
4
list<int> list;
void list::splice( iterator pos, list rhs ); // 全部移动
void list::splice( iterator pos, list rhs, iterator ix ); // 移一个
void list::splice( iterator pos, list rhs, iterator first, iterator last ); // 移一组
阅读全文 »