Sebastian Vollnhals

Results 30 comments of Sebastian Vollnhals

i had the same symptoms with ubuntu 20.04, nginx 1.17.10 built from the ubuntu-sources with nchan 1.2.7.

you can debug egl with setting `EGL_LOG_LEVEL=debug`in your environment. in my case egl wanted to use gbm for whatever reason, but i could convince it by explicitly setting `EGL_PLATFORM=x11` in...

similar thing here: ``` Enabling Shapely speedups. Traceback (most recent call last): File "/usr/local/bin/imposm", line 9, in load_entry_point('imposm==2.5.0', 'console_scripts', 'imposm')() File "/usr/local/Cellar/python/2.7.6_1/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pkg_resources.py", line 351, in load_entry_point return get_distribution(dist).load_entry_point(group, name) File...

I don't unerstand exactly how this has worked before (the `Permalink` component never set `rel="me"` as far as i can tell), but it did. ![Bildschirmfoto 2022-11-29 um 11 00 37](https://user-images.githubusercontent.com/152031/204498832-96436a3d-2ac4-4673-bbcf-255871463106.png)...

> Verification takes time, it's not re-tried immediately. If you have changed your link I think it will light up eventually. this is not "it does not work immediately and...

Bitte keine Zip-Dateien, sondern ein Stream-Entpackbares Format wie `gzip`, `lzma` oder `brotli` benutzen, wie [hier bereits vor einem halben Jahr vorgeschlagen](https://github.com/robert-koch-institut/SARS-CoV-2-Infektionen_in_Deutschland/issues/2). Zip-Dateien müssen zur Dekomprimierung vollständig in den Speicher geladen...

Kurze Nachfrage: Passiert das perspektivisch auch für das Repository [SARS-CoV-2-Infektionen_in_Deutschland](https://github.com/robert-koch-institut/SARS-CoV-2-Infektionen_in_Deutschland)?

Das ist schade, denn (im Idealfall komprimierte) Rohdaten in simplen, wohlefinierten Formaten ohne API-Overhead sind für uns am einfachsten zu handhaben. Für das [CSV](https://github.com/robert-koch-institut/SARS-CoV-2-Infektionen_in_Deutschland/blob/main/Aktuell_Deutschland_SarsCov2_Infektionen.csv) benötigt meine Software etwa 30 Sekunden,...

@sebamarynissen you could do this in one line: ``` js const debug = (await import("debug")).default("namespace"); ```

http headers are expected to be ISO-8859-1. the server sends the location header in utf-8, the http module interprets it as latin1 and we end up with mojibake. most browsers...