Live data from Hacker News

Viewing profile — SassyBird

SassyBird

HN member
Joined
Tue, Apr 23, 2024, 2:42 PM UTC
HN karma
163
Public activity
49 items

About SassyBird

No profile information was provided.

Recent public activity

  1. comment
    Comment #40889865

    Thanks for taking the most uncharitable interpretation of what I wrote possible. It’s so productive.

  2. comment
    Comment #40887344

    Is it standard for people in the Andes to take offence at people taking pictures of them? I don’t know, maybe it is, haven’t been there. It is not in Europe.

  3. comment
    Comment #40887239

    If you avoid the slightest possibility of unpleasant and pointless confrontations, then you’re going to lead a very dull life. I sometimes photograph random people. Never has anyon…

  4. comment
    Comment #40873855

    Hopefully k is natural. ;)

  5. comment
    Comment #40866598

    It doesn’t matter which definition you pick. I e.g. had it defined axiomatically when I studied, i.e. we were given a list of properties which identify exp unambiguously and then w…

  6. comment
    Comment #40866505

    Transcendental numbers like e are a lot more "unnatural" than imaginary numbers.

  7. comment
    Comment #40863847

    Following fashion has nothing to do with hacking.

  8. comment
    Comment #40820593

    It’s great to hear. Thanks.

  9. comment
    Comment #40819320

    It’s Qt: https://github.com/rstudio/rstudio/blob/main/src/cpp/desktop... It seems with some JavaScript generated from Java via Gwt. Regardless, I prefer it over VSCode UI.

  10. comment
    Comment #40819127

    Are they going to drop RStudio? I very much prefer its Qt interface over whatever VSCode invented. It’s fast, has nice keyboard shortcuts, none of that pointless padding and it jus…

  11. comment
    Comment #40819091

    The base graphics packages make the plots as ugly as the ones generated by gnuplot though. ggplot2 on the other hand has very pretty output. And the concept of grammar of plots jus…

  12. comment
    Comment #40815905

    > So, what, exactly, am I looking for? This can’t be answered in general. Flamegraphs are measurements of what happened. But just like a ruler doesn’t tell you whether a given huma…

  13. comment
    Comment #40808374

    This has nothing to do with GCC being a first-class citizen in Linux . It’s a kernel feature. The kernel doesn’t care which compiler or debugger you’re using. You can dump core of …

  14. comment
    Comment #40797147

    You must not have seen Bloomberg Terminal then. Most devs on this forum wouldn’t be even able to build anything this performant and ergonomic.

  15. comment
    Comment #40774143

    > 100% branch coverage means that you've fundamentally covered all potential states your software can enter. No, it doesn’t. bool is_even(int n) { return true; } bool test_is_even(…

  16. comment
    Comment #40759053

    And even if you do know what it does, it’s very impractical given that it’s a global option. Turning it on for selected portions of code would be a completely different game.

  17. comment
    Comment #40715617

    > It's still not a feature you can expect all implementations to have, so OCaml is not in a bad position there I think. The number of SML implementations supporting this feature is…

  18. comment
    Comment #40714337

    > In the first year of the University you write cpngruence with three horizontal lines. In the second, you just use two lines, aka an equal sign. Obviously in the next step you ach…

  19. comment
    Comment #40694178

    When would you use it? Emacs dired works fine on other platforms, which don’t have GNU ls on them, so I’m guessing by default it doesn’t run ls on its own.

  20. comment
    Comment #40663394

    You can see part of its black beak on the right hand side.

  21. comment
    Comment #40633685

    Without HiDPI (sic!) scaling that means that a correctly-sized display for that resolution would have a 30" diagonal on Windows (standard PPI: 96) and 40" on Mac (standard PPI: 72)…

  22. comment
    Comment #40633181

    9pt == 12px on the web. You can check that in Web Inspector in computed styles. Alternatively: 1px = (1/96)in 1pt = (1/72)in = (1/72)*(96/72)*(72/96)in = (96/72)*(1/96)in = (4/3)*1…

  23. comment
    Comment #40633143

    It’s the opposite for me. I keep finding dumb bugs in Chromium, when it comes to correct website rendering and event handling (always regressions). Safari and Firefox on the other …

  24. comment
    Comment #40632721

    I’m not a fan of concatenating strings either. I was thinking about the MSVC/Pascal-style inline assembly here, which isn’t based on strings. Correct me if I’m wrong, but I don’t t…

  25. comment
    Comment #40630858

    It seems that MSVC supports inline assembly only on 32-bit x86. For amd64 and ARM they moved entirely to intrinsics.