Ubuntu 12.04环境下编译xapian时报此错误,因为从来没有在此系统下跑过C++,所以用C++编译器的时候出现此问题出现该情况是由于c++编译器的相关package没有安装,以root用户登陆,在终端上执行: # sudo get-apt install glibc-headers #.....
分类:
编程语言 时间:
2014-09-08 09:37:46
阅读次数:
299
NASM has a simplified syntax designed to let the user code with minimum overhead. In its simplest form, a NASM program needs nothing more than the ass...
分类:
其他好文 时间:
2014-09-06 22:31:13
阅读次数:
379
Word Break
Given a string s and a dictionary of words dict, determine if s can be segmented into a space-separated sequence of one or more dictionary words.
For example, given
s = "leetcode",...
分类:
其他好文 时间:
2014-09-06 18:46:33
阅读次数:
206
Fiber Network
Time Limit: 1000MS
Memory Limit: 65536K
Total Submissions: 3107
Accepted: 1427
Description
Several startup companies have decided to build a better In...
分类:
Web程序 时间:
2014-09-06 17:26:33
阅读次数:
292
1.netstatnetstat -tnl | grep 443 (查看443端口是否被占用)root用户,用netstat -pnl | grep 443 (还可显示出占用本机443端口的进程PID)。-a (all)显示所有选项,默认不显示LISTEN相关-t (tcp)仅显示tcp相关选项-u...
分类:
Web程序 时间:
2014-09-06 17:24:13
阅读次数:
349
Cannot complete the install because one or more required items could not be found. Software being installed: m2e - Maven Integration for Eclipse (inc....
分类:
系统相关 时间:
2014-09-06 00:59:32
阅读次数:
288
Stopping - no more URLs to fetchException in thread "Thread-8523" Exception: java.lang.OutOfMemoryError thrown from the UncaughtExceptionHandler in th...
分类:
其他好文 时间:
2014-09-05 04:28:30
阅读次数:
241
http://ued.ctrip.com/blog/?p=3589#more-3589以前做项目的时候就依葫芦画瓢的设置 { font-family:arial,”microsoft yahei”,simsun,sans-self; } 等类似的字体,然而当更多的设备和系统出现后,以前这样的设置已不...
分类:
Web程序 时间:
2014-09-03 16:42:16
阅读次数:
209
配置优点: 1 不占用内网的ip 2 固定后配置的一些可以不用变 注意:用root用户登陆 1 得到自己的ip地址 ifconfig 得到我的ip地址就是 192.168.239.128 2 得到网关地址 netstat -ar 我的网关地址是192.168.239.2 3 得到dns地址 more...
分类:
系统相关 时间:
2014-09-03 14:44:26
阅读次数:
350
fopen函数mode模式:w+不是追加写 是多了一个读权限文件指针+1没有意义拷贝一个文件: fgets fputs (fgetc同理)int main(){ FILE *fp, *fpcp; fp = fopen("yesteday_once_more.txt", "r"); fpcp = fo...
分类:
其他好文 时间:
2014-09-02 22:43:35
阅读次数:
443