• 0 Posts
  • 40 Comments
Joined 1 year ago
cake
Cake day: September 1st, 2023

help-circle



  • Basically just start with what you’re aiming to enable and work backwards (as you’ve started to do). With judicious use of grep find out where that symbol is defined. If it’s in arch configs for other arches but not your own, it’s probably that.

    There may be better tools out there to do this, but in my experience just sleuthing it out a bit will answer your question. The Kconfig system can be complex, but the files are pretty readable.


  • themoken@startrek.websitetoAsklemmy@lemmy.mlIs the FDA good or bad?
    link
    fedilink
    arrow-up
    62
    arrow-down
    1
    ·
    edit-2
    10 days ago

    Ideally the FDA should not be swayed by business interests, but everything controlled by our government is. That said, you want the FDA to exist and protect us from bullshit snake oil products and keep corporations from lacing our food with cheap poisons and carcinogens.

    Trump gutting the organization makes it go from “could do better” to “actively subverting its own purpose.”





  • The actual total in your own link was 5.2 million for executives. The 88 million is, again, the entire salary base just in 2021. Assuming they still had 700 employees (which is a current figure, not 3 years ago) that’s still about 120k apiece for everyone else.

    I can’t tell if you’re just being disingenuous or you really can’t read your own sources…











  • So you’re right that this is a bit arbitrary because the line between the standard lib and the language is blurry, but someone writing Rust is going to expect Vec to work, it doesn’t even require an extra “use” to get it.

    Perhaps a better core example would be operator overloading (or really any place using traits). When looking at “a + b” in Rust you have to be aware that, depending on the types involved, that could mean anything.

    Anyway, I love Rust, it just doesn’t have the 1:1 relationship with the assembly output that C basically still has.