Live data from Hacker News

Viewing profile — sandrot

sandrot

HN member
Joined
Sat, May 29, 2010, 3:07 AM UTC
HN karma
7
Public activity
22 items

About sandrot

5818d7

Recent public activity

  1. comment
  2. story
  3. comment
    Comment #36611070

    https://turriate.com

  4. comment
    Comment #27481401

    Very cool!

  5. comment
    Comment #27168939

    thank you. I had to change my idle connection timeouts. Eeep!

  6. comment
    Comment #27168926

    You're right, thank you for the explanation. My REPL runs the code in the textarea in an anonymous Async function, which is why top level async works in my examples.

  7. comment
    Comment #27168749

    Try using Array.from(arrayish).forEach() to convert the thing that looks like an array to an actual array. For instance, you can't use map() on a NodeList (document.querySelectorAl…

  8. comment
    Comment #27168621

    Thank you, Mark! Super long time.

  9. story
  10. comment
    Comment #26023248

    Hi all, I’m working on an app to help find and delete duplicate or near duplicate photos. I’m building it for my dad to help him consolidate all of the redundant family photos he c…

  11. comment
    Comment #25704364

    - My first Godot game, which isn‘t downloadable yet but lots of fun to work on. https://sandrot.itch.io/starboard - Sound Bath iOS app for ambient relaxing sounds. https://apps.app…

  12. story
  13. comment
    Comment #17266694

    Mataya, thanks for mentioning M1. I haven't heard of it before. What's your referral code?

  14. comment
    Comment #13891415

    just going to leave this here: http://stopwritingramblingcommitmessages.com

  15. comment
    Comment #1566971

    I wouldn't be surprised if the code was making mistakes - it hasn't had much peer review. I think the percentage calculation may be wrong? We can always fix it if it's broken and r…

  16. comment
    Comment #1566963

    Great resource. Looks like I've got a lot of porting to do =). Thanks.

  17. comment
    Comment #1566958

    Sorry about that, didn't expect any traffic...ever.

  18. comment
    Comment #1566957

    Top of my list!

  19. comment
    Comment #1566954

    Thanks. Comments would be cool, I'll give it a shot.

  20. comment
    Comment #1566952

    Cool, I'll keep that in mind. The site is intended to have user-generated content so if you find the exact thing you'd like to benchmark, use the bench_press gem to test locally, t…

  21. comment
    Comment #1566947

    Looks like there can be a more significant difference after 100,000 repetitions: http://rubybenchmark.com/reports/13 . In general, the program is pretty dumb and my math isn't that…

  22. comment
    Comment #1566937

    Totally agree that benchmarks should be taken with a grain of salt. I was scanning the ruby docs for Array and saw shift(n) so I thought it'd be fun to try it. I'm pretty ignorant …