HackerTrans
TopNewTrendsCommentsPastAskShowJobs

schlarpc

no profile record

comments

schlarpc
·há 10 meses·discuss
Doesn’t work for livestreams as far as I know. There’s an open PR: https://github.com/yt-dlp/yt-dlp/pull/6498
schlarpc
·há 11 meses·discuss
Interesting that it can’t reestablish the connection, as the application level protocol should support it just fine. The client should notice the GRE (game rules engine) TCP socket is broken, and reset everything. When you reconnect, the front door service should notify you to a GRE session still in progress, and the client should be able to rejoin that. At least, that’s how it works on desktop.
schlarpc
·ano passado·discuss
And thankfully you won’t be looking at it much longer
schlarpc
·ano passado·discuss
Just wanted to say thanks for nix2container. I’ve been using it to do some deploys to AWS (ECR) and my iteration time between builds is down to single digit seconds.
schlarpc
·há 2 anos·discuss
Thanks for the link, I've got a bunch of hacky code for running Immich's compose under Nix that this might be able to replace.
schlarpc
·há 3 anos·discuss
I have a similar display, and also use blue noise dithering. Mine is driven in the backend by a web browser, which means I was able to abuse CSS and mix-blend-mode to do the dithering for me:

  ha-card::after {
    content: "";
    background-image: url(/local/visionect-dither.png);
    background-repeat: repeat;
    position: absolute;
    height: 100%;
    width: 100%;
    display: block;
    mix-blend-mode: multiply;
  }
The dithering texture used is 128_128/LDR_LLL1_10.png from https://github.com/Calinou/free-blue-noise-textures
schlarpc
·há 3 anos·discuss
Whoa, .alt is finally a proposed standard with a real RFC number. Really happy about this, it's sorely needed in some spaces.
schlarpc
·há 8 anos·discuss
The Chrome update only bumped to 3.25.3, so it's likely a commit between 3.24.0 and 3.25.3:

https://chromium.googlesource.com/chromium/src/+/c368e30ae55...