- 浏览: 87836 次
- 性别:
- 来自: 北京
最新评论
文章列表
http://www.netadmintools.com/html/5inittab.man.html
- 2009-07-30 15:44
- 浏览 785
- 评论(0)
unsigned signed cast
- 博客分类:
- C++
unsigned 和 signed 一起运算时, signed 会 cast 为 unsigned
-1 > 0U (unsigned 0)
- 2009-07-27 18:03
- 浏览 793
- 评论(0)
FAQ:
1. How to install
Debian/Ubuntu
$ apt-get install wine
Or Compile source of wine directly
2. How to use
$ winecfg
will create ~/.wine in you home directory
3. 乱码问题
copy simsun.ttc ~/.wine.bak/drive_c/windows/Fonts/
$ regedit zh.reg
(zh.reg 见附件)
4. How to run
For example : 大智慧
$ wine DZH_ ...
- 2009-04-26 21:37
- 浏览 815
- 评论(0)
全局静态变量与 全局变量的区别在于全局静态变量只能在被本源文件中使用。
[header.h]
static int i = 0;
void setStatic();
[s1.c]
#include <stdio.h>
#include "header.h"
int main(int argc, char *argv[])
{
setStatic();
printf("%d %dn",&i, i);
return 0;
}
[s2.c]
#include <stdio.h>
#include "head ...
- 2009-04-25 20:49
- 浏览 1548
- 评论(0)
iwconfig 的输出中有 frequency 和 Tx-power
- 2009-04-25 20:48
- 浏览 1000
- 评论(0)
如何查看BT (BlueTooth) 的信息
- 博客分类:
- Linux
lsusb -vv
bluez下面
hciconfig hcitool
- 2009-04-25 20:48
- 浏览 713
- 评论(0)
False:
如果你想在你的Callback 之后继续把signal 传递给system继续处理
True:
如果你想到此为止(不再把signal 传递给system继续处理)
- 2009-04-25 20:47
- 浏览 705
- 评论(0)
函数的使用范围应该得到最大程度的限制,而不是default 的 globle。
如果不想 global ,就应该在前面加上static (only 在本源文件中使用)
#这个以前没有注意到
#参考来源 <Expert C programming> deep c secrets
# Too Much Default Visibility
- 2009-04-25 20:47
- 浏览 712
- 评论(0)
ActivePerl-5.6.1.638
S60-SDK-200634-3.1
Carbide.c++_v1.3
Building an application(HelloWord) for the emulator from the CLI
>bldmake bldfiles
>abld build winscw udeb
ERROR: Unable to identify a valid CodeWarrior for Symbian OS installation
我觉得这个错误提示可能有些问题,它可能需要某个IDE的env setting, 而不一定是Code ...
- 2009-04-25 20:46
- 浏览 1243
- 评论(0)
在Src 目录下new 几个新的目录和文件,Make 就出现上面的Error 了。
〔问题原因〕
应该是在Make的过程中没有找到 指定的file。
〔解决方法〕
可以在Makefile.am 或者 Makefile 中 加入 VPATH(搜索path)
例如:
VPATH = base utils engineer
- 2009-04-25 20:44
- 浏览 3086
- 评论(0)
[设备采购] SAGEM XG-760A chipset :zd1211
价格:30RMB 新旧程度:旧 使用状况:良好
http://auction1.taobao.com/auction/item_detail-0db2-01f4ed18b77e327bf152606009114236.jhtml?pm1=1
[安装Driver]参考 http://blog.linym.net/archives/209
首先要安裝編譯相關套件 ...
- 2009-04-25 20:43
- 浏览 2779
- 评论(0)
refer to http://www.linux-usb.org/gadget/file_storage.html
- 2009-04-25 20:39
- 浏览 972
- 评论(0)
please refer to:
http://tips.webdesign10.com/how-to-take-a-screenshot-on-ubuntu-linux
import MyScreenshot.png
or
sleep 10; import -window root MyScreenshot2.png
- 2009-04-25 20:35
- 浏览 591
- 评论(0)
Refer to : http://topic.csdn.net/t/20051103/17/4369767.html#
http://en.wikipedia.org/wiki/Loop_device
dd if=/dev/zero of=/tmp/tmp_loop bs=1k count=512 (容量根据需要自定义)
losetup /dev/loop0 /tmp/tmp_loop (associate )
mkfs -t ext2 /dev/loop0
mount -t ext2 /dev/loop0 /mnt
mkdir -P /mnt/dev
mkdir -P /mn ...
- 2009-04-25 20:35
- 浏览 737
- 评论(0)