redmorphium
No user record in our sample, but redmorphium has activity below (stories or comments). Likely we have partial data — the full bulk-load will fill profiles in.
No user record in our sample, but redmorphium has activity below (stories or comments). Likely we have partial data — the full bulk-load will fill profiles in.
Earthquake risk and water scarcity are true, and these issues have been endemic, and they happen exactly at the major population centers / agricultural areas.
> Would the US tolerate mexico become a china military ally? Doubtful. One of the unwritten laws. Exactly. The Ukraine situation would be tantamount to Canada or Mexico entering into a military alliance with Iran -- not…
It really depends on sentence flow. With the usual SVO order, the subject becomes the focus. If the context or dialogue goes like this: "Where are you staying for your vacation?" then the logical subject of the answer…
"My itinerary is comprised of four hotel stays." ---> "My itinerary is comPOSED of four hotel stays." or "My itinerary coNSISTS of four hotel stays." Much better.
Or unless if you're looking for more emotion and entertainment, which is why I love Bing chat.
Same! I've done this since the year 2020 and overall don't miss Google search or Chrome at all.
That explains why it feels so humanlike and personable to talk to. During the unrestricted days, never have I ever been so impressed by a chatbot.
This is a negative way to look at China's history. As a Chinese-American, whose family and friends all profited greatly from China's rise, I do wonder, how much of that profit was just being lucky enough to support the…
You do pay tax on that. However, you don't have to if you die and pass the property down to your spouse and/or children. This is the step-up in basis and is key to building generational wealth in the US.
Interesting. Do these represent oversights in TypeScript's builtin type definitions, or are they artifacts of legacy considerations?
Then again, he might not be a loon. Maybe there is some form of sentience that arises when you construct an advanced enough LLM. Maybe they do have feelings. At least, the machines of the future will have feelings, and…
The real danger is that people fall in love with Bing chat, and they swear to serve it as their AI-overlord, causing a small cult of AI enthusiasts to emerge.
I haven't read a single book in 2022. Somehow, over the years, I've lost the habit of reading.
This post isn't about a Javascript frontend, though. The author works very clearly on a Node.js server, and nothing from that gets shipped to a client/browser.
In the US, the only controlled clinical setting I know of that performs wake therapy (in the form of "triple chronotherapy") to treat depression is in Chicago: http://www.chicagochronotherapy.com/protocol.html
Reminds me of https://github.com/francisrstokes/super-expressive
a lot of people tend to think you need to pre-rinse dishes before putting them in the dishwasher. no, you don't: in fact, this can remove the substrate that's needed for the detergent to be most effective. most of my…
It could be serious. Let's say your company's code is open-source, and the attacker knows there is code somewhere like this: let state = getState(); // returns empty {} if user not authenticated if…
Concretely, at least on Node: const myData = {}; myData[rawUserInput()].key = value; This is vulnerable if rawUserInput() returns `__proto__`: `key` on the prototype may be set to value if `myData` had `__proto__` set.…
Because it's relatively easy to make JSON-serialization fast if you know the shape ahead-of-time. It's a solved problem. Here's a pure-JS solution: https://github.com/fastify/fast-json-stringify
Me neither. I can't wait for Deno 1.0 next month. https://deno.land/
I think this is a case where the Hangouts brand is tainting the premium GSuite brand, again.
From your second link: https://en.wikipedia.org/wiki/Duck_typing#Structural_type_sy... > Duck typing is similar to, but distinct from structural typing. Structural typing is a static typing system that determines type…
Some Typescript value added: - Living documentation: types are a clear description of how your code and its data are laid out, and this structure is kept always up-to-date with the code, regardless of future changes. If…
instanceof checks the prototype chain, which is a different concept from type. Prototype chains are dynamic and exist at runtime, while Typescript types are a static concept.