Frederik Schubert
Frederik Schubert
I see. When installing `systemjs-nodelibs` I get some warnings from yarn/npm: ``` warning Unmet peer dependency "util@jspm-nodelibs-util@^0.2.0". warning Unmet peer dependency "assert@jspm-nodelibs-assert@^0.2.0". warning Unmet peer dependency "http@jspm-nodelibs-http@^0.2.0". warning Unmet peer...
No worries :) No, unfortunately I could not find it.
The feature would be a simple string prefix as in https://github.com/continuedev/continue/commit/850458ba833eeb12bf18c62dfeca2489737750c5.
Yes, that is true. They are essentially using [turndown](https://github.com/mixmark-io/turndown), which could be integrated in the continue plugin.
So, after further investigation, I came up with a minimal reproduction of their approach: 0. (optional) use playwright or another browser to access dynamic web pages. 1. inject [readability](https://github.com/mozilla/readability) script...
@sestinj What do you think about adding playwright for this use-case as an optional dependency?
You can also achieve something via the `record_extra_info` of the [`NStep`](https://coax.readthedocs.io/en/latest/coax/reward_tracing.html#object-reference) reward tracer. Its a little besides the point but will give you the `n` observations, actions, etc. that follows...
For now you could use this command to search zip/jar archives: ``` bash # To search the contents of the files unzip -c app.jar | ag regex # To search...
To search multiple jars in a folder you could use this command. I recommend creating an alias for it because it is quiet long. ``` bash # To recursively search...
From the linux man pages of unzip: > -c > > extract files to stdout/screen (''CRT''). This option is similar to the -p option except that the name of each...