Live data from Hacker News

Viewing profile — jack_squat

jack_squat

HN member
Joined
Sun, Jan 02, 2022, 7:57 PM UTC
HN karma
123
Public activity
28 items

About jack_squat

No profile information was provided.

Recent public activity

  1. comment
    Comment #43210118

    [flagged]

  2. comment
    Comment #43209812

    [flagged]

  3. comment
    Comment #42906258

    Like most online forums, HN discussions are dominated by people who like to spend all their time online arguing with people. It's the 80:20 principle, or the 90-9-1 principle. Larg…

  4. comment
    Comment #38008053

    My prediction is it'll be Cruise in red states and Waymo in blue states. I think they are done in SF but this will endear them in TX.

  5. comment
    Comment #37643993

    I've done the Postgres skip locked thing at least three times and I'm currently doing it, but IMO it is actually more maintenance and overhead, not less -- at least when compared w…

  6. comment
    Comment #37337999

    Typically you try and avoid closing a connection on each request, you hand it back to a connection pool. The underlying session stays open and associated with the connection (if yo…

  7. comment
    Comment #37144258

    The author's site is primarily poorly-researched and hyperbolic BS, mostly to provide cover for his political hot takes. Example: https://scottlocklin.wordpress.com/2021/11/20/us-p…

  8. comment
    Comment #37016770

    No piece of software has influenced my career and my thinking on design, user interfaces, and software quality as much as VIM. VIM made learning to code as fun as playing a game. T…

  9. comment
    Comment #36105189

    When you use a surrogate key, you should still put a unique constraint on an alternate key. Multiple records for the same thing is a fundamental problem in a database.

  10. comment
    Comment #36105139

    I also tend toward surrogate keys, and would also point out that the overhead concerns frequently weigh in favor of them as well (though not always). If your natural key is bigger …

  11. comment
    Comment #36036035

    Atomicity doesn't mean "doesn't fail", it means "either fails or succeeds, but does not succeed halfway". There is nothing about what you are describing that is different from the …

  12. comment
    Comment #36035918

    1NF bans relation-valued attributes, not repetition of attribute value across tuples in a relation. Mainstream SQL databases don't support relation-valued attributes, so any table …

  13. comment
    Comment #36032448

    From the Postgres docs, ON CONFLICT DO UPDATE guarantees an atomic INSERT or UPDATE outcome; provided there is no independent error, one of those two outcomes is guaranteed, even u…

  14. comment
    Comment #35853632

    Am I alone in feeling there is nothing left to be said on this topic? Correct application design, and balancing that against the constraints of getting a product out the door, the …

  15. comment
    Comment #35842986

    FTS is not the same as regex.

  16. comment
    Comment #35751155

    RI has the same approximate population as AK. What people mean when they say land votes, is AK compared to NY. AK has a population of 8 million. Proportionally, Alaskans have > 8x …

  17. comment
    Comment #33162437

    what the comment describes is actually a central point of the "Easy Way" book mentioned many other places in this thread.

  18. comment
    Comment #32332043

    If something is "likely", I would assume it's more likely than not.

  19. comment
    Comment #31942344

    Regarding trains anyway, a) there have been autonomous trains for decades and the numbers are increasing. b) there are 100x as many professional drivers as train conductors in the …

  20. comment
    Comment #31544079

    IMO if a solution requires users to address data by page, it's a sign that the search functionality is not good enough. In general a user doesn't want to find "page 3", they are lo…

  21. comment
    Comment #31231330

    I would suggest quitting coffee if you are curious about that. Do it on a Thursday and you will probably be fine by Monday. Try it for a couple weeks and evaluate, most likely your…

  22. comment
    Comment #30921642

    Do you think that's how it works? I have no idea, what's your evidence? California's actions seems pretty consistent with this to me: https://storage.courtlistener.com/recap/gov.us…

  23. comment
    Comment #30496013

    Proxy war means no boots on the ground. The two of you agree.

  24. comment
    Comment #30493666

    In my opinion "infinitesimal" is too small. I think at this point a nuke strike is a bigger risk than covid, for most.

  25. comment
    Comment #30232774

    This is the R resource I recommend: https://www.amazon.com/Using-Introductory-Statistics-Chapman... Takes a weekend to work through the book and you get a statistics refresher as a…