Hakkin Lain

Results 46 comments of Hakkin Lain

Hi, Twitch finally killed what remained of their old API, forcing me to update to the GQL API. In the process, I added a few basic flags that can help...

>Could this script do something similar for multiple streamers? Yes, the script in `tools/record.sh` is already able to do this, you just pass multiple usernames to it and it will...

I believe you're thinking of webhooks, which are different than websockets, those indeed can be delayed by up to a few minutes. The websocket is Twitch's "PubSub" endpoint, which is...

A few questions: Did the whole recording fail for these streams, or just a select few segments? Can you find associated VODs for them on Twitch? How long of a...

This seems to be caused by an (undocumented?) feature that's enabled by default that supports restoring *into* zip, tar and tar.gz files. The code for this is here: https://github.com/kopia/kopia/blob/6902738e0dede91183b842efc72a2b08267f29dc/cli/command_restore.go#L305-L327 It...

Doesn't work for me on Linux or Windows. I seem to get a bot protection captcha that breaks the script. ```console $ streamlink --webbrowser-executable "C:\Program Files\Google\Chrome\Application\chrome.exe" -l debug https://www.bloomberg.com/live best...

Something additional to note, there is a similar check going on here in the NewEntry function: https://github.com/kopia/kopia/blob/fcb8197f3f0773d70ad202c195c6ce88fcb01c2d/fs/localfs/local_fs_os.go#L112-L128 I wonder if it would be useful to change this to use the...

Thanks for the extra info. > \\?\GLOBALROOT\Device\HarddiskVolumeShadowCopyXX represents a symbolic link within the Windows Object namespace (\\GLOBALROOT folder) pointing to \Device\HarddiskVolumeShadowCopyXX (which is a device and nothing within \\GLOBALROOT folder)....

I ended up reading a lot about Windows path handling, [this article](https://learn.microsoft.com/en-us/windows/win32/fileio/naming-a-file) seems to contain a lot of the relevant information. I believe the fundamental issue here is that Windows...

Regarding the test coverage, should I add a test that covers this case? I think I could just mostly copy https://github.com/kopia/kopia/blob/master/tests/os_snapshot_test/os_snapshot_windows_test.go but enable `enable-volume-shadow-copy=always` and set it to snapshot the...