HackerTrans
TopNewTrendsCommentsPastAskShowJobs

Elucalidavah

no profile record

comments

Elucalidavah
·há 3 meses·discuss
> 'tapping phones' gimmick strikes me as something that sounds cute but will become an annoying chore

That 'tapping phones' could also be used to facilitate key exchange verification, making that chore technically useful.

Then again, that would be better done in an open-source app and not tied to any particular domain.
Elucalidavah
·há 7 meses·discuss
Arguably, that's exactly the one action that will need to be hash-pinned, since all the consecutive actions will at least be verified against the lockfile.
Elucalidavah
·há 7 meses·discuss
> any notable increase in PM2.5 particles

What's your PM2.5 baseline, and did you measure TDS in the water?
Elucalidavah
·há 7 meses·discuss
If you have a privilege to replace the kernel or bootloader, you effectively have all privileges on that system. Therefore, there's no need to complicate the access limitations when you get full access anyway.
Elucalidavah
·há 7 meses·discuss
Sounds like their "FL1 -> FL2" transition is involved in both.
Elucalidavah
·há 9 meses·discuss
> Tesseract (which is the best I have so far)

Have you looked at EasyOCR?
Elucalidavah
·há 10 meses·discuss
> how all the popular dynamic languages have slowly become statically typed

Count the amount of `Any` / `unknown` / `cast` / `var::type` in those codebases, and you'll notice that they aren't particularly statically typed.

The types in dynamic languages are useful for checking validity in majority of the cases, but can easily be circumvented when the types become too complicated.

It is somewhat surprising that dynamic languages didn't go the pylint way, i.e. checking the codebase by auto-determined types (determined based on actual usage).
Elucalidavah
·há 10 meses·discuss
> With a physical SIM, I can pry my card out of one phone and put it into another, and expect it to work

Is anything preventing the provider from denying a SIM swap based on IMEI?
Elucalidavah
·há 10 meses·discuss
> the client is not packaging up all its logic and sending a single blob that describes the fully-chained logic to the server on its initial request. Right

See "But how do we solve arrays" part:

> > .map() is special. It does not send JavaScript code to the server, but it does send something like "code", restricted to a domain-specific, non-Turing-complete language. The "code" is a list of instructions that the server should carry out for each member of the array