Simon Li
Simon Li
Set the default filesystem `lvm_lvfilesystem` variable to `xfs` in `roles/lvm-partition` At present there is no default (the role will fail if it's not defined) which means it shouldn't affect existing...
This will prevent users filling the root partition....
See feedback on https://forum.image.sc/t/enable-fpbioimage-in-omeroweb-docker/39361 Something like the equivalent of `-v ./web/50-config-extra-apps.omero:/opt/omero/web/config/50-config-extra-apps.omero` to provide an example of configuring the optional web apps.
Disable dependabot JupyterLab updates since it updates them one by one whereas it'd be nice to update them all in one go. In additional it'd be nice to update the...
https://github.com/manics/jupyter-offlinenotebook/pull/108 converts the Python package to include a bundled JupyterLab 3 extension that does not require a build step when it's installed. In order to get this to work there...
Follow-up from https://github.com/manics/jupyter-offlinenotebook/issues/18 > I think replacing the button to store the notebook with a periodic task (every 30s or so) that saves the current state to IndexedDB would be...
See https://dexie.org/docs/StorageManager > Even though IndexedDB is a fully functional client-side database for the web, it is not a persistent storage by default. IndexedDB without StorageManager is just a “best-effort”...
The InstanceRole for the CertificateNode in security/public_certs has administrative permissions: https://github.com/aws-samples/aws-hpc-recipes/blob/8410cf46b9bd4d3cbc04a75309fe5da1baf40d81/recipes/security/public_certs/assets/main.yaml#L100-L105 Presumably left-over from development?
```py conn = BlitzGateway(username=..., host=..., passwd=..., securet=True) print(type(conn.getSession())) print(type(conn.c.getSession())) ``` output: ``` ``` `conn.c.getSession()` behaves intuitively, e.g. you can call `conn.c.getSession().getQueryService()`. `conn.getSession()` doesn't.
Follow-up from https://github.com/ome/omero-grid-docker/pull/11#discussion_r555616375 Can we add an easy way to tell whether OMERO.server is ready to let people login, other than running `omero login` in a loop until it succeeds?...