Live data from Hacker News

Viewing profile — yortus

yortus

HN member
Joined
Sat, Sep 03, 2011, 12:52 PM UTC
HN karma
10
Public activity
6 items

About yortus

No profile information was provided.

Recent public activity

  1. comment
    Comment #30414855

    Why not just write it more simply as Str = "a" "aa"* Most languages allow writing tortured and hard to understand logic where simpler alternatives can also be written. I'm not sure…

  2. comment
    Comment #15662015

    Interestingly, a type system was proposed for JavaScript around 2007 as part of ES4, which was later abandoned [1]. The proposed details in [2] are strikingly similar to what we've…

  3. comment
    Comment #12538411

    > it's a performance/complexity nightmare Babel itself demonstrates the truth of this. If you look at the source code for any of Babel's syntax plugins, they are literally only a f…

  4. comment
    Comment #7991129

    Using asyncawait ( https://github.com/yortus/asyncawait ): var bakeCookies = async (function(cookie_mix) { print("Baking cookies..."); var oven = new Oven(cookie_mix); var cookies …

  5. story
  6. story
    Async/await for Node.js – my first OSS contribution. Feedback welcome!

    The project is here: https://github.com/yortus/node-async-await Background: I was looking for a way to write node.js asynchronous code in a synchronous-looking style (ie like C#'s …