• 0 Posts
  • 20 Comments
Joined 2 years ago
cake
Cake day: November 28th, 2022

help-circle


  • Yes, but note that neither the Linux foundation nor OpenZFS are going to put themselves in legal risk on the word of a stack exchange comment, no matter who it’s from. Even if their legal teams all have no issue, Oracle has a reputation for being litigious and the fact that they haven’t resolved the issue once and for all despite the fact they could suggest they’re keeping the possibility of litigation in their back pocket (regardless of if such a case would have merit).

    Canonical has said they don’t think there is an issue and put their money where their mouth was, but they are one of very few to do so.






  • Did the citizens of that country take the loan? No

    Did they benefit at all from the loan? No

    Did the world bank make any effort to ensure the above were answered ‘yes’? No

    When you make a leveraged loan are you supposed to be guaranteed that the it was risk free? No

    If leveraged loans could be made risk-free ‘breal your legs’ style the way the world bank does to countries, banks would be offering loans to every punter who wanted to bet on the dogs.




  • Regarding 1: if you open up dmesg after it happens and you see an error regarding “No edid read”, your GPU is having a hard time automatically getting the monitor’s edid over display port. My 7800xt has this issue.

    If your monitor setup doesn’t change much, you can manually set the edid on a per output basis. Here is a good guide.

    Also, regarding 3: you may need to set your amdgpu feature mask in your kernel parameters.




  • While I do agree these people exist, most people are some mixture of benefiting from, and being harmed by the status quo. To erode support for a mode of production takes both fighting those who are directly against your class interests, and convincing the majority of people that their class interests align with your actions. Often those who feel the most precarity under the current system are it’s most ardent defenders, simply because their afraid of loosing what little status they have eked out for themselves.

    Corbyn was sabotaged both by people who rightly saw him as a threat, and by those who didn’t see the benefit he could bring them.


  • A mixed system which starts with changing the most socially egregious examples is probably the only politically viable transition; lots of people fear disruption, and it takes time and proving to them that the changes are beneficial.

    I’d suggest beginning with something like Corbyn’s Labor had proposed; if a capitalist business is sold or fails, the workers are given first right of refusal and a govt loan is given for them to purchase as a worker cooperative.




  • I’m sure the developers are competent, but the reason I care about the design decisions is the same reason the electric brakes on cars don’t interface with its infotainment system; the interface inherently creates opportunities for out of spec behaviour and even if the introduced risk is tiny, the consequence is so bad that it’s worth avoiding.

    If you have to have an airbag be controlled by software (ideally the mechanism is physical, like a pull tab), it should be an isolated real time device with monitoring your accelerometer and triggering the airbag be it’s only jobs. If it’s also waiting to hear back from another device about whether your subscription ran out before it starts checking, the risk of failure also has to consider that triggering device.

    It can be done perfectly, but it’s software so of course it has bugs.



  • Yes, but also from an implementation perspective: if I’m making code that might kill somebody if it fails, I want it to be as deterministic and simple as possible. Under no circumstances do I want it:

    1. checking an external authentication service.
    2. connected to the internet in any way.
    3. have multiple services which interact over an API. Hell, even FFIs would be in the “only if I have to” bucket.