Viewing profile — obviouslynotme
obviouslynotme
HN member- Joined
- Sat, Oct 03, 2020, 2:06 AM UTC
- HN karma
- 1,002
- Public activity
- 182 items
- HN profile
- View on Hacker News ↗
About obviouslynotme
No profile information was provided.
Recent public activity
-
comment
Comment #48666138
>weighted flat earth and spherical earth It should default to the mainstream opinion in general, but if you specifically ask about the shape of Earth, I do think it should mention …
-
comment
Comment #48665301
I don't think we can access the Platonic Form of Unbiased in this world. The best we can do is put forward as many points of view on a topic as possible and let the reader choose. …
-
comment
Comment #48637432
They are obviously using the SAT as a safer alternative to the legally dubious practice of IQ testing which can lead to running afoul of the ADA and EEOC. I'm not sure it's much sa…
-
comment
Comment #48404720
You're right. If you think you are walking that line for each of your children, then you are the authority. It's just a common argument I hear from parents who want to avoid feelin…
-
comment
Comment #48404541
I understand deeply. My parents delayed my driver's license until I was 17 because of financial tightness at the time, and that distanced me from some of my friends at the time. Yo…
-
comment
Comment #48403786
My parents did, and they were right. I had limited tv, games, and computer time. They kicked me out of the house after school, only to return for supper. I am eternally grateful fo…
-
comment
Comment #48403709
This is a symptom of not encouraging children into extracurricular activities. If all you have to bond over is social media, your friendship is empty. That's how you create termina…
-
comment
Comment #48144112
Teacher experience means they have more say in their students. It's common for new teachers to be shoved into the worst schools and classes in the district. Teacher performance doe…
-
comment
Comment #47357911
It's not. This is just an acceleration in the unraveling of society facilitated by AI. As someone whose childhood included so many "robots will kill humans" books and movies, I am …
-
comment
Comment #47343385
You are absolutely correct. Even distributing the replication around the world will only help so much. It's a small world out there and only smaller in the specializations. That's …
-
comment
Comment #47340954
I have worked in this particular sausage factory. Multiple funded random replications are the only thing that will save science from this crisis. The scientific method works. We ne…
-
comment
Comment #47326178
I have enjoyed this article series many times in the past. Having been in all three classes, he got losers and clueless correct, but he is mistaken on the sociopaths. 1. Sociopaths…
-
comment
Comment #46214397
A lot of C's popularity is with how standard and simple it is. I doubt Rust will be the safe language of the future, simply because of its complexity. The true future of "safe" sof…
-
comment
Comment #45951485
Very, very few people outside of foundational system software, HFT shops, and game studios understand why it's a great selling point. Everyone else likes the other points and don't…
-
comment
Comment #45951388
There is nothing new under the Sun. However, some languages manifest as good rewrites of older languages. Rust is that for C++. Zig is that for C. Rust is the small, beautiful lang…
-
comment
Comment #45818814
Cameras and other means of tracking cannot remove me from commerce. The problem isn't just the tracking. Cash requires no oversight to transact. If I am required to use a payment n…
-
comment
Comment #45818700
I completely agree with you, but you cannot stop this train. Cash will continue to exist only as a loophole to be exercised by rich and connected individuals. Everyone else will be…
-
comment
Comment #45546065
The most important pattern to learn in C is to allocate a giant arena upfront and reuse it over and over in a loop. Ideally, there is only one allocation and deallocation in the en…
-
comment
Comment #45442587
Except this is an article on how to perform technical politics in large organizations. Functional, intelligent, non-nepotistic leadership is the exception , not the rule. It has be…
-
comment
Comment #45374979
We have already removed so much liability in other licensed professions, either through law or practice. It's almost impossible to obtain a malicious prosecution or SLAPP judgement…
-
comment
Comment #45281817
How are you going to get around Griggs v. Duke Power Co.? AFAIK, personality tests have not (yet) been given the regulatory eye, but testing cognitive ability has.
-
comment
Comment #41114520
I would bet that, especially outside of library code, 95+% of the typed objects are only interacted with using a single interface. These could be turned into structs with direct ca…
-
comment
Comment #41113985
Outside of really funky code, especially code originally written in TS, you can assume the interface is the actual underlying object. You could easily flag non-recognized-member ac…
-
comment
Comment #41113921
Yeah, that is why I said TS (or something similar). TS made some decisions that make sense at the time, but do not help compilation. The complexity of its typing system is another …
-
comment
Comment #41113586
I have thought about doing this and I just can't get around the fact that you can't get much better performance in JS. The best you could probably do is transpile the JS into V8 C+…