Live data from Hacker News

Viewing profile — mibsl

mibsl

HN member
Joined
Sat, Dec 29, 2018, 6:39 PM UTC
HN karma
69
Public activity
30 items

About mibsl

U+1F574

Recent public activity

  1. 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…

  2. 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…

  3. 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,…

  4. 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.

  5. comment
    Comment #49082496

    Also, the default collector, G1, introduced more than 15 years ago. Most JVM GCs are concurrent, too.

  6. comment
    Comment #48834093

    Why not go further - learning is doing, not consuming (reading, watching, listening)?

  7. 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.

  8. comment
    Comment #48124778

    Probably "/s", if I had to guess.

  9. 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…

  10. comment
    Comment #44704107

    It seems actively maintained, latest build on Flathub is from 3 hours ago.

  11. comment
    Comment #43821118

    Being always cognizant of opportunity costs also has an opportunity cost in terms of mental health and life satisfaction.

  12. comment
    Comment #42759085

    IIRC genetic drift can reach 100%.

  13. story
  14. story
  15. comment
    Comment #40678977

    There is still glass (and silicone?).

  16. comment
    Comment #40560264

    I think Haskell's Software Transactional Memory has used this novel write-snapshot isolation level for close to two decades.

  17. 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…

  18. 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. …

  19. comment
    Comment #38141933

    To me this one feels cluttered, way too much going on. Definitely distracting, but I wouldn't call it beautiful.

  20. 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...

  21. comment
    Comment #32783062

    Semiconductors - Physics inside Transistors and Diodes Physics Videos by Eugene Khutoryansky https://www.youtube.com/watch?v=hrpPKCDLRN0

  22. 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…

  23. 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.

  24. 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…

  25. comment
    Comment #32070857

    Only tail recursion, not tail calls in general.