Johannes Filter

Results 70 comments of Johannes Filter

If you have problems with the missing `DATABASE_URL`, add this to `devcontainer.json` ``` { ... // set ENV variables such as DATABASE_URL "postCreateCommand": "echo 'source /entrypoint' >> ~/.bashrc", } ```...

A hotfix for now, overriding [`get_export_queryset`](https://django-import-export.readthedocs.io/en/latest/api_admin.html#import_export.admin.ExportMixin.get_export_queryset): ```python def get_export_queryset(self, request): return ( super(YourModelAdmin, self) .get_export_queryset(request) .select_related() ) ```

If I replace `https://schnack.exam.tld/client.js` with `https://schnack.exam.tld/embed.js` I receive the following error: ```js schnack script tag needs some data attributes ```

My approach: Use the `onLayout` event to get the heights of the items (and other Views), save them to state and calculate scroll offset based on them. https://facebook.github.io/react-native/docs/view.html#onlayout

Tesseract supports Russian, but afaik, there is no Russian language model for [Flair](https://github.com/flairNLP/flair). So I guess this may take while until pd3f can support Russian. :/

Hey Alexander, I'm unfortunately very busy until March. I'm also not satisfied of the column detection and will improve it.

Hey Malte, we at http://fragdenstaat.de would like to use this module to `scan` documents via the smartphone camera. Currently, our users receive a lot of official postal responses (A4) and...

Hey Michael, does this example work for you? https://github.com/jfilter/react-native-onboarding-swiper/blob/master/examples/WithCTA.js

What happens when you set `bottomBarHighlight` to `false`?