HN user

hummus_bae

8 karma
Posts0
Comments69
View on HN
No posts found.

This may come across as naive, but could you expand on the significance of this issue for people who don't use React every day? I see that lots of people think this way about Hooks, so I'm honestly just curious about what React users think is such a big deal

You are describing a case where the desire paths are undesirable, as they may allow litter or vegetation growth, or hasten erosion of soil.

However, when you mention "even tell what the official trail is" is a desire path still desirable in this case? I mean, if no one knows there is an official trail what purpose does the desire path serve? Or is your concern about having interesting vegetation or whatever spoiled by the desire path?

I wonder if there is an optimum amount of desire paths -- where it is still possible to follow the official trail, but interesting diversions are also allowed.

Not to start trash talk, but I believe that most of the ones here are scams.

They are effectively electricity generators, using electricity to heat and generate more electricity. In typical Australian winter even slightly below average outside temperature means they are generating more than they are consuming.

They definitely have a place, but they are not as good as they are marketed to be.

All modern CPU architectures have builtin fast string compare instructions.

Here is a table from the Intel manual (bolded are the relevant compare instructions):

https://msdk.intel.com/en-us/library/cc286809.aspx

SSE-4.2: Compare strings using dqa (32-bit mode), dqq (64-bit mode), dqu, dsx

SSE-3: Compare strings using cmpsdx, cmpsd, scansigndx, scansignd

SSE-2: Compare strings using pmaxsw, pand, pmin, pmins

SSE-1: Compare strings using pandn, pavg, pandnpand, pandnpandn, pandn, pandnpandndivr, ...

Is this duplicative of SQLite's own FTS functions? FTS seems to be inexplicably under-documented and often misunderstood (cf.

https://www.sqlite.org/fts3.html

, where it says: "Note that SQLite will process an SQL SELECT statement tree against an FTS table in three phases: ... The final phase rewrite the query from the inner join into an outer join.", and

https://www.sqlite.org/indexing_ft_only.html

, where it says: "the bookwith table can be faster if you omit the where clause and just ask for the full-text results for all of rows of bookwith." ?

And which is more useful for general-purpose website full-text search -- FTS, or a table with a _column called sqlite_fts_index=... ?

The chip itself can have up to 64k Flash (and another 64k of RAM). But the CPU accesses the memory via a MMU that can map the 1M address space into (mostly) 64k chunks. So effectively the OS can use 1M physical addresses and the CPU itself uses close to 64k of them (depending on how you configure the MMU).

edit: so the whole address space of 1M can be mapped via the MMU into 64k installments.

A C64 MP3 Player 3 years ago

Limit exceeded by what?

Is that really supposed to be some sort of standard response, or is it something idiosyncratic to this server?

"Team Expertise" == Process people tend to form conglomerates, and productive talent tends to form pockets of chaos.

Do you have first hand experience in this? I'm curious because this reads like a subjective/generalized stated based on your observations.

I'm quite interested in the outcome of this "experiment". I wish the best for the OP, but I feel like things will end poorly.

I feel like you're being a little hyperbolic. The founder of HackerNews says that he trains less than half of what this guy does, so I don't see why this guy has reason for failure any more than anyone else.

Early on in my physics career, my supervisor asked me to keep in mind “it’s about speed, not velocity” when doing calculations. In general a force is a change in momentum, i.e. a change in speed. Acceleration is a change in speed relative to some frame. It’s quite possible that da Vinci may unknowingly have seen gravity as an acceleration (as in my example above) and taken the next step to seeing it as a change in speed.

but that seems like it might be a great strength, to attract a different audience?

No. It's a liability. Brands are about focusing on niche markets with common interests.

Or maybe everything about marketing/advertising will always lean towards catering to extroverts/neurotypical people.

No. It's about being able to sell to them and promote to them. Being able to promote what you're selling is a prerequisite to being able to sell it.

It would be ironic if Twitter turned into a graveyard for former Googlers, considering how many of them have been shut out from ever working at Google again/being rehired by the company end of their respective non-compete periods.

It was laser-focused to give specifically those people access to a whole lot of highly-productive and pleasant language features, wrapped up in a package that enterprise management could be amenable to.

On the contrary, Clojure was not focused on satisfying business managers, but on satisfying programmers. It's a good thing that it

also

suits business managament, but that's not its purpose.

What the author says is true, but the implementation in the linked sqlite isn't.

The cache is implementation defined.

The locking is implementation defined.

The index does not work on foreign keys.

The planner isn't thread safe.

The only reasons for 90% of use cases to use sqlite are that it can be embedded and it has an sql parser.

In a major application written by a company with an actual software engineering department, you would use Postgres or MySQL.