Viewing profile — eiriklv
eiriklv
HN member- Joined
- Tue, Apr 29, 2014, 8:56 PM UTC
- HN karma
- 165
- Public activity
- 104 items
- HN profile
- View on Hacker News ↗
About eiriklv
Recent public activity
-
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".
-
comment
Comment #46304797
Why does it produce different ticks and em-dashes?
- story
-
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/
-
comment
Comment #40823113
In Rick voice: Well, that just sounds like generators with extra steps..
-
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…
-
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…
-
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…
-
comment
Comment #34258823
It also helps to use the default resolution to avoid supersampling/anti-aliasing effects.
-
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 …
-
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…
-
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 …
-
comment
Comment #27855597
How much of the insulin is used for type 1 vs type 2?
-
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 …
-
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…
-
comment
Comment #22641223
Are you sure it’s 16GB RAM? I maxed out mine and only have 8GB.
-
comment
Comment #19660209
Hit the gym. Increase Testosterone/DHT.
-
comment
Comment #19485176
If you don’t feel anything - are you really living? Look up emotional bluntness and anhedonia.
-
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…
-
comment
Comment #19485052
That should not necessarily be attributed to increasing serotonin though. Sunlight increases a lot of things - endorphins, hormones, nitric oxide, etc.
-
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…
-
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.
-
comment
Comment #14949538
Just popped into my mind as I recently saw a documentary about him.
-
comment
Comment #14949471
https://en.m.wikipedia.org/wiki/Ignaz_Semmelweis
-
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…