Jan Kaifer

Results 42 comments of Jan Kaifer

I am trying to upload a 700MB file, and after 2 mins I get `413 Request Entity Too Large`. Probably different cause but same issue. Sorry, that error was thrown...

Could duplicate of #160 But using `master` doens't resolve the issue.

Well, I installed it today for my python 2.7 successfully. But when I tried to import asyncio I got: ``` Traceback (most recent call last): File "", line 1, in...

> What I've yet to look at is setting up a proper chromecast app, because I'm stingy and don't want to pay the $5 chromecast dev fee 🤣. If the...

I dug into the chromecast documentation and custom apps work like this: - You register your app and specify the url which should be used - When someone tries to...

Cool [pychromecast](https://github.com/home-assistant-libs/pychromecast) allows you to: 1. get all chromecasts on the network: ```python chromecasts, browser = pychromecast.get_chromecasts() ``` 2. start your custom receiver on a particular Chromecast: ```python chromecast.start_app(APP_ID) ```...

Thanks, that's helpful context. So far I was playing via `` and `` and that worked fine. I'll see about snapcast webclient. Do you have a repo somewhere with things...

It works 🚀🚀. It stops playing after a minute, but while it plays, it plays well. What I did in my receiver was just to redirect to local snapcast webclient...

I figured out that the receiver needs to periodically call some API to tell google that it's alive and working as intended (otherwise it gets killed after a minute). My...

I did the following experiments: [repro](https://github.com/JanKaifer/next-repro-40719/blob/d88d259e7df7d2c0c7969aafdbe267bbbea8b5d8/pages/index.tsx#L5-L9) Very basic `scrollTo(0)` on one long empty page. No `scroll-behavior` in css. These are smooth: ```js document.documentElement.style.scrollBehavior = "smooth" await sleep(0); document.documentElement.style.scrollBehavior = "auto"...