Live data from Hacker News

Viewing profile — basketcasing

basketcasing

HN member
Joined
Fri, Feb 12, 2016, 2:38 PM UTC
HN karma
9
Public activity
5 items

About basketcasing

No profile information was provided.

Recent public activity

  1. comment
    Comment #11105838

    Re. join, I think Perl got that one right: `join(glue, pieces)`. `','.join(pieces)` just seems unnecessarily weird, and present simply for OO's sake. Not everything needs to be som…

  2. comment
    Comment #11101803

    Python is the least-worst general purpose imperative not-performance-critical OO scripting language. It has lots of problems (weird scoping, community issues, roundabout docs, `''.…

  3. comment
    Comment #11091044

    > > > Traditional hash tables are imperative data structures, and Lisp code (or Scheme code, at least) typically does not use them because of this. Association lists, which can be …

  4. comment
    Comment #11089499

    > Traditional hash tables are imperative data structures, and Lisp code (or Scheme code, at least) typically does not use them because of this. I don't understand that. > Associati…

  5. comment
    Comment #11087454

    The one thing that keeps me away from Lisp/Scheme is the lack of built-in syntax for hashmaps and sets (I like Clojure's syntax, but don't want the JVM). I've never gotten the hang…