Jaime Pillora

Results 313 comments of Jaime Pillora

I’ve switched to headless chrome and do minimal parsing I only fill out login and click buttons, and here’s the trick, I add chrome driver network listener and just wait...

CF workers are V8 isolates (js runtime only) whereas lambda is a firecracker vm (Linux machine) On Wed, 31 May 2023 at 5:53 pm Benjamin Lupton ***@***.***> wrote: > Worth...

FYI to those looking for this, I’m going to try out https://github.com/gaissmai/bart as a replacement, might be useful to others

When I use a `map[string]int` instead, it works as expected: ``` [ { "op": "add", "path": "/Lines/10", "value": 11 }, { "op": "remove", "path": "/Lines/0" } ] ``` And it...

I was thinking https://en.wikipedia.org/wiki/Longest_common_subsequence_problem could be used when comparing two arrays. Since it works on strings and characters, it should work on arrays of interfaces. Only issue is it might...

I have not yet. Though I would still find it very useful! I make heavy use of this package via https://github.com/jpillora/velox ([forked](https://github.com/mattbaird/jsonpatch/compare/master...jpillora:master) to encode slashes - no longer adhears to...

Oyea I just remembered, I took a crack at the algorithm 6 months ago https://github.com/jpillora/lcs though it currently only works on strings

Yep this is a bug, need to ssh in and delete manually On Thu, 6 Oct 2022 at 9:21 am xuanlanlinghun ***@***.***> wrote: > The error :-bash: syntax error near...

I think Go is a popular choice to create malware these days. I’m guessing malware would also use a SOCKs server etc Not sure what can be done... On Mon,...

Hey guys, I've implemented preliminary UDP support. Could you please test https://github.com/jpillora/chisel/releases/tag/v1.7.0-rc5 It's currently undocumented on the main README during this testing phase. I had a fairly long think about...