Tobias Bora

Results 245 comments of Tobias Bora

What do you mean by using the md5? The library `memoize` mentionned above seems interesting and elegant, but I’ve never used it as it seems to be quite specific to...

Hum, out of curiosity, why do this thread claims it is supported? Is it refering to another format, or to a legacy version of dream2nix? https://discourse.nixos.org/t/yarn-plugnplay-and-direnv-packaging/19759/12?u=tobiasbora > Second on dream2nix....

I see, cool. Actually, being able to use the current nixpkgs might be interesting to avoid downloading too much new things.

Thanks for your answer. I used a similar solutions before (I was using directly the `Aeson` function to load files + `unsafeCompiler` to perform the IO), but my issue is...

Hum, I’m a bit lost as well: how do you get access to `doc` that is needed all over the API, for instance to do `replaceSelection`? I tried: ``` const...

Oh, seems like I needed to send this to dispatch, like: ``` const onHelperMenuClick = useCallback((e) => { // https://github.com/uiwjs/react-codemirror/issues/314 if (refCodemirror.current) { console.log('HTMLDivElement:', refCodemirror.current.editor); const doc = refCodemirror.current.view.state; refCodemirror.current.view.dispatch(doc.replaceSelection(e.key));...

Well the error is pretty clear, the missing module is 'PIL', I'll update the readme. I just look on google, and it seems that Pillow is now replacing the dead...

It looks like you don't have some basic depends needed for Pillow. The full list is here https://pillow.readthedocs.io/en/latest/installation.html (at the end of the page). Can you try to do this:...

Pil is the old version of pillow, I think that now even debian stable jumped to Pillow. Maybe you should consider at some point to move to the stable version...

And make sure also that you downloaded geckodriver and put it in your path. If it does not solve the problem, then I'm pretty sure that it's a version issue,...