i**p 发帖数: 902 | 1 【 以下文字转载自 Working 讨论区 】
发信人: isup (No), 信区: Working
标 题: Software Configuration Management
发信站: BBS 未名空间站 (Wed Aug 27 01:09:41 2008)
Is this job worth to try? |
|
b***y 发帖数: 2799 | 2 ☆─────────────────────────────────────☆
isup (No) 于 (Fri Feb 8 19:50:44 2008) 提到:
I want to put the class definition in one .h file, and all inline member
fuction in one .cpp file. By this way, I can hide the souce code from the
class client. It seems not work when I put main() in another .cpp file and
compile the both .cpp files. The error messages say the inline member
funtions are Undefined.
Is it possible to hide the inline member functions' code?
☆───────────────────────────────────── |
|
i**p 发帖数: 902 | 3 【 以下文字转载自 Unix 讨论区 】
发信人: isup (No), 信区: Unix
标 题: "Find ... -exec ..." script never ends.
发信站: BBS 未名空间站 (Wed Oct 22 01:46:34 2008)
find . -name "*.h" -exec dos2unix -437 {} {} \; -print
If there are more than one .h files, it keeps running for ever. Like this:
a.h
b.h
a.h
b.h
a.h
...
It is fine if there is only one file. What is wrong? How to fix it? |
|
b***y 发帖数: 2799 | 4 ☆─────────────────────────────────────☆
isup (No) 于 (Thu Sep 22 17:10:06 2005) 提到:
Tell me your felling when you see "goto" in the C source code. I am very very
uncomfortable. Am I too sensetive?
☆─────────────────────────────────────☆
skydive (跳跳~~备战备荒为人民) 于 (Thu Sep 22 18:02:37 2005) 提到:
i feel the guy used this must be a genius,呵呵
very
☆─────────────────────────────────────☆
namdog (南无狗@Chicago) 于 (Thu Sep 22 18:53:18 2005) 提到:
goto 用好了,代码很清晰的。我看过。
very
☆────────────────────── |
|
i**p 发帖数: 902 | 5 【 以下文字转载自 Java 讨论区 】
发信人: isup (No), 信区: Java
标 题: Free UML software
发信站: BBS 未名空间站 (Sun Feb 7 19:30:36 2010, 美东)
Can anybody recommend one? |
|
i**p 发帖数: 902 | 6 【 以下文字转载自 Java 讨论区 】
发信人: isup (No), 信区: Java
标 题: Android C/C++ native calls Java APIs
发信站: BBS 未名空间站 (Fri Jul 20 01:22:38 2012, 美东)
There are lots of examples that Android C/C++ native calls Java APIs.
However, all of these examples I have read are the Java APIs call native
first and then the native calls other Java APIs by using the passed JNI-ENV.
How could C/C++ native calls Java APIs without the passed JNI-ENV, or by
anyway to get the JNI-ENV?
Can you give an example or a link for it?
Th... 阅读全帖 |
|
i**p 发帖数: 902 | 7 【 以下文字转载自 Linux 讨论区 】
发信人: isup (No), 信区: Linux
标 题: copy_from_user() 是怎么知道缓存长度的?
发信站: BBS 未名空间站 (Thu May 1 00:42:13 2014, 美东)
先看这个函数的定义。
-------------------------
unsigned long copy_from_user(void *to, const void __user *from, unsigned
long count);
the return value is the amount of memory still to be copied.
-------------------------
to 是由kmalloc()分配的kernel内存空间,假定512字节。
from 是存有数据的内存,其长度是 count 字节。 假定是612字节。
这个函数的返回值是612-512=100,the amount of memory still to be copied。
我的问题是copy_from_user() 执... 阅读全帖 |
|
i**p 发帖数: 902 | 8 【 以下文字转载自 Linux 讨论区 】
发信人: isup (No), 信区: Linux
标 题: 并口驱动的一个问题
发信站: BBS 未名空间站 (Wed May 21 21:03:59 2014, 美东)
最近编译运行了《Essential Linux Device Drivers》第5章的例子,
Driver for the Parallel LED Board (led.c)。程序不复杂。其中有一个函数led_
attach(struct parport *port) 是由parport_register_driver(&led_driver)注册的。
请问,led_attach()是何时被调用的?或者说怎么引起系统调用这个函数?
static void led_attach(struct parport *port)
{
/* Register the parallel LED device with parport */
pdev = parport_register_device(port, DEVICE_NAME,
led_preempt, NU... 阅读全帖 |
|
i**p 发帖数: 902 | 9 【 以下文字转载自 Linux 讨论区 】
发信人: isup (No), 信区: Linux
标 题: Micro-SD card 驱动程序
发信站: BBS 未名空间站 (Fri Jun 20 12:48:55 2014, 美东)
写了一个card层的sdio驱动程序,用于读Micro-SD card。
sdio_register_driver(&my_sdio_driver) 成功返回,可是my_sdio_probe()从没被
sdio core调用(卡已插入,插拔都试过)。
请有经验的大牛指点。
static int my_sdio_probe(struct sdio_func *func,
const struct sdio_device_id *id)
{
printk(KERN_DEBUG "my_sdio_probe()");
....
return 0;
}
static const struct sdio_device_id my_sdio_ids[] = {
{ ... 阅读全帖 |
|
i**p 发帖数: 902 | 10 【 以下文字转载自 Linux 讨论区 】
发信人: isup (No), 信区: Linux
标 题: Linux scheduler
发信站: BBS 未名空间站 (Wed Oct 22 20:32:24 2014, 美东)
用户空间的进程是由scheduler调度的.
内核空间的任务也是由scheduler调度的吗? 比如我写了一个device driver,让它死循
环, 内核有没有机制在一段时间以后将这个任务挂起? 还是只有用高优先级的中断打段
它的执行? |
|
i**p 发帖数: 902 | 11 【 以下文字转载自 EmergingNetworking 讨论区 】
发信人: isup (No), 信区: EmergingNetworking
标 题: TLS client certificate
发信站: BBS 未名空间站 (Wed Oct 29 11:55:14 2014, 美东)
HTTPS需要TLS的支持. 而在TLS Handshaking Protocols中, TLS client 要回送
certificate(Client)给TLS server. 请问这个certificate(Client)是web browser安
装的吗? |
|
i**p 发帖数: 902 | 12 【 以下文字转载自 Linux 讨论区 】
发信人: isup (No), 信区: Linux
标 题: Linux设备驱动的开源问题
发信站: BBS 未名空间站 (Mon Dec 1 01:50:06 2014, 美东)
比如 WiFi 卡的驱动程序, 是不是除了固化到卡上的firmware, 任何在Linux上运行的
部分都要开源? |
|
i**p 发帖数: 902 | 13 【 以下文字转载自 Java 讨论区 】
发信人: isup (No), 信区: Java
标 题: Volatile variables do not provide any atomicity
发信站: BBS 未名空间站 (Sun Mar 8 14:38:43 2015, 美东)
This is from book "Core Java"
Volatile variables (private volatile boolean done;) do not provide any
atomicity. For example, the method
public void flipDone() { done = !done; } // not atomic
is not guaranteed to flip the value of the field.
What does "atomicity mean in this context? atomic for "=", for "!" or for
reading "done"? |
|
i**p 发帖数: 902 | 14 【 以下文字转载自 MobileDevelopment 讨论区 】
发信人: isup (No), 信区: MobileDevelopment
标 题: Android上的自动测试工具
发信站: BBS 未名空间站 (Fri Jul 17 23:05:17 2015, 美东)
需要在Android手机上测试网页. 要求是:
1. 网页在Chrome上运行.
2. 测试时手机不与任何其他计算机相连.
3. 能在手机上产生一个App. 启动App就开始测试. |
|
i**p 发帖数: 902 | 15 【 以下文字转载自 Windows 讨论区 】
发信人: isup (No), 信区: Windows
标 题: What is wrong with my IE
发信站: BBS 未名空间站 (Tue Aug 2 02:43:31 2005)
I can use IE to view my yahoo and hotmail mail, but I got error when I tried
to attach a file to sned a mail. The error message is "The page can not be
display".
What is wrong?
Thanks! |
|
i**p 发帖数: 902 | 16 【 以下文字转载自 Software 讨论区 】
发信人: isup (No), 信区: Software
标 题: How to kill "smart antivirus 2009" virus?
发信站: BBS 未名空间站 (Fri Dec 5 00:30:37 2008)
Google-ed, but not find any tool to remove it.
I have an official version McaFee. It does not work either. |
|
i**p 发帖数: 902 | 17 【 以下文字转载自 Windows 讨论区 】
发信人: isup (No), 信区: Windows
标 题: Mailbox.pst file
发信站: BBS 未名空间站 (Thu Mar 6 20:44:50 2008)
add one Mailbox.pst (almost 900M) file to outlook as a folder. Remove all
the emails in the folder and empty the "Deleted" box but the size of file
Mailbox.pst does not change. I thought the file size should become smaller
because all the emails were removed. What is wrong? |
|
i**p 发帖数: 902 | 18 【 以下文字转载自 JobHunting 讨论区 】
发信人: isup (No), 信区: JobHunting
标 题: Priint .chm file
发信站: BBS 未名空间站 (Sat Mar 15 23:54:55 2008)
Does anyone know how to print the whole book on time? Not want to print one
topic by one topic.
Thanks! |
|
i**p 发帖数: 902 | 19 【 以下文字转载自 JobHunting 讨论区 】
发信人: isup (No), 信区: JobHunting
标 题: English-Chinese Dictionary
发信站: BBS 未名空间站 (Mon Mar 17 03:29:00 2008)
Is there any free English-Chinese dictionary software which has audio
function for the English word? Where to download?
Thanks! |
|
i**p 发帖数: 902 | 20 【 以下文字转载自 JobHunting 讨论区 】
发信人: isup (No), 信区: JobHunting
标 题: 迅雷 software
发信站: BBS 未名空间站 (Mon Mar 17 03:08:16 2008)
Is there any English interface version? |
|
i**p 发帖数: 902 | 21 【 以下文字转载自 Windows 讨论区 】
发信人: isup (No), 信区: Windows
标 题: Windows Meeting Space and Netmeeting
发信站: BBS 未名空间站 (Mon Jul 14 01:25:48 2008)
I have two laptops, one is Vista home, another is WinXP. Windows Meeting
Space in Vista home and Netmeeting in WinXP are not compatible each other.
I notice Microsoft provides a Netmeeting software but it does not run in
Vista Home version.
Is there any way to setup an network meeting between Vista and WinXP.
Thanks! |
|
i**p 发帖数: 902 | 22 【 以下文字转载自 Windows 讨论区 】
发信人: isup (No), 信区: Windows
标 题: VNC for multiple users ( >= 2)
发信站: BBS 未名空间站 (Mon Jul 14 01:31:39 2008)
I just notice the free version of RealVNC server supports 1 viewer only. If
the 2nd viewer is connected, the 1st viewer is automatically disconnected.
Is there any free VNC-like software which supports more than 1 user? |
|
i**p 发帖数: 902 | 23 【 以下文字转载自 Windows 讨论区 】
发信人: isup (No), 信区: Windows
标 题: SQL Server 2008 and Vista
发信站: BBS 未名空间站 (Thu Jul 31 02:48:26 2008)
Can SQL Server 2008 run on Vista home version OS? |
|
i**p 发帖数: 902 | 24 【 以下文字转载自 Database 讨论区 】
发信人: isup (No), 信区: Database
标 题: Oracle in Windows
发信站: BBS 未名空间站 (Wed Sep 17 21:20:51 2008)
Want to install an Oracle database in Win2k. I notice there are several free
versions available from Oracle. Could anyone recommand me a good version? |
|
i**p 发帖数: 902 | 25 【 以下文字转载自 Hardware 讨论区 】
发信人: isup (No), 信区: Hardware
标 题: Driver for Wireless 11G USB adapter
发信站: BBS 未名空间站 (Sun Nov 2 15:27:43 2008)
It is required that
"Please do not connect your Level ONE WLAN 11g USB Adapter to
the USB port of your computer before installing the 11g WLAN utility and
driver."
What should I do if I have connected the adapter before driver installation?
The problem now is there is no network connection unless I log on as
administrator. |
|
i**p 发帖数: 902 | 26 【 以下文字转载自 Hardware 讨论区 】
发信人: isup (No), 信区: Hardware
标 题: 11b/g Wireless USB adapter
发信站: BBS 未名空间站 (Sun Sep 7 12:49:00 2008)
重装随盒来的驱动软件后, 无线网只能在用户注册后才能用. 而以前是系统正常启动后
网络就自动启动了. 似乎是驱动软件只有在用户注册后才被启动, 怎么能改这个设置?
Win2K system. |
|
i**p 发帖数: 902 | 27 【 以下文字转载自 Security 讨论区 】
发信人: isup (No), 信区: Security
标 题: 木马流氓软件
发信站: BBS 未名空间站 (Fri Dec 5 00:35:27 2008)
How to remove it? |
|
i**p 发帖数: 902 | 28 【 以下文字转载自 Windows 讨论区 】
发信人: isup (No), 信区: Windows
标 题: Windows explorer crashes
发信站: BBS 未名空间站 (Wed Dec 31 00:44:22 2008)
Windows exploere always crashes when I use it to access some folders in hard
disk. It can access the same folders in 8G flash drive. So I copied the
foloders back to hard disk and use explorer to access the copied folders. It
crashes again. Here is the error message.
"Windows Explorer has encountered a problem and needs to close"
After this I have to log off/in by Task Man |
|
i**p 发帖数: 902 | 29 【 以下文字转载自 Windows 讨论区 】
发信人: isup (No), 信区: Windows
标 题: How to remove directory De6.0?????
发信站: BBS 未名空间站 (Thu Jan 1 14:35:18 2009)
There is one directory in RECYCLER/S-1-5-21-682003330-1060284298-839522115-
1001.
It does not show by Windows Explorer even setting to show hiden/system file.
It can be shown by DOS dir command. The shown name is De6.0?????. Tried
command
rd /s De6.0?????
rd /s "De6.0?????"
rd /s De*
but always got error message:
"The filename, directory name, or volume label syn |
|
i**p 发帖数: 902 | 30 【 以下文字转载自 Software 讨论区 】
发信人: isup (No), 信区: Software
标 题: Create PDF file from Web site by Arcobat 8 professional
发信站: BBS 未名空间站 (Sun May 4 02:19:32 2008)
However, the GIF images are not generated into the PDF file. I can not find
any setting controlling it. What is wrong? Thanks tfor your answer. |
|
i**p 发帖数: 902 | 31 【 以下文字转载自 Linux 讨论区 】
发信人: isup (No), 信区: Linux
标 题: find command
发信站: BBS 未名空间站 (Thu Feb 28 00:17:41 2008)
怎样一次删除一个用户创建的所有文件? |
|
i**p 发帖数: 902 | 32 【 以下文字转载自 Linux 讨论区 】
发信人: isup (No), 信区: Linux
标 题: Free Linux/Unix account
发信站: BBS 未名空间站 (Sun Jul 20 19:21:55 2008)
Can not SSH to http://unix-center.net/ for 2 days. Are these systems down?
Is there any the-like site which provides the free account? |
|
c*******e 发帖数: 5818 | 33 I did not name it SP5, but when you run "regedit", you could see that patch
under the SP5 fold in updates. By the way, didn't you ckeck it for sure after
you install the patch.
不
其
2000不 |
|
i**p 发帖数: 902 | 34 【 以下文字转载自 Software 讨论区 】
发信人: isup (No), 信区: Software
标 题: Remote Console
发信站: BBS 未名空间站 (Tue Oct 31 00:25:26 2006)
当Winodos 运行后,可以用remote desktop connection 或 VNC 远程操控计算机。我
的问题是在计算机启动时,怎么将BIOS的输出送到Remote Console。这样的话这台计算
机就真正不需要显示器了。有的BIOS能将输出送到串口,似乎简单一些,若BIOS不支持
的话怎么解决?一旦WINDOWS loader开始执行的话,怎样控制显卡的输出到串口呢? |
|
i**p 发帖数: 902 | 35 【 以下文字转载自 Software 讨论区 】
发信人: isup (No), 信区: Software
标 题: RAR file
发信站: BBS 未名空间站 (Sun Nov 19 13:45:53 2006)
下载了一个软件,rar格式。下载后显示文件size 38M.但是文件解压后只有两个2k的小
文件。那位打侠给解释一下? |
|
i**p 发帖数: 902 | 36 【 以下文字转载自 Hardware 讨论区 】
发信人: isup (No), 信区: Hardware
标 题: Wireless 802.11 USB adapter
发信站: BBS 未名空间站 (Wed Dec 13 02:05:02 2006)
Installed driver and plug the adapter. However there is no network
connection after system power on until logging into system as administrator.
No this problem if system is re-start.
Any suggestion? |
|
i**p 发帖数: 902 | 37 【 以下文字转载自 Software 讨论区 】
发信人: isup (No), 信区: Software
标 题: pdf diff
发信站: BBS 未名空间站 (Fri Jun 20 16:16:42 2008)
tried several PDF diff software. All of them do not compare the comments,
highlights added by readers. Could you recommend one which can do it?
thanks! |
|
i**p 发帖数: 902 | 38 【 以下文字转载自 Software 讨论区 】
发信人: isup (No), 信区: Software
标 题: Convert CHM to PDF
发信站: BBS 未名空间站 (Wed Jul 9 00:05:38 2008)
Is there any free software which converts CHM (Microsoft help file) to PDF?
Requirements:
1. Free
2. Keep all the links and bookmarks to the converted PDF file
3. The PDF file is not generated by "print" |
|
i**p 发帖数: 902 | 39 【 以下文字转载自 Hardware 讨论区 】
发信人: isup (No), 信区: Hardware
标 题: Driver for Wireless 11G USB adapter
发信站: BBS 未名空间站 (Sun Nov 2 15:27:43 2008)
It is required that
"Please do not connect your Level ONE WLAN 11g USB Adapter to
the USB port of your computer before installing the 11g WLAN utility and
driver."
What should I do if I have connected the adapter before driver installation?
The problem now is there is no network connection unless I log on as
administrator. |
|
i**p 发帖数: 902 | 40 【 以下文字转载自 Hardware 讨论区 】
发信人: isup (No), 信区: Hardware
标 题: 11b/g Wireless USB adapter
发信站: BBS 未名空间站 (Sun Sep 7 12:49:00 2008)
重装随盒来的驱动软件后, 无线网只能在用户注册后才能用. 而以前是系统正常启动后
网络就自动启动了. 似乎是驱动软件只有在用户注册后才被启动, 怎么能改这个设置?
Win2K system. |
|
i**p 发帖数: 902 | 41 【 以下文字转载自 Software 讨论区 】
发信人: isup (No), 信区: Software
标 题: How to kill "smart antivirus 2009" virus?
发信站: BBS 未名空间站 (Fri Dec 5 00:30:37 2008)
Google-ed, but not find any tool to remove it.
I have an official version McaFee. It does not work either. |
|
i**p 发帖数: 902 | 42 【 以下文字转载自 Security 讨论区 】
发信人: isup (No), 信区: Security
标 题: 木马流氓软件
发信站: BBS 未名空间站 (Fri Dec 5 00:35:27 2008)
How to remove it? |
|
i**p 发帖数: 902 | 43 【 以下文字转载自 shopping 讨论区 】
发信人: isup (No), 信区: shopping
标 题: Missing 40G in the new laptop
发信站: BBS 未名空间站 (Sat Nov 12 00:44:10 2011, 美东)
The Spec says 320G hard disk. However, the system shows 280G in C drive only
. Where is the other 40G?
I prefer to have 2 partitions on the disk. One is for programs and another
is for data. How can I make the change in the pre-installed new laptop? |
|
a*****m 发帖数: 431 | 44 硬件标的320GB是320,000,000,000B
而操作系统是按2进制算的,实为
320,000,000,000/(1024 * 1024 * 1024) = 298.023GiB
另外,windows安装时有个隐藏分区,我的是1.2G——这个不要删。
不要分什么data volume了。都扔到libarary里吧。你能预计你需要多少容量来放数据
吗?保不定还得调整分区大小。【 在 isup (No) 的大作中提到: 】
only |
|
i**p 发帖数: 902 | 45 【 以下文字转载自 shopping 讨论区 】
发信人: isup (No), 信区: shopping
标 题: No system/recover CD with the new laptop
发信站: BBS 未名空间站 (Sat Nov 12 00:54:34 2011, 美东)
There is neither system nor recover CD with the new purchased Acer Aspire.
What could we do if the system is crashed? |
|
a*****m 发帖数: 431 | 46 重要数据用dropbox,everbox之类的备份。
或者另用一个移动硬盘定期备份。
除了备份,没有更好的办法。
对于系统崩溃,而不是硬盘损坏,那很简单。用系统盘重装win7时,不要选格式化,安
装前会自动将该分区的所有内容都放在C:\windows.old文件夹下。【 在 isup (No) 的
大作中提到: 】 |
|
i**p 发帖数: 902 | 47 【 以下文字转载自 Software 讨论区 】
发信人: isup (No), 信区: Software
标 题: TAU and ROSE
发信站: BBS 未名空间站 (Sat Nov 11 02:04:47 2006)
Anybody knows Telelogic Tau and/or Rational Rose? I want to pay some time to
one of them. Could give some your suggestion? |
|
i**p 发帖数: 902 | 48 【 以下文字转载自 Programming 讨论区 】
发信人: isup (No), 信区: Programming
标 题: UML and SDL
发信站: BBS 未名空间站 (Sat Nov 11 11:09:28 2006)
Need to learn one of them. Any comment or suggestion? |
|
i**p 发帖数: 902 | 49 【 以下文字转载自 Biology 讨论区 】
发信人: isup (No), 信区: Biology
标 题: Original TOEFL score form
发信站: BBS 未名空间站 (Fri Mar 7 03:35:45 2008)
My friend lost his original TOEFL score form. It is said the ETS will not
send the another copy to the owner but will send it to any US university.
Could we ask ETS to send it to a university and then pick it from that
university? I doubt the university admission office will allow us to do that.
Have any suggestion? |
|
x***a 发帖数: 409 | 50 【 以下文字转载自 JobHunting 讨论区,原文如下 】
发信人: isup (No), 信区: JobHunting
标 题: Read it: 海外华人:我不想继续呆在国外的原因
发信站: Unknown Space - 未名空间 (Sat Dec 6 14:28:16 2003) WWW-POST
海外华人:我不想继续呆在国外的原因
最近在网上读到两篇文章 - "海龟升官记"和"多伦多中国移民千人排队争饭碗". 以我在
国外生活两年的经验, 感觉基本反映了海外华人的现状.
可以说很多中国人在欧洲都生活在底层, 我认识的一对夫妇, 他们在英国已经十年,都是
博士学位, 现在已经快40岁. 却依然在公司做底层的技术工作. 我给他们打电话, 他们每
次说起回国发展都觉得已经不太可能, 言语中流露着遗憾. 他们在国内没有任何关系, 也
对国内现在的情况十分陌生, 在国外也没有做到管理层. 可以说他们在留在英国的华人中
还算幸运的. 我在这里见到生活惨淡的中国人太多了. 而见到能进入西方主流社会的中国
人几乎没有. 我想有在国外生活的不错的中国人, 那不是有钱人家的孩子, 就是国 |
|