Live data from Hacker News

Viewing profile — bogomog

bogomog

HN member
Joined
Tue, Jan 21, 2025, 4:26 PM UTC
HN karma
30
Public activity
22 items

About bogomog

No profile information was provided.

Recent public activity

  1. comment
    Comment #48592282

    I was mildly disappointed the other day when I did a , and instead of "apropos" I saw "search for command". Apropos was one of those killer features that was, as far as I know, uni…

  2. comment
    Comment #48589091

    20 or 25 years ago it almost never crashed. Now I might see a crash or freeze once a week or so. And slowdowns several times a day. Of course I'm running more modes now in a more c…

  3. comment
    Comment #47862719

    A modernization, really.

  4. comment
    Comment #45957050

    My favorite, kind of ironic, advantage of tubes over transistors is that it's easier to source replacements.

  5. comment
    Comment #45956922

    But capacitors may hold high voltage DC, if there's no path to discharge them.

  6. comment
    Comment #45175028

    The arc of the U.S. economy over the last 80 years contradicts your position. There has been reduced regulation since the Reagan administration, and also reduced competition. A few…

  7. comment
    Comment #45174720

    And to add to this, you rarely need to read a log message when just visually scanning code, its fine going off the screen.

  8. comment
    Comment #45174655

    That's why Python should have gone all-in on significant spaces: tabs for blocks, spaces after tabs for line continuation

  9. comment
    Comment #45174503

    I find it jarring compared to commas after the words, making the commas unnecessarily prominent.

  10. comment
    Comment #45174401

    +1 to this. Why throw away an extra dimension of expression available by choices in formatting in the name of consistency? I find it helpful to use blank lines to separate code int…

  11. comment
  12. comment
  13. comment
    Comment #44945445

    Yeah, that stood out to me as a virtual tie also. When I got pretty good at debugging was when I began to recognize which of these approaches would likely be most effective in a gi…

  14. comment
    Comment #44311829

    I think graphical debuggers are a big help: 1. It separates the meta-information of the debugger into the graphical domain. 2. It's easier to browse code and set/clear breakpoints …

  15. comment
    Comment #43335554

    That's why I gave the caveat that if using a language with the ternary operator, one should know that operator. Python tried using English words for a ternary, but I think that's a…

  16. comment
    Comment #43335218

    function getOddness(n: number): return (n % 2 === 0) ? "Even" : "Odd"; Lowest boilerplate makes it the most readable. If working in a language with the ternary operator it ought to…

  17. comment
    Comment #42936577

    Exactly. And a certain amount of maga are still in favor of a coup, and then a certain amount of blissfully ignorant new voters.

  18. comment
    Comment #42928496

    How is not a big deal that a few thousand citizens were various levels of conscious and unconscious participants in an organized coup attempt?

  19. comment
    Comment #42928434

    Stopping payments authorized by congress, for one.

  20. comment
    Comment #42928422

    Arguably, they aren't government officials, because DOGE isn't a legitimate part of the executive branch.

  21. comment
    Comment #42895132

    I forgot it existed, was using it at a couple of jobs circa 1989-1992. Completely blocked it out of my mind.

  22. comment
    Comment #42809150

    I never felt real comfortable with Xcode. Working on a medium sized c++ project now, and mostly using emacs. Xcode only for the debugger, which I much prefer in a GUI. CMake sets u…