是圈内非常著名的黑客攻击平台,是一个封装好的Linux操作系统,内置大量的网络安全检测工具以及黑客破解软件等。Back Track因可以方便的破解无线网络而出名,其中内置的spoonwep2是一个非常强悍的图形化破解WEP无线网络密码的工具。
分类:
系统相关 时间:
2015-03-21 21:18:39
阅读次数:
178
转载请注明出处:帘卷西风的专栏(http://blog.csdn.net/ljxfblog) 最近在学习的过程中重新整理了一下代码,顺便把cocos2dx从3.0升到了3.2。这里记录一下升级过程中的问题。
之所以只升到3.2是因为后面的版本使用了lua5.2,而我还是更喜欢用5.1,而且能继续使用luajit,另外一个原因是因为cocosstudio,3.2后面的版本就导出成csd格式了,我...
分类:
其他好文 时间:
2015-03-21 20:03:49
阅读次数:
194
1.以word为单位的移动 w,e;b,ge(word,end,back)2.移动到行首或行尾 ^,$3.移动到指定的字符上 f;F(find) t;T(to) 用“;”来重复命令。用“,”来重复命令,但是方向与原来的命令相反。4.匹配一个括号为目的的移动 %5.移动到指定行( 全部文本为对象) G...
分类:
系统相关 时间:
2015-03-21 11:02:09
阅读次数:
142
'vim' go into the vim mode
'i' 'a' 's' is means insert mode
'v' is means visual mode
'esc' is means back to normal mode
j down
k up
h left
l right...
分类:
系统相关 时间:
2015-03-21 06:23:49
阅读次数:
144
背景:开始wa了几次,是因为剪枝的不合理。然后去掉其中几个错误剪枝ac。就是三个方向的bfs,一定要用标记数组,要不然数据会呈现3的指数级别增长会爆队列的。这里标记数组起始可以用bool visit[M]。
学习:1.如果队列不用stl的话,可以用数组实现,只是在数组中间操作:int queue[2*M];
int *front=queue+M,*back=queue+M+1; //定义队...
分类:
其他好文 时间:
2015-03-20 14:30:48
阅读次数:
133
在IE下,如果在readonly的input里面键入backspace键,会触发history.back(), 用以下jquery代码修正之$("input[readOnly]").keydown(function(e) { e.preventDefault();});
分类:
其他好文 时间:
2015-03-20 12:48:56
阅读次数:
98
Problem Description
This year is the 60th anniversary of NJUST, and to make the celebration more colorful, Tom200 is going to invite distinguished alumnus back to visit and take photos.
Af...
分类:
其他好文 时间:
2015-03-20 09:24:12
阅读次数:
110
我们先看下面的程序:#include
int main()
{
int child;
char *args[] = {"/bin/echo", "Hello", "World!", NULL};
if(!(child = fork()))
{
/* child */
execve("/bin/echo", args, NULL});
printf("I am back,...
分类:
系统相关 时间:
2015-03-20 09:20:14
阅读次数:
166
Could not roll back Hibernate transaction; nested exception is org.hibernate.TransactionException: JDBC rollback failed...
分类:
数据库 时间:
2015-03-19 11:30:34
阅读次数:
168
Just use a stack to record the numbers. And evey time you encounter a operator, pop two numbers, calucate it and push it back.Do not disorder the numb...
分类:
其他好文 时间:
2015-03-19 09:59:59
阅读次数:
113