THBC's comments

THBC | 1 year ago | on: The 4-chan Go programmer

”every pointer is simply adding a dimension to the data.”

No, it’s not. The concept of having a pointer to a pointer has nothing to do with the concept of dimensionality.

You must be thinking of lists of lists (of lists…), which can be implemented using pointers. The dimensionality, however, comes from the structure of the list, not from the pointers.

THBC | 1 year ago | on: I avoid async/await in JavaScript (2022)

That’s not ”raw Promise” syntax, that’s Thenable syntax.

Compare with

    const myPromise = new Promise((resolve, reject) => resolve(”foo”));
    
Afterwards either try-catch await myPromise, or use myPromise.then().catch()

THBC | 1 year ago | on: Combining Ayahuasca Compound with Drugs Like Ozempic Could Treat Diabetes Mice

It’s only the irreversible MAOIs that get a bad rap for being somewhat incompatible with certain foods and other medicines.

These MAOIs are reversible, i.e. they will release from their substrate (the MAO enzymes) after some time. Irreversibles require the body to synthesize more of the enzyme to replace the enzyme molecules that got forever inactivated.

That said, some of the Harmala family alkaloids are also heavily comutagenic and some are neurotoxic.

THBC | 1 year ago | on: Combining Ayahuasca Compound with Drugs Like Ozempic Could Treat Diabetes Mice

The Harmala family of alkaloids is indeed psychoactive. They are found not only in Ayahuasca ingredient Banisteriopsis caapi vine, but also in tobacco smoke and brewed coffee. Those are the two most common sources in the human diet. Right behind are heat-cooked foods, beers, sake, whiskey and soy sauce.

These compounds are functionally monoamine oxidase inhibitors and they are readily absorbed into brain fatty tissues. Their presence in the human body can cause things like anxiety, depression and impulsive behavior, and it takes many weeks or months to completely clear your system of them.

page 1