Since 4/2/2012 5:42:01 AM, sketerpot has written 4 articles and participated in 93 conversations. sketerpot signature: sketerpot
sketerpot's articles:
Items(4) /1
Will a memory location be written to within a section of code?354 (3/25/2010 11:12:16 PM) comp.compilers I'm working on hardware transactional memory: have start-transaction and end-transaction instructions, and anything between those instructions is supposed to either happen atomically or not at all, as far as ot... Peter
Common Lisp Utilities1434 (12/14/2005 10:05:34 PM) comp.lang.lisp Several years ago, there was some talk about a semi-standard collection of Common Lisp Utilities that everyone writes because they're useful but not in the standard, like with-gensyms (or with-unique-names) and... Peter
Iterating over general sequences1630 (5/12/2005 5:41:10 PM) comp.lang.lisp How would I iterate over any sequence, regardless of whether it's a list or a vector? MAPC (et al) only work on lists, LOOP has seperate syntaxes for vectors and lists, DOLIST only works on lists, and I don't l... Peter
Getting MOP information about EQL specializers225 (2/3/2005 10:45:29 PM) comp.lang.lisp I'm working on an inspector, and I'd like to be able to go from an EQL specializer object to (eql 'something). That is, given the output from (mop:intern-eql-specializer 'foo), I would like to be able to prese... Peter
Where does the drive to syntax come from?8126 (9/6/2005 10:39:48 PM) comp.lang.lisp In my travels among the LispNots I constantly run into people--even new programmers--who *want* elaborate syntax. (I.e. more elaborate than parens and prefix notation.) One part of me thinks that maybe this is ... peter14(674)
What's more idiomatic?2933 (10/20/2005 7:23:26 AM) comp.lang.lisp Performance issues aside, which one of these expressions is more idiomatic in Common Lisp? (mapcar #'foo (mapcar #'bar list)) (mapcar #'(lambda (i) (foo (bar i))) list) Ari. -- Elections only count as free... ari(61)
computer programming233 (11/2/2005 3:22:37 PM) comp.lang.lisp hello all! if u dont mind, please visit and register in my site www.javaholics.tk for java programming discussions all other programming languages and discussions are welcome! its a gr8 site and a growing comm... server.prime(18)
Common Lisp Utilities1434 (12/14/2005 10:05:34 PM) comp.lang.lisp Several years ago, there was some talk about a semi-standard collection of Common Lisp Utilities that everyone writes because they're useful but not in the standard, like with-gensyms (or with-unique-names) and... sketerpot(97)
TISL (an ISLisp implementation) source code357 (12/26/2005 11:34:14 PM) comp.lang.lisp Hey everyone, happy [various religious occurences]... I'm trying to track down a copy of the TISL source by Nobuto Izumi and Takayasu Ito. It's GPLed, but it seems to have disappeared off the face of the Inte... heath.johns(2)
Python and Lisp Test8628 (12/28/2005 4:10:24 AM) comp.lang.lisp This is not a scientific test of any kind and I'm not an expert on either Python or Lisp. Having said that, I was interested in getting an idea about the relative performance of each language when computing th... johnm1(14)
How can I convert a string into a quote-value?442 (2/12/2006 10:54:47 PM) comp.lang.lisp I have a function called with a database column name and a value. CLSQL expects the column name to be either a quote-value or a colon-value. Since I don't know how many columns I will have in each of these ta... j_mckitrick(424)
Checksum (noob)523 (12/27/2006 10:13:01 PM) comp.lang.lisp After a 10 year hiatus, I've begun experimenting with Lisp again. Among other things, I've written a typical 8-bit modulo arithmetic checksum routine, which would look like this in C++: std::accumulate(lst.beg... atgraham(40)
It's growing on me530 (3/3/2007 9:07:15 PM) comp.lang.lisp I switched from XP to Ubuntu today, and one thing I missed was a password manager. I thought, for the hell of it, that I'd try to write my own one in Lisp; even though I'm a Lisp n00b (although I have been t... me4(18696)