【工具】 1、电脑一台(安装有Microsoft Excel) 2、受保护excel一个 【步骤】 1、首先,打开受保护的Excel表格,按“ALT”+“F11”键,弹出如下的界面。 2、点击“插入”——“模块”,出现下图 于空白处添加如下代码: 点击“F5”运行宏模块,进行密码破解,出现如下图,密 ...
分类:
其他好文 时间:
2016-11-09 22:04:40
阅读次数:
234
DP Time Limit:3000MS Memory Limit:131072KB 64bit IO Format:%lld & %llu Submit Status Practice HYSBZ 3229 DP Submit Status Practice HYSBZ 3229 Descript ...
分类:
其他好文 时间:
2016-11-09 19:43:54
阅读次数:
193
190. Reverse Bits Reverse bits of a given 32 bits unsigned integer. For example, given input 43261596 (represented in binary as 0000001010010100000111 ...
分类:
其他好文 时间:
2016-11-09 11:38:35
阅读次数:
145
引用知乎看到对接口的总结: 接口就是个招牌比如说你饿了,看到前面有个挂着KFC的店,然后你想到可以进去买汉堡了。KFC就是接口,我们看到了这个接口,就知道这个店会卖汉堡(实现接口)。那么为什么我们要去定义一个接口,这个店可以直接卖汉堡啊(直接写实现方法),是的,这个店可以直接卖炸鸡腿,但没有挂KFC ...
分类:
编程语言 时间:
2016-11-09 10:56:32
阅读次数:
207
Given a binary tree, determine if it is height-balanced. For this problem, a height-balanced binary tree is defined as a binary tree in which the dept ...
分类:
其他好文 时间:
2016-11-08 23:21:25
阅读次数:
293
页面A:页面B,你能传个数据给我吗? 页面B:额,我们不在同一个域内,因为涉及到WEB安全问题,所以浏览器禁止我直接向你传数据。 页面A:有什么办法可以解决这个问题吗? 页面B:可以使用window.name。 页面A:那你需要我做些什么? 页面B:1.你先动态创建一个iframe节点; 2.设置节 ...
下载地址:http://nginx.org/ 1.2 解压 使用命令:tar zxvf nginx-1.8.1.tar.gz 1.3 切换至解压目录,安装依赖 yum -y install gcc-c++ pcre-devel zlib-devel 1.4 创建安装目录,预编译检查 --prefix ...
分类:
系统相关 时间:
2016-11-08 19:34:03
阅读次数:
193
安装步骤: 1、下载nginx,执行:wget http://nginx.org/download/nginx-1.10.2.tar.gz 2、解压,执行:tar vxzf nginx-1.10.2.tar.gz 3、安装,切换到nginx解压目录下,执行:./configure --prefix= ...
分类:
其他好文 时间:
2016-11-08 19:33:29
阅读次数:
235
一,Get请求 1,无参数Get请求,跟平常写ajax请求一样,并无什么差别 $.ajax({ url: '.../api/User/UserVerify, type: 'get', success: function (json) { alert(json); }, error: function ...