Live data from Hacker News

Viewing profile — srijs

srijs

HN member
Joined
Mon, Mar 25, 2013, 3:34 PM UTC
HN karma
77
Public activity
19 items

About srijs

No profile information was provided.

Recent public activity

  1. comment
    Comment #33266367

    1x RCU gives you 1 strongly consistent read of up to 4KB _per second_. So 8000 reads per second require 8000 RCUs, which at list pricing comes to $1 per hour. And that's assuming r…

  2. comment
    Comment #10371898

    Author here. Slightly simplifying, a Kleisli arrow is just a function from `A` to `M `, and which is composable, similar to function composition: Kleisli + Kleisli = Kleisli Althou…

  3. comment
    Comment #10282266

    There is also NDJSON (aka Newline-delimited JSON): http://ndjson.org/ (disclosure: I'm the author of the Haskell ndjson-conduit library)

  4. comment
    Comment #7329044

    From the official update: $ shasum -a 256 atom-mac.zip 4614ec62feaea32392ad7f6b3a80534c8ad0c758ed210cabafcc86c5c49a49a1 atom-mac.zip $ md5sum atom-mac.zip 5454bd3a8271c93f5225cd2b5…

  5. story
  6. story
  7. story
  8. comment
    Comment #6556069

    Very happy about your input! :) I think you got a very good point there regarding the impedance mismatch between native and js apis. Really enjoying the uvbook, this got me sold on…

  9. comment
    Comment #6551976

    Thanks a bunch for your feedback :) My initial plan was to provide the node features using Foundation.framework features only. Now, this could turn out to be more boilerplate code …

  10. comment
    Comment #6548294

    I did some evaluation a while ago about bundling a Javascript engine with mobile apps on iOS and concluded JSC was way easier to compile and integrate. This is in fact what e.g. Ap…

  11. comment
    Comment #6547732

    Thanks :)

  12. comment
    Comment #6546791

    JavaScriptCore is a cross-platform javascript engine on it's own that is used by default in WebKit browsers (Safari, Mobile Safari, Konqueror, etc.). The new thing on iOS 7 is that…

  13. comment
    Comment #6546610

    This is very rough and no IO is supported yet. However, I think it serves well as a proof-of-concept that a lightweight node-compatible interface can be done for mobile apps using …

  14. story
  15. story
  16. comment
    Comment #5441977

    Typed arrays do deliver a lot of speedup, and in fact, the above example is slightly faster in Chrome than in Firefox Nightly for me. However, if your algorithm does crunch a lot o…

  17. comment
    Comment #5440448

    Thank you. I just updated my code and it's really within half of native speed now... (benchmarks in the README, if any of you are interested) asm.js is very exciting technology!

  18. comment
    Comment #5439558

    Cool. I recently wrote a low-level sha1 implementation in pure javascript, trying to leverage asm.js ( http://github.com/srijs/rusha ). Can you tell me, how did you confirm you wro…

  19. story