THBC | 1 year ago | on: The 4-chan Go programmer
THBC's comments
THBC | 1 year ago | on: Diffusion models are real-time game engines
THBC | 1 year ago | on: TIL: Versions of UUID and when to use them
THBC | 1 year ago | on: Ask HN: What are you working on (August 2024)?
THBC | 1 year ago | on: IT tycoon Mike Lynch, daughter Hannah found dead
THBC | 1 year ago | on: Mermaid: Diagramming and Charting Tool
THBC | 1 year ago | on: I avoid async/await in JavaScript (2022)
THBC | 1 year ago | on: I avoid async/await in JavaScript (2022)
const value1 = await task1(init);
const value2 = await task2(value1);THBC | 1 year ago | on: I avoid async/await in JavaScript (2022)
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
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: Porffor: A from-scratch experimental ahead-of-time JS engine
const counter = UInt64(42);
The current state of the art is const counter = BigInt.asUintN(64, 42);THBC | 1 year ago | on: Porffor: A from-scratch experimental ahead-of-time JS engine
THBC | 1 year ago | on: Combining Ayahuasca Compound with Drugs Like Ozempic Could Treat Diabetes Mice
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.
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.