Live data from Hacker News

Viewing profile — jaten

jaten

HN member
Joined
Fri, Jan 15, 2016, 6:29 PM UTC
HN karma
8
Public activity
14 items

About jaten

No profile information was provided.

Recent public activity

  1. comment
    Comment #36518732

    Zygo does have infix available in addition to traditional lisp parentheses. Just put the math (or whatever) inside curly braces. I much prefer math in infix, so I put in a Pratt pa…

  2. comment
    Comment #31984457

    Wow. I have the exact opposite experience with TDD. I use TDD to set a specific goal, and to have the computer tell me almost instantly when I've reached it. Then I can unleash cre…

  3. comment
    Comment #30342149

    Apparently Netflix's CEO designed the processes in his company to avoid just this trap.

  4. comment
    Comment #27990235

    Indeed. Although he would have abhorred their anti-science tactics. And he wrote extensively about the dangers of religious idiocy.

  5. comment
    Comment #22240167

    just use an off heap hash table. simple. https://github.com/glycerine/offheap Also, as others have said, lots of big GC improvements were ignored by insisting on go1.9.2 and not th…

  6. comment
    Comment #20743704

    Google uses a subset of python called Starlark for build configuring (available in Go and I think Java). Nice if you want to be able to compute things during config. https://github…

  7. comment
    Comment #20734624

    S-expressions rule. I use them for configuration everywhere. I wrote a lovely library for parsing them in Go (along with a full lisp interpreter if you like) https://github.com/gly…

  8. story
  9. comment
    Comment #16571416

    Lua is fantastic for implementing languages. I did an implementation of Golang in it ( https://github.com/gijit/gi ). With metatables one can implement any kind of object/inheritan…

  10. story
  11. story
  12. comment
    Comment #13184458

    The infix is optional, but I do find it nice for interaction.

  13. comment
    Comment #13184408

    Thank you. I tend to do interactive mathy things, and find the infix being the default at the repl cuts down on keystrokes and speeds up the interaction. Anything within {} curly b…

  14. story