Lukas Kahwe Smith

Results 397 comments of Lukas Kahwe Smith

FYI I got it to work ``` GRAPPELLI_INDEX_DASHBOARD = { "django.contrib.admin.site": "rules.dashboard.CustomIndexDashboard", "word_lists.public_admin.public_admin": "word_lists.dashboard.CustomIndexDashboard", } ``` My public site sits in `word_lists/public_admin/py`.

@lawrence-pressinnov did you ever get Flair working on TorchServe?

it seems like it now does this based on the IP address: https://github.com/PostHog/posthog/blob/master/posthog/utils.py#L1111 but it would be useful to also support explicit choice (f.e. for remote teams) but more importantly...

this is now supported as a project setting: https://posthog.com/changelog/2023#customize-whether-weeks-start-on-monday-or-sunday I would have prefered if it would be supported on an insight level.

so looks like HogQL might hold the answer for some use cases at least https://posthogusers.slack.com/archives/C01GLBKHKQT/p1695315958472839?thread_ts=1695315945.437619&channel=C01GLBKHKQT&message_ts=1695315958.472839 > Yes, you can change the settings to break down your data by weeks starting...

that would be amazing. I was planning to try out this project. We are currently using https://github.com/gambolputty/german-nouns but are hoping to find a single library that can handle nouns, verbs...

FYI our use case is our inclusive writing assistant https://www.witty.works/ and we are looking for ways to make our alternatives grammatically correct. so we will need to align the word(s)...

exactly. thank you so much for your work

another wrinkle is `sicherzustellen` which has the spacy lemma `sicherstellen`. so if we have an alternative `umsetzen` we need to transform this to `umzustellen` or an alternative `bewirken` needs to...

Thank you. As noted it is not too hard to detect that the source word `sicherzustellen` and with the spacy lemma `sicherstellen` has a `zu` injected. The hard part is...