James Brock

Results 280 comments of James Brock

https://discourse.haskell.org/t/some-questions-for-users-on-macos/5436

The PR from @hnine999 is #2419

Thanks for this theme @5yutan5 I also have a problem with radio buttons not rendering, but only in Linux Gnome. In Windows 10, the radio buttons render correctly. The solution...

It seems like using `nixConfig` might work around this issue: ```nix nixConfig = { allow-import-from-derivation = "true"; # TODO doesn't work? }; ``` https://github.com/NixOS/nix/pull/4189 I see this done for example...

Hi, thanks for opening an issue, I'm sorry about the late response. I can’t reproduce your problem saving a notebook due to a permission error. Can you provide more information?...

This `function_component` from @fakuivan looks very nice https://github.com/fakuivan/py-fast-plotting/blob/master/ed_utils/misc.py

I've added a beta-version PyQtGraph Plot component https://github.com/pyedifice/pyedifice/blob/9d0b7bc717728b15be46a23f0d6ca3ce3df63d4b/edifice/components/pyqtgraph_plot.py with this example https://github.com/pyedifice/pyedifice/blob/9d0b7bc717728b15be46a23f0d6ca3ce3df63d4b/examples/example_pyqtgraph.py which renders like this ![image](https://github.com/pyedifice/pyedifice/assets/1526224/2396a23c-9ea9-486e-8797-f60566a5da50)

Note: we need more discussion of how to use asyncio in the docs https://pyedifice.github.io/

It might also make sense to change the `App.start()` function to take a loop argument. ```python def start(self, loop : AbstractEventLoop | None = None) ``` https://github.com/pyedifice/pyedifice/blob/39f499b271b1dae27eac26c8064eb89feed393c2/edifice/app.py#L255