Viewing profile — themk
themk
HN member- Joined
- Wed, Mar 11, 2020, 6:16 AM UTC
- HN karma
- 409
- Public activity
- 116 items
- HN profile
- View on Hacker News ↗
About themk
No profile information was provided.
Recent public activity
-
comment
Comment #48568459
Google Pay may not work, but NFC payments through yiur bankapp probably do. They did for me.
-
comment
Comment #47383087
It's pretty exciting to see a small chip with an MMU. I wonder if it would be possible to get sel4 running on this? I'm also curious about the current draw, but I couldn't find any…
-
comment
Comment #46843942
One of the few sites with a fun "you have javascript turned off" message. > This game requires JavaScript. Or, if you've superior taste, take out a pen and paper and start listing …
-
comment
Comment #46717036
I actually noticed this as a kid. One of the early GTA games north locked minimaps, and I knew the city well. Later ones did not, and I was always more confused. I've pretty much a…
-
comment
Comment #46712809
Pandoc? It might help you. If you are programatically generating content, you can emit the JSON intermediate format. If you are hand writing, you can use something more sane like d…
-
comment
Comment #46611350
From what you just wrote, it appears you misunderstood what I said. Just to be clear: Red kidney beans (50g): PDCAAS = 0.88, Protein = 11.25g Basmati rice (50g): PDCAAS = 0.7, Prot…
-
comment
Comment #46599591
PDCAAS is dumb when looking at multiple foods. E.g., beans and rice, when consumed together, are like, 0.99, depending on the ratio. That is, the sum is greater than the parts.
-
comment
Comment #46582780
> and reading code is harder than writing it. This is the things thar gets me the most. Code review is _hard_. So hard that I'm convinced my colleagues don't do it and just slap "L…
-
comment
Comment #46550993
That is quite an extreme take, and one that sounds like it was born from parroting social media takes. Ancel Keys was largely correct, and much of what he said is corroborated by m…
-
comment
Comment #46539092
This sounds like they didn't think about it at all. Of course they did, and sure, their techniques were not as sophisticated as today. But there have been plenty of follow-up studi…
-
comment
Comment #46538715
Not the poster, but, usually what people are referring to is all the other stuff that comes along. Per calorie beef and broccoli are actually surprisingly similar, but broccoli com…
-
comment
Comment #46538592
Bioavailabilty is a bit of a non-issue. It's measured as if the food you are measuring is the only food you eat. So if it is slightly low on one amino acid, the "bioavailabilty" dr…
-
comment
Comment #46537470
Notably, the epidemiological study people like to dump on the most, largely did use natural experiments (i.e. they chose regions, that, at the time, had very traditional diets, wit…
-
comment
Comment #46537207
That seems to be searching for RCT's, which, I'm not surprised would struggle to replicate. Most of these had a duration of less than 5 years, while dietary related health outcomes…
-
comment
Comment #46537057
Dietary cholestrol hasn't really been overturned, but sure there is some nuance. Some people do respond badly to dietary cholestrol (like you said, individual advice is sometimes r…
-
comment
Comment #46536625
Nina Teicholz is not who you should be getting your dietary advice from. She has no qualifications.
-
comment
Comment #46536558
I really wish people would stop sharing that article as if it means anything. Nina Teicholz is not who you should be getting your science from. Her views are not the scientific con…
-
comment
Comment #46536510
When people say "fat" is bad for you, they mean saturated fat. Mediterranean diet is quite low on saturated fat, while still having the good fats.
-
comment
Comment #46395283
I think git is overkill, and probably a database is as well. I quite like the hackage index, which is an append-only tar file. Incremental updates are trivial using HTTP range requ…
-
comment
Comment #46265336
Yes, the inability to edit cards due to the content-addressing seems like a majot drawback.
-
comment
Comment #46222517
I thought Meta was "the Party".
-
comment
Comment #46222309
My personal favourite analogy is gambling. The constant microdosing of dopamine to get you to hang around and spend just a little more ~money~ attention.
-
comment
Comment #46179080
I recently published an internal memo which covered the same point, but I included code. I feel like you still have a "voice" in code, and it provides important cues to the reviewe…
-
comment
Comment #46141373
It still is a monad. It's just Zig doesn't have language support for monads, so it's less ergonomic. Just as modular addition over ints in Zig forms a group, even if Zig has no not…
-
comment
Comment #46130257
Passing an interface as a parameter is a monad. (Io -> _) is an instance of Monad in Haskell. Haskell just has syntax to make using (any) monad much nicer. In this case, it let's y…