Authentication of lisp systems346 (8/28/2006 9:07:15 PM) comp.lang.lisp Hello all I'm currently attempting a simple application (running from inetd) in lisp. The question of authenticating users arises. I'm curious as to how the lisp machines used to handle multiple users. For ex... goose
relativity of programming languages1930 (8/28/2006 8:47:20 PM) comp.lang.lisp First: Don't regard this as a troll! Second: What do others think of these weightings? http://awaretek.com/ProgramLanguageFinal.py goose, ... goose
2 questions: haskell book, haskell forums?544 (7/7/2006 11:14:19 AM) comp.lang.functional Hello all I am currently trying to learn the basics of Haskell, and this is my first posting to this group. I have two questions: 1. Is there a forum especially for haskell? comp.lang.haskell does not exi... ruse
memory usage in cmucl1126 (6/22/2006 11:35:33 PM) comp.lang.lisp Hello all The code below implements a simple protocol (receive). The protocol expects frames to be preceded by the length + newline. When running under cmucl, I get the following messages (repeatedly with the... goose
writing an interpreter625 (5/29/2006 3:13:00 PM) comp.lang.lisp Hello all I want to write an interpreter (sort of) in lisp for a TeX-like language. I'm not sure yet how what I will do with the output (either store it in a list, or display it as the data is parsed); I simpl... goose
uffi frustrations723 (5/24/2006 2:50:55 PM) comp.lang.lisp Hello all (again:-) I've gotten the asdf.lisp file thanks to the posters here, and as far as I can tell, it works the way it is supposed to. The next problem is uffi (or rather, the lack of it). I'm trying t... goose
ASDF help #2735 (5/23/2006 1:44:30 PM) comp.lang.lisp Hello all I'd like some help about asdf, specifically, where can I find it as the only download page for it as returned by google is down (sourceforge). I am shocked that the are no mirrors, is there no one ... goose
ASDF help1825 (5/23/2006 1:44:12 PM) comp.lang.lisp Hello all I'd like some help about asdf, specifically, where can I find it as the only download page for it as returned by google is down (sourceforge). I am shocked that the are no mirrors, is there no one ... goose
newbies lisp gui042 (5/7/2006 9:16:36 PM) comp.lang.lisp Hello all I posted here some time back about a lisp pet project of mine that I wanted to give away to another maintainer. The project is simply to use tk form within clisp (using wish). I've finally hosted it... goose
Writing classes to files and reading them back in329 (9/26/2005 7:25:00 AM) comp.lang.lisp Hello once again everyone. I'd like to write my objects to a file and read them back in later. They need not be portable between different implementations. example: (defvar *id-set* 0) (defclass unique () ... goose
OUTFILE - like creating a log?728 (12/11/2006 4:34:16 PM) comp.lang.c All: I'm trying to create a log file. I now I can be able to do that by doing the following: FILE *outfile; outfile = fopen("log.txt", "w"); fprintf("This is the text"); Now questions is, I have ... rhitz1218(8)
malloc #84028 (12/12/2006 4:57:09 AM) comp.lang.c Hi, what happens when i run the below code? main() { int *p; while(1) p= (int *)malloc(1000); } Do i get... ramu.ask(96)
xml file parsing in C2424 (12/12/2006 9:07:14 PM) comp.lang.c hi, is it possible to parse an XML file in C so that i can fulfill these requirements : 1) replace all "" signs inside the body of tag by a space, e.g. : Example 1: blabla becomes blabla bla Example 2... no18(4421)
IP Spoofing645 (12/14/2006 12:36:22 PM) comp.programming We change the source ip Address when sending our packet, but what i don't understand is how one can recieve the reply since the source ip address is not of his machine so will the packet not directed to spoofed... wasim.khan(13)
Question about memory allocation??1540 (12/14/2006 1:02:10 PM) comp.lang.c Hi everybody, While running the following program in GCC, i'm very much screwed. main() { char *ptr1; char arr[1]; int i; char *ptr2; ptr1 = (char *)malloc(1); ptr2 = (char *)mallo... sethukr(34)
C garbage collection -crazy idea #22831 (12/15/2006 10:56:41 AM) comp.lang.c This idea might be vey crazy. But I hope to get answers to this .. from comp.lang.c If a compiler is designed such that it automatically adds a free() matching every malloc() then is it not a garbage collectio... onkar.n.m(70)
Additional resources to understand C better.830 (12/16/2006 4:26:18 AM) comp.lang.c Hi, I apologise if this is not the forum for my question. I am a starter in C and I have come to a point where I can not figure out if knowledge of assembly language is really essential for an in depth unde... Indian.croesus(7)
C-related Christmas presents1025 (12/16/2006 9:18:52 AM) comp.lang.c Anyone think of a C-related Christmas present for Santa to bring to a programmer, grown up but still putting out his stocking? -- www.personal.leeds.ac.uk/~bgy1mm freeware games to download. ... regniztar(3128)
Dynamic C to C Data Transfer3637 (12/16/2006 1:47:40 PM) comp.lang.c I need my data generating C program on computer #1 to export small amounts of data (one - 40 byte data structure) periodically (once per minute) to a C program on computer #2. I am considering having computer ... Thomas-911(55)
Unit Testing With Function Mocking1024 (3/16/2007 10:09:48 PM) comp.lang.c Hi, Currently, I'm using CUnit as a unit test tool. But there is one thing it really lacks: function mocking. In other words, changing what really gets called in subordinate routines so that a function being... namesagame-usenet(71)