Live data from Hacker News

Viewing profile — zebraman

zebraman

HN member
Joined
Tue, Sep 18, 2018, 9:06 AM UTC
HN karma
261
Public activity
17 items

About zebraman

No profile information was provided.

Recent public activity

  1. comment
    Comment #19043992

    Using modern Clojure's clj is so much easier than the CL procedure.

  2. comment
    Comment #18598526

    "This isn’t the case in a language like Java, where access to the outside world is mixed in with other functionality." That's why there is a SecurityManager: https://docs.oracle.co…

  3. story
  4. story
  5. story
  6. comment
    Comment #18289970

    Not sure if it is me, but for a long time I have kept away from anything perl of moderate complexity. Package management used to be atrocious - it would be slow, pull a ton of modu…

  7. comment
    Comment #18289823

    > I hope that some derivative of perl can rise from the ashes, because I'm too stupid to write actual lisp programs, but perl allows me to emulate what I imagine lisp programmers m…

  8. story
  9. story
  10. story
  11. story
  12. story
  13. comment
    Comment #18013826

    Reflection is partially emulated, IIRC.

  14. comment
    Comment #18013821

    What I'm saying is that it breaks when you do a Class.forName(...), while if such class is known to exist at compile time, it is the same as a switch statement on the class name th…

  15. comment
    Comment #18013807

    Personally, I wonder why class-loading is not possible. In the end either a class exists in the closed-world that existed when the project was compiled, or it does not. Of course y…

  16. comment
    Comment #18013765

    We are starting to do that, and for very simple operations, it works (like scripts for maintenance that we deploy remotely, and run as cron jobs). So far no big surprises, but we w…

  17. comment
    Comment #18013656

    For command-line applications, it opens up an interesting space. There was a post on HN a while ago: https://www.astrecipes.net/blog/2018/07/20/cmd-line-apps-wit... though the syst…