Viewing profile — mibsl
mibsl
HN member- Joined
- Sat, Dec 29, 2018, 6:39 PM UTC
- HN karma
- 69
- Public activity
- 30 items
- HN profile
- View on Hacker News ↗
About mibsl
Recent public activity
-
comment
Comment #49201653
~45% of people work for companies of less than 500 people, ~12% for the govrnment (federal, state, local), ~6% are self employed. That leaves less than a half for all the companies…
-
comment
Comment #49199483
Over 80% of the federal government's revenue comes from individuals (income tax, payroll tax). On the other hand, I guess the vast majority of politician incomes come from corporat…
-
comment
Comment #49194805
For me, unstructured things (like non-formal diagrams, notes, pseudocode) are close to useless. I much prefer sketching the API surface in code right away and then iterating on it,…
-
comment
Comment #49194202
I'd say, in this analagy, step two is filling in half the numbers by gut feeling, and then three is seeing how wrong the guesses were and actually solving it.
-
comment
Comment #49082496
Also, the default collector, G1, introduced more than 15 years ago. Most JVM GCs are concurrent, too.
-
comment
Comment #48834093
Why not go further - learning is doing, not consuming (reading, watching, listening)?
-
comment
Comment #48167331
5,283 workers were killed on the job in the United States in 2023. The only thing capital owners risk is losing it and becoming a worker.
-
comment
Comment #48124778
Probably "/s", if I had to guess.
-
comment
Comment #47740849
AFAIU antirez is mostly writing in C, a verbose language where "create a hashtable of x->y" turns into a wall of boilerplate. In high level languages the length diffrence between a…
-
comment
Comment #44704107
It seems actively maintained, latest build on Flathub is from 3 hours ago.
-
comment
Comment #43821118
Being always cognizant of opportunity costs also has an opportunity cost in terms of mental health and life satisfaction.
-
comment
Comment #42759085
IIRC genetic drift can reach 100%.
- story
- story
-
comment
Comment #40678977
There is still glass (and silicone?).
-
comment
Comment #40560264
I think Haskell's Software Transactional Memory has used this novel write-snapshot isolation level for close to two decades.
-
comment
Comment #38240173
This is done so that the programmer doesn't have to reason about it. Polonius makes the compiler accept code that's obviously valid, but the current borrow checker isn't sophistica…
-
comment
Comment #38239793
The problem described in 2018 seems completely unrelated to downfall. It looks like a potential optimization to the original spectre, doesn't even mention AVX gather instructions. …
-
comment
Comment #38141933
To me this one feels cluttered, way too much going on. Definitely distracting, but I wouldn't call it beautiful.
-
comment
Comment #32811268
Not really. The NH D15 is an impressive cooler, but it falls behind 280 AIOs. Even ones cheaper than itself. https://www.gamersnexus.net/hwreviews/3571-arctic-liquid-fre...
-
comment
Comment #32783062
Semiconductors - Physics inside Transistors and Diodes Physics Videos by Eugene Khutoryansky https://www.youtube.com/watch?v=hrpPKCDLRN0
-
comment
Comment #32682194
The code snippets appear to be full of mistakes. E. g. filter_vec_avx2 doesn't declare the loop variable i and stores input elements into the output instead of their indices. Or fr…
-
comment
Comment #32652071
Meaningless because (adequately cooled) modern desktop CPUs mostly run near their boost clock in single threaded loads and somewhere between base and boost in multithreaded.
-
comment
Comment #32443188
Short circuiting is a special case of laziness. It's local only, so no thunks are required. The beauty of functions like fromMaybe is they're only that - just plain, regular functi…
-
comment
Comment #32070857
Only tail recursion, not tail calls in general.