• 0 Posts
  • 18 Comments
Joined 2 years ago
cake
Cake day: January 12th, 2024

help-circle
  • zmrl@lemmy.ziptoLinux@lemmy.mlAnd so it begins
    link
    fedilink
    arrow-up
    2
    ·
    10 days ago

    I had the same problem until I installed the nvidia drivers. KDE will install some that gets things to work but I had that sleeping problem you mention. I can’t remember the exact package name but I can try and figure it out if you need help finding it.















  • I get what youre saying but this is still only kind of true for languages that only the variable assignment is constant (like javascript) rather than the value itself (like rust). If I create a map in rust, without any modifiers, that map is immutable and can’t be changed (not even the contained values). If I create a map in JavaScript using the const keyword, I have created a constant in that block that cannot be reassigned, but any values within the map are changeable like you mentioned. It means the object itself is mutable, but it belongs to a variable that is not.