Live data from Hacker News

Viewing profile — asonge

asonge

HN member
Joined
Thu, Aug 02, 2012, 7:15 PM UTC
HN karma
20
Public activity
7 items

About asonge

No profile information was provided.

Recent public activity

  1. comment
    Comment #12013313

    Just to be clear, Javascript's arrays will, depending on the implementation, dynamically switch between sparse and compact implementations. A sparse javascript array literally beha…

  2. comment
    Comment #11948424

    There are a bunch of different performance differences, but a couple basic differences: 1) gc is per-process, not global/stop-the-world 2) the VM is responsible for scheduling proc…

  3. comment
    Comment #11948083

    Aside from pretty simple `__using__` macros, most Elixir devs come to appreciate macros and then elect not to use them in the most situations. Most people who do use macros have a …

  4. comment
    Comment #10812520

    I think this is exactly it. If you had a multi-paradigm language, you'd need not only just some way to break the rules easily and have that bubble up, you'd also want this rule-bre…

  5. comment
    Comment #10503074

    Doing some rough math and my limited understanding of linux network internals, it's about 40KB per connection in this benchmark. I know that cowboy is going to require ~4KB or so p…

  6. comment
    Comment #10501733

    As noted above, TCP connection limits are only on a unique 4-tuple of local-ip, local-port, remote-ip, remote-port.

  7. comment
    Comment #9685053

    Minor nitpick to the nitpick, since I dug down in Elixir's compiler before. Elixir spits out a normal Erlang AST, not a Core Erlang AST, which is a bit different. There are a half …