hinz1

Results 8 comments of hinz1

Hello Jendrik. I didn't know there was a PPA, I'll switch to it asap. At the moment I use the off-the-shelf Ubuntu version. As for the startup log: there's a...

Ok, I switched to 2.32 from the PPA. The "Templates" button didn't crash my session (just a short freeze), but it didn't do anything either. stderr gave me this: ```...

The "Insert stuff" button didn't do anything either, the "Format" one finally dumped me to the login screen. Here's the stderr-Log: ``` /usr/share/rednotebook/rednotebook/util/filesystem.py:59: PyGIWarning: WebKit2 was imported without specifying a...

Nope. Everything's fine in Xorg. stderr now just says: ``` /usr/share/rednotebook/rednotebook/util/filesystem.py:59: PyGIWarning: WebKit2 was imported without specifying a version first. Use gi.require_version('WebKit2', '4.0') before import to ensure that the right...

It is (but not in Debian afaik...). I know some Python from the data analysis and bioinformatics side, but I never had anything to do with GUI development, so I'm...

Thanks, I'll have a look at it out of curiosity, mainly. Never did anything with GTK & friends but who knows, maybe I find something. ;)

On a new install of TLJH: Same here. ``` Refused to frame 'http://example.com/' because an ancestor violates the following Content Security Policy directive: "frame-ancestors 'none'". ```

This solved it for me: https://discourse.jupyter.org/t/content-security-policy-iframe-embeding-not-working-in-new-version/20194/5 Add this in your config file: ``` c.JupyterHub.tornado_settings = { "headers": { # "Content-Security-Policy": "frame-ancestors http://temporary1.cos.uni-heidelberg.de 'self' " 'Content-Security-Policy': "frame-ancestors *;" } } c.Spawner.args...