Slashdot Mirror


User: Ehud

Ehud's activity in the archive.

Stories
0
Comments
10
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 10

  1. Re:Java is really, really slow on Linux Number Crunching: Languages and Tools · · Score: 1

    Also, if your heap isn't fragmented, you can make heap allocation nearly as fast as stack allocation.

  2. Re:Good point... on What Makes a Powerful Programming Language? · · Score: 1

    You should check out some texts the old Symbolics hardware (google is your friend), which had hardware-support for Lispy stuff.

    I would also like to note that recursion is just one way to do stuff in CL. I, for one, do not use recursion for iterating over lists, since I don't really think it is natural to use recursion for anything but recursive datastructures. Also, the list (as you probably know, but some don't) is not the only datastructure being used in Lisp. CL comes with (multi-dimensional) arrays, hash tables, mutable strings, etc.

    There is also tail recursion. (That is, some forms of recursion may be translated to iterative constructs by the compiler. This is more common in Scheme, but also done to some degree in CL-compilers.)

  3. Re:Let me offer a proverb... on What Makes a Powerful Programming Language? · · Score: 1

    I just wanted to point out that while Lisp is just fine for AI, it is a general-purpose language, not a
    special-purpose AI-language. You can use it for all kinds of programming. (Ok, so C and Assembler is most practical for systems- and OS-programming. At least on current architectures.)

  4. Re:Just one more thing to factor in: on What Makes a Powerful Programming Language? · · Score: 1

    We heard you the ten first fucking times. Just shut up and don't use Lisp if it hurts you so much. Go with the fucking flow, or whatever.

  5. Re:so... on GNU Emacs 21 · · Score: 1

    Of course it does! It has had the ability for quite some time, actually. Check out:

    http://www.chez.com/emarsden/downloads/coffee.el

  6. Re:Educational vs. production languages on Ask Kent M. Pitman About Lisp, Scheme And More · · Score: 1

    Franz has a few listed on their webpage: here.

    By the way: Apparently lots of people use Lisp (Common Lisp), but don't tell, because they consider it a competitive advantage, and would rather not that their competitors have the same advantage.

  7. Re:LISP on Windows on Ask Kent M. Pitman About Lisp, Scheme And More · · Score: 1

    CLISP is alright. It doesn't compile to native code, but it's still very fast. It's at clisp.sourceforge.net, I think.

  8. Re:Exactly! on Every BBS That Ever Was · · Score: 1

    Isn't FIX that Norwegian gay BBS?

    (Not that there's anything wrong with that.)

  9. Re:Two weeks ago on The 2.4.x Kernel, ECN And Problem Websites · · Score: 1

    Perhaps you should know not to enable ECN if you don't know what it is and what the consequences are.

    ("This looks l33t, I think I'll just enable it. I bet it'll make everything super-fast!")

  10. Re:Just maybe on When Your Hardware Isn't Obsolete Soon Enough · · Score: 1

    My buildworld (FreeBSD) is down to about forty minutes now. I'll be happy when it's done in five minutes.