John Leidegren

Results 42 comments of John Leidegren

My last comment really says it all. Although I don't know anything about coin-hive it's impossible to run chrome headless within the Azure runtime as it stands today. You have...

I should add that you can use a windows container as well, if you really need a windows environment.

I always thought that it was by design to intentionally not get into that problem (where libraries are linked more than once). The first solution that came to my mind...

Some things I've noticed so far, trying to upgrade from 1.0 to 2.0: - `make_node` is no longer a member of `env` and you now have to require package `tundra.depgraph`...

I agree, but do you mind accumulating some of that information here first? I'll happily write it up and submit a pull request later.

We need some reasonable way to do simple locale sensitive string search. `Intl.Segmenter` ain't it. Regular expressions are useful but comparatively expensive and there's no `RegExp.escape` (this proposal was rejected)....

I've been here before but this was today's reason (there's some TypeScript in there but mostly it just JavaScript). ```ts // this is a React hook function useFilter(): [string, (filter:...

> "Unicode-aware fuzzy text matching" There's nothing fuzzy about what's going on here. This is simply about being able to search for substrings using the `Intl.Collator`. I am not advocating...

I would like to add that I'm trying to build a database in JavaScript and having more fine grained control over string operations to build case insensitive (or with respect...

Can someone explain to me what the corner cases are here... I want to do a simple prefix search. I can do this by simply chopping strings with `.slice()` and...