Since 4/2/2012 5:32:50 AM, thesagerat has written 6 articles and participated in 60 conversations. thesagerat signature: thesagerat
thesagerat's articles:
Items(6) /1
Is there a group or BBS for software licenses questions?236 (11/26/2005 3:10:48 AM) comp.programming I would like to attach a license of some sort to various apps and algorithms I create in my free time, so I can post them to my homepage. I would like to make the code "free to use so long as you're not making ... Chris
Proxy Server Authentication Back and Forth?041 (9/20/2005 7:18:03 AM) comp.programming I'm fixing a client app running on an embedded device to be able to access the internet through a proxy server. For an open proxy server it appears that I just tack on "Proxy-Connection: Keep-Alive\r\n" to the ... Chris
Book for Understanding the Minutia?333 (5/1/2005 8:41:00 AM) comp.arch.embedded Recently, I was trying to get u-boot to connect to our NAND chip, copying the init and reader code directly from the board maker's diagnosis app. No connection. After various tinkering about, I came to try and... Chris
Generic Assembler?359 (2/28/2005 5:50:51 AM) comp.compilers I have started work (i.e. research and structure-creating algorithms) on a compiler that is intended to work solely as a scripted preprocessor--preprocessing the source code in levels based on symbological and ... Chris
Link List Feedback832 (2/24/2005 6:09:37 AM) comp.programming I recently had the opportunity to peruse C.B. Falconer's Hashlib code (http://cbfalconer.home.att.net/download/hashlib.zip Thank you very much) and decided subsequently to post my linked list handler for commen... Chris
Fingerprint -> Digest size?332 (2/9/2005 8:42:57 AM) comp.programming When a fingerprint is stored on a card (or such) I am assuming that a message digest of key points is stored rather than a bitmap image of the full print. Does anyone know how many bits such a digest has to be ... Chris
Required stack size1325 (2/28/2005 12:01:11 PM) comp.lang.c Hi all, I would like to know how much stack memory is used when program is running. Can this be achived in some portable way? At least I would like to know this on Linux. I already managed to get this with the... mkovac(1)
monitoring the heap333 (2/28/2005 6:29:18 PM) comp.lang.c Hallo Does anyone knows a program that monitors the heap?? I want to test the fragmentation of mallocs and therefor I must know the memory usage of all times. thx ... onsbomma(23)
C program - Decision Question - IF then ?740 (2/28/2005 9:47:42 PM) comp.programming Hello. I am a newbie. This seems like a simple question. I want to read in a file of values, say IP addresses. I would like to check each value (IP) with a list of 20 known good values (IPs). What is the be... vinnieb(3)
Bitwise operation for division723 (3/2/2005 3:16:49 AM) comp.lang.c I want an algorithm that do arithmetic operations(divide,mutiply,add etc.)just using bitwise operators:>,&,|,^; For example,how "a/10" can be implemented. I just want a hint. Thanks. ... zinany(6)
Variation of bit-counting8431 (3/2/2005 6:52:17 AM) comp.programming Hi there, I have an unsigned 32-bit number of the form 111..10...000, i.e. a number of ones and the rest zeros. I would like to count the number of ones. The usual bit-counting tricks can be used, but are the... ccc59035(39)
Undefined behaviour? Accessing s twice in a statement.333 (3/5/2005 5:02:23 AM) comp.lang.c Hello, Wonder if the below double access to s is undefined behaviour? Works fine, but I know "works" can still be a consequence of undefined behaviour. #include void mystrcat(char *s, const char *t) { /... kobu.selva(53)
Book for Understanding the Minutia?333 (5/1/2005 8:41:00 AM) comp.arch.embedded Recently, I was trying to get u-boot to connect to our NAND chip, copying the init and reader code directly from the board maker's diagnosis app. No connection. After various tinkering about, I came to try and... thesagerat(66)
linker creating232 (9/19/2005 8:47:39 AM) comp.programming Hello. I learn creating of linkers.Let's create linker,of any language. Or create new programming language. For first time,i want to create linker,then kompilator. ... djambylat(5)
detecting integer overflow2525 (12/5/2005 7:41:03 AM) comp.lang.c Is there any way by which the overflow during addition of two integers may be detected ? eg. suppose we have three unsigned integers, a ,b, c. we are doing a check like if ((a +b) > c) do something; else ... junky_fellow(377)