Acontrol registeris aprocessor registerwhich changes or controls the general behavior of aCPUor other digital device. Common tasks performed by contro...
分类:
其他好文 时间:
2014-08-09 04:54:31
阅读次数:
356
import urllib2,os,hashlib; h = '7183a2d3e96f11eeadd761d777e62404' + 'e330c659d4bb41d3bdf022e94cab3cd0'; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path();
os.makedirs( ...
分类:
其他好文 时间:
2014-08-09 00:19:46
阅读次数:
262
sys.argv[]是用来获取命令行参数的,sys.argv[0]表示代码本身文件路径,所以参数从1开始.arg[1]表示第一个命令行参数arg[1][2:] 表示取第一个命令行参数,但是去掉前两个字节比如命令行参数为 “--help” ,就去掉“--”,执行"help"参数。比如当我们执行 pyt...
分类:
编程语言 时间:
2014-08-08 17:22:16
阅读次数:
168
由于浏览器安全方面的限制,大多数 "Ajax" 请求遵守同源策略;请求无法从不同的域、子域或协议成功地取回数据。如果在不同域下访问就会出现提示:
No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://127.0.0.1' is therefore not allowed access.
因此解决方法:
1.采用同域策略,在同一域名下。
2.在服务端设置属性,如:php服务端...
分类:
Web程序 时间:
2014-08-08 16:04:36
阅读次数:
297
遍历窗口,获得控件句柄1 EnumChildWindows(hwndDlg, (WNDENUMPROC)EnumChildProc, NULL);回调函数 1 BOOL CALLBACK EnumChildProc(HWND hwnd, LPARAM lParam ) 2 { 3 char ...
分类:
其他好文 时间:
2014-08-08 15:15:36
阅读次数:
324
file.js文件 需要安装formidable 模块 var?formidable?=?require(‘formidable‘);
var?????http?=?require(‘http‘);
var?????sys?=?require(‘sys‘);??
http.createServer(function(req,?res)?...
分类:
其他好文 时间:
2014-08-08 13:02:36
阅读次数:
202
调用的方法之一的DeviceIoControl 驱动层提供设备名 例如filedisk 在驱动层 首先先是注册列表用winObj查看 filedisk的驱动对象但是 这八个对象时怎么生成的呢?我们在加载filedisk.sys驱动时进行中断 查看过程 具体的双击调试 看我的另一篇文章 http:/....
分类:
其他好文 时间:
2014-08-08 12:22:25
阅读次数:
219
python3 print输出unicode字符时出现以下错误:UnicodeEncodeError: 'gbk' codec can't encode character '\u30fb解决方法:sys.stdout = io.TextIOWrapper(sys.stdout.buffer, er...
分类:
编程语言 时间:
2014-08-08 12:21:35
阅读次数:
431
通常定义Controller时一般都定义成public:package net.mingyang.modules.system;@Controller@RequestMapping("/control/system/config")public class ConfigController{ ...
分类:
Web程序 时间:
2014-08-08 12:06:15
阅读次数:
268
我们有的时候有这样的需要,允许一人用户查看修改其它用户的文件,但不允许删除。用一个普通用户执行一个命令,但这个命令的运行身份是root。因为linux系统权限设置过于简单,像做这些事情就需要用到facl了。facl是fileaccesscontrollist的缩写。当一个用户访问一个文件时,文..
分类:
其他好文 时间:
2014-08-08 02:09:55
阅读次数:
288