Live data from Hacker News

Viewing profile — axle_512

axle_512

HN member
Joined
Mon, Sep 30, 2013, 4:11 PM UTC
HN karma
16
Public activity
13 items

About axle_512

No profile information was provided.

Recent public activity

  1. comment
    Comment #18428888

    You don’t see them in the same sense you don’t see multiple closing braces in java or c. The style in lisp is to keep all the closing paren on the same line: )))) But in java or C …

  2. comment
    Comment #17532663

    Fair enough, I see your point. Though stylistically my personal preference is for the macro to remain as simple as possible with limited syntax introduced.

  3. comment
    Comment #17530689

    Note I said "or looks like one". If you squint a bit, macros and built-ins are similar in structure to functions (they're all s expressions). I agree with much of what you said, bu…

  4. comment
    Comment #17528492

    In lisp, nearly everything is written in the same form. I.e. everything either is a function call or looks like one. Once you know that, you pretty much know lisp syntax. People fr…

  5. comment
    Comment #13337883

    JetBrains based editors are quite nice if you can afford it. Free for students and open-source developers. PyCharm for python, IntelliJ for java, Cursive for clojure

  6. comment
    Comment #13056262

    Another java library with persistent/immutable datastructures is javaslang.

  7. comment
    Comment #9921673

    From my experience several years ago: Distributing binaries for Linux was complex. libstdc++ compatibility across distros or different versions within a single distro wasn't great.…

  8. comment
    Comment #9827282

    Many have already said it, but Clojure seems to be gaining in popularity.

  9. comment
    Comment #7703883

    I used to have an issue with lisp syntax until someone pointed it out to me like this. In c and java like languages, you invoke a function like this: f(x) In lisp, just move the pa…

  10. comment
    Comment #7166518

    Forgot to source my info on the "om" library. http://www.infoq.com/news/2014/01/om-react

  11. comment
    Comment #7166512

    On the surface, you wouldn't think immutable data structures would offer any significant performance gains. But there are a lot of cool techniques and unforeseen consequences that …

  12. comment
    Comment #6472629

    nice, thanks!

  13. comment
    Comment #6470454

    It is a little clearer to me how this works with things like primitives, but how do you annotate a function that takes a map as input and returns a list? (defn my-keys [m] (keys m)…