Slashdot Mirror


User: Luna+Argenteus

Luna+Argenteus's activity in the archive.

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

Comments · 13

  1. Re:There were 10 types of ancient societies on Polynesians May Have Invented Binary Math · · Score: 1

    ``Polymorphism'' is not OOP's exclusive characteristic, you know. But I suspect the Polynesian might be behind the development of System F.

  2. So... on How One Programmer Is Coding Faster By Voice Than Keyboard · · Score: 1

    We conjure the spirits of the computer with our spells?

  3. Re:Epic facepalm on Back To 'The Future of Programming' · · Score: 1

    I also bet that you only read the summary.
    http://worrydream.com/dbx/

  4. Re:Python as pseudocode on Harlan: a Language That Simplifies GPU Programming · · Score: 1

    the strange syntax

    S-expression is more like the textual representation of Lisp's abstract syntax tree than syntax. In the past Lisp had something more like a conventional syntax (M-expression) which (if I remember correctly) compiled into s-expression, but somehow people still liked s-expression better.

  5. Re:Indiana, not Indian on Harlan: a Language That Simplifies GPU Programming · · Score: 1

    Your Scheme code uses pattern matching so that's not comparable to the pseudo Scheme stuff, which just uses simple accessor.

    Scheme does provide accessor for record type. Well I would love to have a reader macro and define something more concise like a.x, but too bad reader macro is not standard. The comparable code with that pseudo Scheme code of yours would be something like

    (define (point3-add a b)
      (make-point3
        (+ (point3-x a) (point3-x b))
        (+ (point3-y a) (point3-y b))
        (+ (point3-z a) (point3-z b))))

    I bet those who appreciate s-expression can comprehend this code with just a glance. I find that s-expressions are rather easy to parse by (my) human eyes provided they are properly indented.

  6. Re:Meh on Dr. Dobb's Calls BS On Obsession With Simple Code · · Score: 1

    (lambda(x)
      (let ((fx (lambda(y) expr ...)))
        expr
      ;;put your 10 to 20 loc here
        ...))

  7. ``stack language'' on Node.js and MongoDB Turning JavaScript Into a Full-Stack Language · · Score: 1

    I actually thought ``Forth'' the moment I saw the title.

  8. Re:Dated, old, irrelevant to many except the dieha on Debian 7.0 ("Wheezy") Released · · Score: 3, Insightful

    Good point, but you got it wrong from the very beginning though: it's not ``since it's old it's stable'', it's ``since it's in Debian stable, it's stable''.

  9. Re:FTA on Prof. Stephen Hawking: Great Scientist, Bad Gambler · · Score: 1

    Yeah, and my height would then be 1713099.76 Hz.

  10. Re:Programmer vs. Software Engineer on Ask Slashdot: Developer Or Software Engineer? Can It Influence Your Work? · · Score: 1

    I actually didn't expect people to not consider my post a joke.

  11. Re:Programmer vs. Software Engineer on Ask Slashdot: Developer Or Software Engineer? Can It Influence Your Work? · · Score: 1

    But I don't write tests. I write proof of my software's correctness.

  12. So... on Ballmer Slams Android As Cheap and Overcomplicated · · Score: 1

    Ballmer is not a computer scientist since he should be using WP, and if he is not a computer scientist, why the bloody hell does he have a right to evaluate operating systems?

  13. Re:C/C++ faster but produces more bugs on C++ the Clear Winner In Google's Language Performance Tests · · Score: 1

    Meanwhile in Finland, Linus Torvald is writing one of the very rigorous stuff that is the Linux kernel mainly in C and some critical parts in Assembly.