“Overview of the Common Language Infrastructure”,作者Jarkko Piiroinen - 自己的作品。采用Public domain授权,来自维基共享资源。右图即为运行图。最上层即为各种语言,然后经过对应的编译器编译成程序集,也就是 CIL 通用中间...
分类:
Web程序 时间:
2014-07-28 13:46:10
阅读次数:
291
前提:查看本地硬件信息常用工具查看CPU信息:#cat/proc/cpuinfo#x86info#lscpu查看PCI:#lspci查看USB:#lsusb查看块设备:#lsblk查看综合的设备详细信息:#hal-device编译:交叉编译cross-compiling用于在宿主机上编译,应用于别的机器上架构迥异的内核。编译内核的步骤:(安..
分类:
其他好文 时间:
2014-07-28 00:45:30
阅读次数:
383
1、什么是XSSXSS又叫CSS (Cross Site Script) ,跨站脚本攻击。它指的是恶意攻击者往Web页面里插入恶意html代码,当用户浏览该页之时,嵌入当中Web里面的html代码会被运行,从而达到恶意用户的特殊目的。XSS属于被动式的攻击,由于其被动且不好利用,所以很多人常呼略其危...
分类:
其他好文 时间:
2014-07-27 21:56:49
阅读次数:
209
domainadmin打开EMC没有新建邮箱权限需要将相应的用户在PDC上的dsa.msc中添加到OrganizationManagement中如下图:网上多数用户会选择将本地凭据修改为domain\administrators的。此处不建议用这方法。一般不用administrator修改服务器设置。
分类:
其他好文 时间:
2014-07-27 12:07:43
阅读次数:
280
The “Hype Cycle for Emerging Technologies” report is the longest-running annual Hype Cycle, providing a cross-industry perspective on the technologies...
分类:
其他好文 时间:
2014-07-27 11:00:12
阅读次数:
290
英文稿:The “Hype Cycle for Emerging Technologies” report is the longest-running annual Hype Cycle, providing a cross-industry perspective on the technolo...
分类:
其他好文 时间:
2014-07-27 10:59:02
阅读次数:
413
笛卡尔-------------笛卡尔积------------------select * from StuInfo,StuScoreselect * from StuInfo cross join StuScore--查询出有意义的行select * from StuInfo as a cros...
分类:
其他好文 时间:
2014-07-27 10:43:12
阅读次数:
253
今天在做验证码时发现一个问题:A、B窗口都打开同一个页面,A先生成一个验证码,B再生成验证码,这时A所生成的验证码被B覆盖掉了。原因是使用了同名的cookie来存储验证码。一时找不到解决方法就参考了WebQQ的登录画面,发现tx也没有解决这个问题,也许是觉得这个不算是问题吧。但还是借这个机会再次了解...
分类:
其他好文 时间:
2014-07-26 14:27:30
阅读次数:
167
链接根据旋转卡壳的思想,找到当前边的最远点。确定i,j找到最远的k使 cross(i,j,k)最大,那么i,j+1时只需从k+1开始找即可 。 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #i...
分类:
其他好文 时间:
2014-07-26 00:24:26
阅读次数:
326
无数被跨域请求爆出翔来的人 遇到请求成功却不能进入success 总是提示parsererror 参考一下两篇文章吧参考文章http://www.asp.net/web-api/overview/security/enabling-cross-origin-requests-in-web-apian...