Person: I'm having health, social, and psychological problems from my condition. I've also read that it is a big risk factor for early death.

MD: Right you are! I'll be happy to prescribe effective treatment if you do some completely ineffective voodo-witchcraft-conman bullshit for a year, while you continue to suffer. If you don't do the bullshit well enough or long enough, I'm going to let you stay sick, get even sicker, then die. Then I'll pat myself on the back for being ethical.

(It took a while, but I made the post more succinct)

#MDs #bias #weightloss #overweight #treatment #culture

Micro-datacenter Artifaille - mars 2026

https://artitube.artifaille.fr/w/euLHBVgpWZZyy86ueLWMeg

Micro-datacenter Artifaille - mars 2026

PeerTube
As regras não mudaram. Com o avanço de conteúdos enganosos feitos com inteligência artificial, a orientação é clara: desconfie, verifique a fonte e não compartilhe. Informação oficial, só pelos canais do #MDS ou governo do Brasil. 🧵2/3⤵️

Deploying on OCI with the starter kit – part 8 (using MySQL REST Service)
The starter kit deploys a MySQL HeatWave DB System on OCI and enables the MySQL REST Service automatically:

The REST Service enables us to provide access to data without requiring SQL. It also provides access to some Gen AI functionalities available in MySQL
https://lefred.be/content/deploying-on-oci-with-the-starter-kit-part-8-using-mysql-rest-service/
#Cloud #HeatWave #MDS #MySQL #MySQLRESTService #OCI

Deploying on OCI with the starter kit – part 8 (using MySQL REST Service) - lefred blog: tribulations of a MySQL Evangelist

The starter kit deploys a MySQL HeatWave DB System on OCI and enables the MySQL REST Service automatically: The REST Service enables us to provide access to data without requiring SQL. It also provides access to some Gen AI functionalities available in MySQL HeatWave. Adding data to MRS using Visual…

lefred blog: tribulations of a MySQL Evangelist

Deploying on OCI with the starter kit – part 7 (GenAI in HeatWave)
We saw in part 6 how to use OCI's GenAI Service. GenAI Service uses GPUs for the LLMs, but did you know it's also possible to use GenAI directly in MySQL HeatWave? And by default, those LLMs will run on CPU. The cost will then be reduced.

This means that when you are connected to your MySQL Hea
https://lefred.be/content/deploying-on-oci-with-the-starter-kit-part-7-genai-in-heatwave/
#Cloud #GenAI #HeatWave #MDS #OCI

Global Tax Free Co. abruptly canceled a 14 billion won ($10.7 million) discounted share issue after shareholder backlash, but its management buyout at a 60% premium proceeds as planned.
#YonhapInfomax #GlobalTaxFree #ShareholderValue #RightsOffering #ManagementPremium #MDS Tech #Economics #FinancialMarkets #Banking #Securities #Bonds #StockMarket
https://en.infomaxai.com/news/articleView.html?idxno=96884
Global Tax Free Withdraws 'Cut-Price' Share Issue After One Day—Cites Shareholder Value

Global Tax Free Co. abruptly canceled a 14 billion won ($10.7 million) discounted share issue after shareholder backlash, but its management buyout at a 60% premium proceeds as planned.

Yonhap Infomax
Deploying on OCI with the starter kit – part 5 (connecting to the database II)
In part 4 of our series on the OCI Hackathon Starter Kit, we saw how to connect to the deployed MySQL HeatWave instance from our clients (MySQL Shell, MySQL Shell for VS Code, and Cloud Shell). In this post, we will see how to connect from an application usin
https://lefred.be/content/deploying-on-oci-with-the-starter-kit-part-5-connecting-to-the-database-ii/
#Cloud #Devel #HeatWave #MDS #MySQL #OCI #Python

Be it a dacha in Russia, or a penthouse in Saudi Arabia, it appears Agent Orange is looking for his escape hatch.
Making nice with their two violent and conniving leaders.
And both have no extradition policy with US.

I’m betting Russia, given his penchant for former East Bloc women as wives. And Melanoma is getting long in the tooth, if his bromance with Jeffrey is anything to go by.
#trump #russia #putin #mds #saudiarabia

🩸 Don’t miss Blood Cancers OncTalk 2025!

Hear from Dr. Ashwin Kishtagari (Vanderbilt University), expert in #MPNs, #MDS, and #AML.

📅 Register today: https://give.cancergrace.org/event/2025-blood-cancers-onctalk/e715673

Automating Intel Mac Erase and Restore

I have been working on a project to erase and restore any Mac from 2013 to the present. I revisited Mac Intel restores and added a new feature to MDS that works well, though it took some prep. It was challenging because there was no documented way to determine if a macOS version would install on a Mac before restoring. So through some investigating and testing, I came up with a set of rules:

  • If the major version of macOS to be installed is earlier than the currently booted macOS, the install will fail.
  • If the major version of macOS is earlier than macOS 11, installing macOS 12 or later will fail. Only up to macOS 10.15 can be installed.
  • If the major version of macOS is later than the latest supported version of the Mac that is being restore, the install will fail.
  • The first rule is a well-known rule. You can’t go backwards easily when installing macOS. The second rule took a while to figure out, and I have not tested on all Macs in all configurations, but it appears there is something special about macOS 11 (Big Sur). Prior to Big Sur, you can update to Big Sur, but not later. If the current Mac is on Big Sur, you can upgrade the OS to the latest (or the latest that the hardware supports, which is the last rule).

    To implement this in an automated way, MDS Deploy had to discover 4 pieces of information:

  • The model identifier or product id of the hardware to figure out the the latest version of macOS that could be installed on that Mac
  • The currently booted OS
  • The version of macOS that is going to be installed
  • A way to know what the latest version of macOS that can be installed based on the hardware
  • Obtaining the model identifier was easy:

    /usr/sbin/sysctl -n hw.model

    For the currently booted OS:

    sw_vers -productVersion

    The version to be installed proved to be a bit tricky, since the installer can be in a disk image, on a remote server, or in a local installer. I opted to have the OS version specified explicitly when creating the workflow:

    With all the information, the only missing part was knowing what is the latest macOS version that can be installed on a Mac. The information is available but not in a way that is comprehensive or easily parsable. We were already working on a deterministic way to identify the DFU port of Apple Silicon Macs, so we expanded it to include the latest macOS version that can be installed.

    The result makes it very easy to restore any Intel Mac. The Mac is booted into Internet Recovery, then an MDS Deploy utility is run. The utility determines what macOS versions are available, what hardware it is running on and what version of macOS it is booted into, and automatically selects the correct installer:

    MDS Deploy also now displays the infomation:

    The workflows also show if it can be installed to assist manual selection:

    To set this up, all of the installers are included in the MDS workflows, and there is a new setting to run automatically:

    In the end, for someone to erase a Mac is simple:

  • Boot to Internet Recovery
  • Open Terminal and run a command to launch MDS Deploy.
  • Those two steps can be automated further by using our Automaton to reduce it to two button presses.

    Connect With Us

    Youtube   LinkedIn   Mastodon   Bluesky   Facebook   Threads

    Sign Up for MDS Security and Product Updates

    Enter your information below to receive email updates when there is new information specifically regarding this product and how to use it. Alternatively, to receive email updates for general information from Twocanoes Software, please see the Subscribe page.

    Name First Last Email

    #mds