Since 5/5/2012 12:02:04 PM, davidhuebel has written 5 articles and participated in 35 conversations. davidhuebel signature: davidhuebel
davidhuebel's articles:
Items(5) /1
auth_to_local_names215 (2/22/2008 10:23:53 PM) comp.protocols.kerberos I want Kerberos principal user1 to be able to log into user account user2 on a particular host. I specified auth_to_local_names { user1 = user2 } in the krb5.conf file on the host. When I kinit on anothe... grackle
module naming conventions921 (1/14/2008 4:44:24 PM) comp.lang.python Obviously Java-style naming is a mistake in Python, since top-level names have to be unique. Is there a standard naming convention to facilitate mixing code from different sources, such as mygroupname_modulena... grackle
Pathnames (beginner issues)520 (12/16/2006 7:33:47 PM) comp.lang.lisp I just learned not to depend on the #P printed version of pathnames. In the instance that stung me, SBCL on Linux requires that :device must be nil (as far as I can tell) when accessing the filesystem. Specifyi... grackle
Lazy sequence for reading file2542 (11/16/2006 6:18:37 PM) comp.lang.lisp I'm writing yet another flat file parser, and considering how often I do this I would very much like to write: (defun parse-test-case (stream) (map 'vector #'parse-line (read-lines stream))) I can do this... grackle
Forms vs. values in macros927 (11/3/2006 3:33:14 PM) comp.lang.lisp I'm trying to write a macro that creates rt tests for me. Let's pretend I'm testing the accessors of a structure "point" with members x and y. I start out like this: (defstruct point x y) (require 'rt) (rt:r... grackle
auth_to_local_names215 (2/22/2008 10:23:53 PM) comp.protocols.kerberos I want Kerberos principal user1 to be able to log into user account user2 on a particular host. I specified auth_to_local_names { user1 = user2 } in the krb5.conf file on the host. When I kinit on anothe... davidhuebel(40)
module naming conventions921 (1/14/2008 4:44:24 PM) comp.lang.python Obviously Java-style naming is a mistake in Python, since top-level names have to be unique. Is there a standard naming convention to facilitate mixing code from different sources, such as mygroupname_modulena... davidhuebel(40)
Common Lisp from a Unix perspective - barriers to using CL18676 (12/5/2006 1:08:23 AM) comp.lang.lisp As an experienced programmer, I've heard a lot about how good Lisp is, and I like getting to grips with new languages. After conversations with friend who's keen I decided I should learn Common Lisp. I though... ijackson(15)
how early to teach lisp at homeschool1429 (11/25/2006 1:28:02 PM) comp.lang.lisp I am expecting a baby soon, and dream about homeschooling (probably not realistic, but anyways)... I was thinking when I should introduce lisp. The youngest two programmers i know of were at age 8 and 10. I r... naveen.garg(13)
teaching kids functional programming6932 (11/21/2006 9:02:04 PM) comp.lang.lisp One reason functional programming has not become more widespread, is that it is rarely encountered by our children or teens during their learning process. Here is an open question for you all. Do you think tha... dr.mtarver(661)
How do you Avoid Becoming a Smug Lisp Weenie?2250 (11/17/2006 4:06:38 AM) comp.lang.lisp Most everyone who frequents c.l.l knows Lisp is pretty awesome; Common Lisp has a massive and useful spec, some really neato libraries, is way more fun to program in than most other languages, and is just gener... pinterface(6)
Lazy sequence for reading file2542 (11/16/2006 6:18:37 PM) comp.lang.lisp I'm writing yet another flat file parser, and considering how often I do this I would very much like to write: (defun parse-test-case (stream) (map 'vector #'parse-line (read-lines stream))) I can do this... davidhuebel(40)
Lisp and Scheme with fewer parentheses11728 (11/8/2006 12:30:02 AM) comp.lang.lisp Hi, Please keep an open mind whist reading this post. If you're not interested in new syntaxes for Lisp/Scheme, please read no further. defun factorial (n) if (<= n 1) ^ 1 * n f... birchb1(18)