一
HP关闭脚本错误提示的方法:打开PHP安装目录下的php.ini文件找到display_errors = On 修改为 display_errors =
off注意:如果你已经把PHP.ini文件复制到windows目录下,那么必须同时把 c:\windows/php.ini里的display_...
分类:
Web程序 时间:
2014-05-10 20:15:55
阅读次数:
461
大家可能会被拼写错误提示所烦扰。只要简单几步即可取消拼写检查window ->
Preferences - >General -> Editors -> Spelling -> Enable spell
checking 把钩去掉即可
分类:
系统相关 时间:
2014-05-10 19:58:23
阅读次数:
724
您正试图在64位版本的窗口中运行32位安装程序、系统有32位操作系统和64位操作系统的分别,相同的软件的安装也需要区分操作操作系统的位数。解决办法:查看自己系统类型,根据类型下载安装相应位数的软件。
Window --> Preferences --> General -->
Appearance --> Colors and Fonts --> Basic --> Text Font --> Change
分类:
系统相关 时间:
2014-05-05 23:44:47
阅读次数:
457
方法一:wireshark是无法抓取到数据包的,需要通过设置才可以。 具体方法如下:
①:以管理员身份运行cmd ②:route add 本机ip mask 255.255.255.255 网关ip
还需要设置路由器(不知道咋设置,知道的仁兄能否告之一下)才能利用wireshark抓本地包。方法.....
今天阅读《Outlook 2010 Inside Out》时,上机操作时有几个小发现win 7
自带截屏工具(360浏览器有,SnagIt更强大)win
7自带便签纸(当然比不上Outlook中的便签,更不能与OneNote比了!)程序中百宝箱内有ReadyFor4GB.exe可帮助突破32位4G内...
分类:
其他好文 时间:
2014-05-05 23:14:25
阅读次数:
356
直接指向网页[InternetShortcut]URL=http://user.qzone.qq.com/2275471603Modified=F00F43B3A875C601D9ShowCommand=7IconIndex=1IconFile=C:\WINDOWS\SYSTEM\url.dllHo...
Given two binary strings, return their sum
(also a binary string).For example,a ="11"b
="1"Return"100".思路:一个二进制字符串相加;首先从字符串的末尾开始,先二进制字符转化为数字,然后再相加;然后将...
分类:
其他好文 时间:
2014-05-05 23:10:15
阅读次数:
319
Sliding Window
Time Limit: 12000MS
Memory Limit: 65536K
Total Submissions: 36315
Accepted: 10756
Case Time Limit: 5000MS
Description
An array of size n ≤ 106 is gi...
#include
#include
#include
#include
#include
using namespace std;
#define N 20020
struct node{
int from, to, dou, nex;
}edge[N];
int head[N], edgenum;
void add(int u, int v,int dou){
node E={u,v,dou...
分类:
其他好文 时间:
2014-05-03 15:25:32
阅读次数:
340