HackerTrans
TopNewTrendsCommentsPastAskShowJobs

THBC

no profile record

comments

THBC
·2 năm trước·discuss
[dead]
THBC
·2 năm trước·discuss
”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
·2 năm trước·discuss
Holodeck is just around the corner
THBC
·2 năm trước·discuss
Probably written by a language model
THBC
·2 năm trước·discuss
Ah, configurable data loss.
THBC
·2 năm trước·discuss
M/S Local Minimum
THBC
·2 năm trước·discuss
Just make some of your relationship arrows longer by adding more dashes.
THBC
·2 năm trước·discuss
What? In JS async/await is _literally_ syntactic sugar for returning/thening promises.
THBC
·2 năm trước·discuss


    const value1 = await task1(init);
    const value2 = await task2(value1);
THBC
·2 năm trước·discuss
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
·2 năm trước·discuss
[dead]
THBC
·2 năm trước·discuss
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
·2 năm trước·discuss
Number is not semantically compatible with raw 64-bit integer, so you might as well wish for a native

    const counter = UInt64(42);
The current state of the art is

    const counter = BigInt.asUintN(64, 42);
THBC
·2 năm trước·discuss
This seems like an opaque supply chain attack waiting to happen.
THBC
·2 năm trước·discuss
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.