3. 环境表 (1)每个进程都有一个独立的环境表(字符指针数组) (2)初始的环境表继承自父进程 (3)两种访问方式: ①int main(int argc, char* argv[], char* envp[]); //第3个参数 ②extern char** environ; //全局变量 4. ...
分类:
系统相关 时间:
2017-01-27 23:00:38
阅读次数:
566
原始函数是这样的 [cpp] view plain copy kernel32!CreateProcessInternalW: 00000000`7738e750 4c8bdc mov r11,rsp 00000000`7738e753 53 push rbx 00000000`7738e754 5 ...
分类:
系统相关 时间:
2017-01-23 23:00:21
阅读次数:
418
1.创建tab.py
[root@node6files]#cattab.py
#!/usr/bin/envpython
#pythonstartupfile
importsys
importreadline
importrlcompleter
importatexit
importos
#tabcompletion
readline.parse_and_bind(‘tab:complete‘)
#historyfile
histfile=os.path.join(os.environ[‘HOME‘],‘...
分类:
其他好文 时间:
2017-01-16 23:07:24
阅读次数:
246
看了文章 爱上PowerShell , 就想在CentOS 7上面试试PowerShell , 本文记录了在CentOS 7.2上安装Powershell 的过程。 首先我们要从github上下载最新的PowerShell 的rpm 包powershell-6.0.0_alpha.14-1.el7.... ...
分类:
系统相关 时间:
2017-01-15 22:41:01
阅读次数:
1280
vlc是一套优秀的开源媒体库,其特点是提供了完整的流媒体框架, 用它可以非常方便的实现抓取解码帧的功能。 与此功能有关的关键API为 这个函数将三个函数指针作为参数 下面是完整示例子: ...
分类:
其他好文 时间:
2017-01-10 14:38:27
阅读次数:
1028
1 Install pip and Virtualenv sudo apt-get install python-pip python-dev python-virtualenv2 Create a Virtualenv environment. virtualenv --system-site-p ...
分类:
其他好文 时间:
2017-01-09 11:37:18
阅读次数:
200
本节大纲 1:模块介绍 模块,用一砣代码实现了某个功能的代码集合。 类似于函数式编程和面向过程编程,函数式编程则完成一个功能,其他代码用来调用即可,提供了代码的重用性和代码间的耦合。而对于一个复杂的功能来,可能需要多个函数才能完成(函数又可以在不同的.py文件中),n个 .py 文件组成的代码集合就 ...
分类:
编程语言 时间:
2017-01-08 23:54:17
阅读次数:
597
URL - 两个 Views - 请求的其他信息 from django.core.handlers.wsgi import WSGIRequest request.environ request.environ['HTTP_USER_AGENT'] - 装饰器 FBV: def auth(func ...
分类:
编程语言 时间:
2017-01-05 17:57:50
阅读次数:
216
1.获取所有请求信息 导入模块:from django.core.handlers.wsgi import WSGIRequest request.environ:包含所有的请求信息,可以打印看一下,它是一个字典 2.html模板之继承 公用模板master.html <!DOCTYPE html> ...
分类:
其他好文 时间:
2017-01-03 13:10:37
阅读次数:
178
Serialization is the process of converting a data structure or object into a sequence of bits so that it can be stored in a file or memory buffer, or ...
分类:
其他好文 时间:
2016-12-27 07:50:21
阅读次数:
501