Philipp D. Czernitzki

Results 10 comments of Philipp D. Czernitzki

I think, I have the same error, can't play any streams on my iPad 15.6.1. Web inspector shows error when loading .ts files

when I am logged in on iPad, any recording / video on demand does not work. Only livestreams work when logged in on iPad. For example when trying to watch...

Right now I use iPadOs 16.1, but I have the same issue since September 12th, where I used 15.6.1. It didn’t work on 15.7 too. I am using iPad Pro...

Thank you for your answer! 👍 I have moved to SCSS for theming as you mentioned. Let's see what the future will bring.

As of 2018 [styled-components](https://github.com/styled-components/styled-components) seem to establish as a clear winner, when it comes to CSS in JavaScript. (14000 stars compared to 4000 for Aphrodite) Is Airbnb considering it or...

solved it with pnpm add `.npmrc` with `hoist-pattern[]=!@graphql-mesh/cli` in your workspace where you use `graphql-mesh` you can define workspaces at the root in a `pnpm-workspace.yaml` with ```yaml packages: - 'packages/*'...

I'd love to see Copilot Chat soon, loving my first minutes with Zed

> This is what I came up with, maybe it will be useful to future readers of this thread: > > ```go > // getBulkInsertSQL is a helper function to...

```python def get_course(course_name) -> Course or None: for course_div in _get_course_divs(): meta = course_div.find('h3').find('a').find('span') if not meta or not meta.text.startswith("(WiSe 2023/2024"): continue; ``` something like that should work