Paul TO

Results 5 comments of Paul TO

Below is how I initialize, it is run in `OnCreate` of my `Application` class. ``` PushNotificationManager.DefaultNotificationChannelImportance = NotificationImportance.High; PushNotificationManager.Initialize(this, cats, resetToken, true, false); ``` The issue is that setting `DefaultNotificationChannelImportance`...

I don't think we should have one model that does all the things in all layers, it mixes all responsibilities and lead to questions above. While it looks duplicated, it...

I ran into this problem when running the Open Targets adapter. According to the docs, you simply need to double the character. ``` --quote= Character to treat as quotation character...

> There are some workarounds in this comment on the open-targets repo: [biocypher/open-targets#6 (comment)](https://github.com/biocypher/open-targets/issues/6#issuecomment-1980757689) I meant workarounds for users so only the first one counts. Tried it, got this: config...

After investigation, the issue comes from Git automatically converting line endings of all files in a repository from LF to CRLF when cloning in Windows environment. When pushing, line endings...