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

help-circle



  • but I generally see suicidality as a symptom of something else. If we can improve the “something else,” the suicidality improves or even goes away in the vast majority of cases.

    If it was as easy as that she would never have gotten her request approved. It is extremely rare for someone at her age to have her euthanasia request approved on account of mental issues. Hell, it is near impossible to get your request approved for this at old age, let alone when you are in your 20’s or 30’s. So please be careful with comments like this, as having exhausted all available treatments is a prerequisite and there are a lot of them. Mental healthcare in the Netherlands is in a fairly shitty state thanks to 20 years of budget cuts and ‘let the market solve it’-policy, but it is not so shitty that we just resort to killing off troubled people.

    If medical professionals would even have had the slightest feeling that there was a way remaining to get her some semblance of a normal life, she wouldn’t have been eligible.


  • Actually both options are possible here in the Netherlands, it’s a matter of preference of the patient. In both cases a doctor will be present, whom will also supply the drugs if a patient chooses to take them themselves.

    This case is incredibly rare though, it is already extremely hard to have a euthanasia request granted for mental issues at an older age, let alone someone so young.

    A bit more background on ‘the aftermath’ by the way, as the article doesn’t mention that: after the euthanasia has taken place a coroner will establish that this was indeed the cause of death. Once that is done the public prosecutor needs to give permission before the remains may be buried or cremated.

    Also, the coroner will send the report of both the physician who approved and performed the euthanasia and that of the SCEN-doctor, who performed the obligatory 2nd opinion mentioned in the article, to a special committee that will check if everything went by the book. Not only the procedure leading up to the euthanasia, but also the act of the euthanasia itself. If there are doubts about whether or not all means of treatment were exhausted and if there really was undue and indefinite suffering, or if there are any doubts if the patient really wanted to go through with the procedure at ‘the moment supreme’, a doctor can be held accountable for that. Fortunately that is rare, as the whole procedure is not taken lightly.


  • Aganim@lemmy.worldtoTechnology@lemmy.world*Permanently Deleted*
    link
    fedilink
    English
    arrow-up
    4
    arrow-down
    3
    ·
    1 year ago

    I work with Linux on a daily basis, both as a server OS and a desktop OS. Unpopular observation perhaps, but I’ve yet to find a distro which provides a more stable desktop experience than Windows 11 does for me. I do enough Linux troubleshooting during the day, after work I just want something that works.



  • Isn’t dendrite formation and the shorts they can cause a much bigger concern when dealing with old batteries that are being charged 24/7? Asking a genuine question here, so please don’t shoot me if I’m wrong. 🙂 I’d love to hear more about the most common failure modes and causes for li-po/ion batteries.







  • To each their own, after having had the ‘pleasure’ of maintaining a fleet of Macs I’m personally quite happy with Windows these days. I’m never touching anything running MacOS ever again, that bullshit OS almost made me want to practice my frisbee skills on more than one occasion. Stability issues galore, that stupid single menubar that changes depending on which window has focus, crap like ‘sudo rm somefile’ failing with a ‘not enough disk space remaining to remove file’ error message when the disk is full, and many many other issues that were such a pita to solve. MacOS feels like having to work with one hand tied behind your back and a hammer in the other. Never again.


  • That’s a trip down memory lane, I once (probably a decade ago by now) had to fix a website built by an unknown developer for a customer. Was wondering why I was missing all kinds of variable assignments, until the word ‘register_globals’ floated up from the depths of my mind. And indeed, they enabled that setting in .htaccess, which broke the website after PHP 5.4 did away with it permanently. But to defend the PHP developers a bit: they turned it off by default in 4.2, which came out in 2002, because they recognised it as a security vulnerability. You can debate if that setting should have sticked around for 13 more years, but at least it required a manual action to actually be able to use it from 4.3. Although I cannot help but wonder how many shared hosting companies turned it on just to prevent all kinds of sites from breaking of course.

    And yes, oh boy, the MySQL driver… That one wasn’t great as it didn’t support parameterization, but I guess at least the documentation for mysql_query was clear that any data in your query should be escaped with mysql_real_escape_string. To be fair, if you execute a query containing unescaped data with MySQLi or PDO directly you are going to get Bobby Table’d just as hard.