Live data from Hacker News

Viewing profile — dparoski

dparoski

HN member
Joined
Fri, Nov 30, 2012, 9:40 AM UTC
HN karma
13
Public activity
9 items

About dparoski

No profile information was provided.

Recent public activity

  1. comment
    Comment #8117841

    Hmm, IMHO it feels like you're bending the definition of "lifetime" a bit in a manner that already presumes RC-based automatic memory management, and once one accepts that assumpti…

  2. comment
    Comment #8116889

    First, I want to thank you, Paul, for writing this critique. It's great to read well thought-out feedback about the draft spec that was announced yesterday. Before getting into tec…

  3. comment
    Comment #7701808

    To my knowledge a JIT compiler is not being added to PHP 5.7. Can you clarify your comment or provide a link to the source where you heard this?

  4. comment
    Comment #7448078

    Edit: My previous comment was referring to the second occurrence of "return" in your example (after the "==>" arrow). Just noticed I mistakenly dropped the first occurrence of "ret…

  5. comment
    Comment #7445487

    The "return" keyword is not needed if the right hand side of the lambda arrow ("==>") is an expression that is not wrapped in curly braces. If the right hand side _is_ wrapped in c…

  6. comment
    Comment #7439349

    Engineer working on Hack here. Historically XHP was developed before Hack. It's available as an add-on for PHP but never became a formal part of the PHP language. When Hack was bei…

  7. comment
    Comment #7437810

    Engineer working on Hack here. Hack runs on the HHVM engine. HHVM is fairly stable and is used by Facebook to serve over a billion web requests per today. In the past year or so de…

  8. comment
    Comment #7437583

    Engineer working on Hack here. You can actually write you example a bit more concisely in Hack: "$y ==> $y + 1".

  9. comment
    Comment #4852709

    As noted elsewhere in this thread, a stack-based design typically produces more compact bytecode. Compactness was a concern for us because of the size of FB's PHP code base. Also, …