1.查看安全策略 secpol.msc 2.使用cl 批量编译时,把不需改变的先生成obj 然后把需要改变的单独生成obj(如果是.h文件,则把所有包含.h文件的*.cpp全部使用cl生成obj) 然后使用link把.obj文件链接起来 3.2008R2无法打补丁的解决方法 C:\Windows\System32\catroot2 目录权限应用到所有子目录及文件上.
原创 2013-04-24 11:44:19
411阅读
viewport 用于调控移动设备的可视区域 width:页面宽度,可以取值具体的数字,也可以是 device-width,表示跟设备宽度相等。height:页面高度,可以取值具体的数字,也可以是 device-height,表示跟设备高度相等。initial-scale:初始缩放比例。minimu ...
转载 2021-08-26 13:52:00
92阅读
2评论
[root@localhost ~]# grep __NR_write -R /usr/include//usr/include/bits/syscall.h:#define SYS_write __NR_wri...
原创 2022-05-03 18:49:08
98阅读
What's the difference between vector and list in STL A vector is a wrapper arround an array. This means it offers random access iterator that are very fast and can also be used when raw memory pointe
转载 精选 2010-09-29 16:43:24
525阅读
1点赞
1评论
1 查看每列缺失值的数量 2 第一行和最后一行拼接 3 读取指定数据 4 多列apply. 5 检测缺失值 6 两列数据交换 7某行数据加到行尾 8 去重 9 删除一列 10 删除最后一行数据 11 删除null行 12 设置列索引 13 数据提取 14 提取条件为空的行 15 行数据添加 16 展
转载 2021-02-23 19:22:00
81阅读
结构体数组 #includestruct student{ int num; char name[20]; float score1,score2,sum,average; };void main(){ struct student stu[5]; ...
转载 2013-01-18 15:04:00
121阅读
2评论
exec >/root/shou.txt 2>&1   将命令放在rc.local中第一行,会将rc.local的命令输出日志输出到/root/shou.txt文件中。
原创 2021-05-26 10:40:09
283阅读
perl -pi -e 's|googleapis.com|useso.com|g' `find ./ -type f`yingc@yingc:~/gcyin/test/thirdparty/ffmpeg/FFmpeg-master$ perl -e 'print "A"x257'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
转载 2014-09-26 14:15:00
105阅读
2评论
(无锁优化、自旋、乐观锁)Compare And Setcas(V,E,New)if V==EV=Newotherwise try a
原创 2021-12-30 15:38:53
104阅读
Freebsd杂项0人收藏此文章,我要收藏        发表于1年前(2012-05-30 15:26) ,     已有82次阅读 ,共0个评论         1.控制台<-->界面 请用Ctrl+Alt+Fn以切回至console。Ctrl+Alt+F1可以切回至第一个cons
转载 精选 2013-07-25 16:31:47
450阅读
svn导出export LANG=zh_CN.UTF-8 && svn --username shuai --password shuai checkout svn://192.168.14.111/safe.qq.com /update/webapps/safe.qq.commysqlsla --sort=c_sum slow.log
原创 2013-12-16 15:59:09
460阅读
几款好用的编程字体编程字体考虑如下2点:1. 等宽字体;2. 相似字符易区分,如0和o,l和1比较好用的字体有1. Bitstream Vera Sans Mono (通常使用的字号是11号字体汉字可正常显示)2. Monaco3. Consolas4. Menlo养眼的控制台背景色米黄色:247、238、214
原创 2016-01-13 22:49:10
715阅读
luafor里面v = nil无效 --[[local test01 ={ [1] = {{1,2,3,4},{1,2,3,4}}, [2] = {{1,2,3,4},{1,2,3,4}},}for k,v in pairs(test01)do for kk,...
转载 2014-02-07 17:52:00
113阅读
2评论
1.随机数 unsigned int RandomData(int min,int max){ srand((unsigned)time(NULL)); unsigned nA = (unsigned)rand(); unsigned nB = (unsi...
转载 2011-11-30 10:17:00
87阅读
2评论
1. 四平方和定理 任何一个自然数都能由四个平方和组成 2. a²-(a+1)²-(a+2)²+(a+3)²=4; (a−1)³+(a+1)³+(−a)³+(−a)³=6a; ...
转载 2021-10-07 21:27:00
166阅读
2评论
诺丁汉大学的科学家近期发现了一种在人体老化进程中起重要作用的蛋白质——碳酸酐酶。
p
原创 2023-06-14 17:38:28
39阅读
<script type="text/javascript"><!--新旧版本定义function sayHi(){  alert('hello');}//--></script>//xhtml定义<script
转载 2023-07-19 16:42:22
51阅读
jar与war其他网址jar和war的区别_Java_破茧成蝶-博客war包和jar包的区别_Java_shu61604
原创 2022-03-23 13:53:20
78阅读
3306<>[(none)]>flush tables with read lock; #全局读锁,所有库的所有表只读3306<>[(none)]>unlock tables; #取消全局读锁
原创 2022-01-13 12:56:34
165阅读
find,查找php文件,过滤stocklist目录# find ./   -path "./stocklist" -prune -o -type f  -name "*.php" -print根据inode删除文件find . -inum 3587470 | xargs rm -rf30分钟正则表达式http://www.cnblogs.com/deerchao/a
原创 2012-03-15 14:50:42
422阅读
  • 1
  • 2
  • 3
  • 4
  • 5