Since 4/14/2012 7:15:30 PM, NOS has written 7 articles and participated in 436 conversations. NOS signature: NOS
NOS's articles:
Items(7) /1
[9fans] Norwegian kbmap029 (11/9/2004 8:26:57 AM) comp.os.plan9 Based on the finnish kbmap I made a map for Norwegian keyboards; http://utelsystems.dyndns.org/plan9/no-latin1 , should anyone ever need one. ... NOS
VIA rhine NIC029 (11/1/2004 9:55:12 AM) comp.os.plan9 Looking in 9/pc/etherrine.c, it seems plan9 supports via rhine cards? It doesn't recognize mine though. (lspci from Linux says 00:12.0 Ethernet controller: VIA Technologies, Inc. VT6102 [Rhine-II] (rev 74) ) An... iso
case insensitive string::find548 (10/19/2004 10:27:18 AM) comp.lang.c++ Is there some quick C++ way I can do something similar to string::find , but case insensitive ? ... ISO
refrence from return value ?828 (9/29/2004 1:11:13 PM) comp.lang.c++ given a prototye: string foo(); What would be the diffrence in calling it, and assigning the return value in string a = foo(); vs string &a = foo(); (is the last one even legal?) ... ISO
Some GUI tools.022 (9/20/2004 8:41:02 AM) comp.protocols.kerberos Hello, Somebody interrested in doing some testing ? I made some GUI tools for klist and kinit, see http://utelsystems.dyndns.org/code/gktools/ -- Nils O. Selåsdal www.utelsystems.com ________________________... NOS
Plan9 VM026 (7/27/2004 10:38:16 AM) comp.os.plan9 Are there some descriptions on how plan9 manages virtual memory ? (especially in the ia32 case) I find the sources a bit hard to follow. ... iso
Getting the creds for the tgt ticket.020 (2/26/2004 11:26:51 PM) comp.protocols.kerberos Is there an easy way of getting the krb5_creds of the tgt in the credentials cache ? Right now I iterate the ccache (krb5_cc_start_seq_get), look for creds where the TKT_FLG_INITIAL flag is set and the default... NOS
Library search path461 (12/7/2006 11:36:02 PM) comp.unix.programmer Hi, I have compiled a small c++ shared library and a couple of c++ python modules (also shared). The modules is dynamically linked against the first library (the core library). However when I import my modules ... eXt(5)
Host seems down when scanning local ip459 (12/8/2006 12:35:47 PM) comp.unix.programmer I have written a port scanner in C++, It detects open and closed ports perfectly on remote machines but when i scan my own machine with local IP (NOT localhost), it responds with host seems down after taking a ... wasim.khan(13)
2 questions540 (12/18/2006 12:38:35 AM) comp.unix.programmer 1. Does strdup preserve the '\0' when supplying a string literal like "string". I'm asking this because if that's the case, i can easily write a pointer like that out as fwrite(buffer,strlen(buffer),1,fp). S... alef3(61)
Force close of file descriptor from command-line6311 (1/2/2007 3:53:29 PM) comp.unix.programmer Hi all, I've written a program which uses socket() and connect() to send data from a client to server. In a particular version, if connect() fails then close() is not called on the file-descriptor (whoops!) so... rob.desbois(40)
Multiple socket clients749 (1/18/2007 10:54:09 AM) comp.unix.programmer I am writing a simulator that talks to an existing server. This server accepts multiple (12) connections, in the real world from PCs that are transfering messages from hardware devices. If I connect to th... rhsmith52(14)
Few questinos1722 (1/19/2007 5:47:23 AM) comp.lang.c 1) According to this http://prokutfaq.byethost15.com/FindSizeWithoutSizeof size_t size_type = (char*)((type*)0 + 1) - (char*)(type*)0; Does this work for void type ? sizeof(void) is undefined but here we get s... temper3243(16)
Process Context switching342 (1/22/2007 10:50:38 AM) comp.unix.programmer Hi, Suppose a program is something like this: int main(void) { int a ; int b; float f; for(;;) { a +=1; b+=2; f +=2.2; } .... } .. main ends here. Now what I... alice_vas2001(24)