从容小甜瓜

文章
5
资源
1
加入时间
2年10月21天

Linux jprobe初探

1、kprobe的示例代码在内核源码/samples/kprobes下,可以根据示例代码改写自己想要用的代码2、内核示例代码#include <linux/kernel.h>#include <linux/module.h>#include <linux/kprobes.h>/* * Jumper probe for do_fork. * ...

react 组件的构造函数

constructor 函数时组件最先执行的函数class childen extends react.Component{ constructor(props){ super(props); this.state={ attr1:"", } }}一般在constructor函数中都会存在 ...

python 转Excel二维表为一维表

今天研究一下使用python怎么把excel二维表转化为一维表。文件名为二维表.xlsx的Sheet1数据源:二维表.xlsx的Sheet2要实现的结果:import pandas as pddf=pd.read_excel('二维表.xlsx',sheet_name='Sheet1')得到数据源的数据帧:我们再将第一列设置为索引,去掉默认的数字索引:df1=...