Live data from Hacker News

Viewing profile — eiriklv

eiriklv

HN member
Joined
Tue, Apr 29, 2014, 8:56 PM UTC
HN karma
165
Public activity
104 items

About eiriklv

www.vullum.io

Recent public activity

  1. comment
    Comment #47288569

    Is this a bot? I feel like HN is dying (for me at least) with all the em-dashes and the "it's not just X, it's Z".

  2. comment
    Comment #46304797

    Why does it produce different ticks and em-dashes?

  3. story
  4. comment
    Comment #40823144

    I feel like redux-saga [0] also belongs on that list of algebraic effects - at least as an honorable mention. [0]: https://redux-saga.js.org/

  5. comment
    Comment #40823113

    In Rick voice: Well, that just sounds like generators with extra steps..

  6. comment
    Comment #40683829

    A bit on the side: Stream processing of data is nicer using a declarative approach. Though I've found that describing control flow is often more intuitive using an imperative appro…

  7. comment
    Comment #39864447

    I feel you - Python has much better (more flexible) argument support than JavaScript in this case. Converting the entire set of arguments into a keyed object is usually what happen…

  8. comment
    Comment #39864253

    Edit: Great work! I'd love to have a nice alternative to PyTorch in JavaScript :) Edit: formatting Making JavaScript look like Python in this case could potentially bite you in the…

  9. comment
    Comment #34258823

    It also helps to use the default resolution to avoid supersampling/anti-aliasing effects.

  10. comment
    Comment #34258755

    I had the exact same issue and spent a lot of time figuring out why this was a problem for me, as I would alter between my old 15 inch and new 16 inch and feel the difference each …

  11. comment
    Comment #31614167

    CRT monitors made things look so much more vivid than on LCD. So when you look at old games today and think «Did it really look this bad and pixelated?», the answer is actually «no…

  12. comment
    Comment #29306060

    Another lefty here - same issue. Did the pre-order long ago. I’m back to pen and paper as I could not tolerate it. It would be great if it was possible to calibrate it somehow, by …

  13. comment
    Comment #27855597

    How much of the insulin is used for type 1 vs type 2?

  14. comment
    Comment #26203041

    That might not all be attributed to nostalgia. CRT displays actually make things look more hi-res and «depthy» [0]. We’ve barely caught up with 4/8K and OLED. This is why CRTs are …

  15. comment
    Comment #24363705

    Hooks are both a blessing and a curse. The most telling difference after starting to use hooks when working with both junior developers and more seasoned ones is that code that see…

  16. comment
    Comment #22641223

    Are you sure it’s 16GB RAM? I maxed out mine and only have 8GB.

  17. comment
    Comment #19660209

    Hit the gym. Increase Testosterone/DHT.

  18. comment
    Comment #19485176

    If you don’t feel anything - are you really living? Look up emotional bluntness and anhedonia.

  19. comment
    Comment #19485150

    Lifting weight increases androgens (testosterone/dht) which seem to have very positive effects when it comes to alleviating depressive symptoms. [1] - https://jamanetwork.com/journ…

  20. comment
    Comment #19485052

    That should not necessarily be attributed to increasing serotonin though. Sunlight increases a lot of things - endorphins, hormones, nitric oxide, etc.

  21. comment
    Comment #19484994

    So many people (including doctors) seem to be set on the idea that serotonin makes you happy and therefore is the solution to depression. This is only half true, and not in the way…

  22. comment
    Comment #16562079

    I am the same. It seems like when your body doesn't have to spend energy/overhead on keeping your temperature up it can make it all available to your brain.

  23. comment
    Comment #14949538

    Just popped into my mind as I recently saw a documentary about him.

  24. comment
    Comment #14949471

    https://en.m.wikipedia.org/wiki/Ignaz_Semmelweis

  25. comment
    Comment #14920557

    As nhpatt notes you're not actually calling obj.method here, you're passing it as an argument, which will be called at a later time. Looking at a possible implementation of setTime…