`
文章列表

inittab

http://www.netadmintools.com/html/5inittab.man.html

unsigned signed cast

    博客分类:
  • C++
unsigned 和 signed 一起运算时, signed 会 cast 为 unsigned -1 > 0U  (unsigned 0)

negative mod

    博客分类:
  • C++
(-10) % 3 = ? (-10) - (3* -4) = 2
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_ ...
全局静态变量与 全局变量的区别在于全局静态变量只能在被本源文件中使用。 [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 ...
iwconfig 的输出中有 frequency 和 Tx-power
lsusb -vv bluez下面 hciconfig hcitool
False: 如果你想在你的Callback 之后继续把signal 传递给system继续处理 True: 如果你想到此为止(不再把signal 传递给system继续处理)
函数的使用范围应该得到最大程度的限制,而不是default 的 globle。 如果不想 global ,就应该在前面加上static (only 在本源文件中使用) #这个以前没有注意到 #参考来源 <Expert C programming> deep c secrets # Too Much Default Visibility
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 ...
在Src 目录下new 几个新的目录和文件,Make 就出现上面的Error 了。 〔问题原因〕 应该是在Make的过程中没有找到 指定的file。 〔解决方法〕 可以在Makefile.am 或者 Makefile 中 加入 VPATH(搜索path) 例如: VPATH = base utils engineer
[设备采购] 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 首先要安裝編譯相關套件 ...

usb mass storage

refer to http://www.linux-usb.org/gadget/file_storage.html
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
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 ...
Global site tag (gtag.js) - Google Analytics