Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)UR
urbeker @programming.dev
Posts 0
Comments 6
Release 24.07 · helix-editor/helix
  • I think the main mainters are very busy at the moment which is why a few big features got merged immediately after this release. They want some time to let them get tested by people on the edge as they didn't have time to iron everything out themselves.

  • It appears that DTolnay was involved in the downgrade of ThePHD's talk from Keynote
  • This whole thing is incredibly immature and seems to be blown up to an absurd degree.

    Did ThePHD unfairly have their hopes raised about giving a keynote speech? Sure. Was this done out of malice? After - for some reason - thousands of words of aired dirty laundry I can't see any indication it was. I can't see how hyper-analyzing everyone's testimonies and expecting people to have a perfect memory of things they never thought they would have to post-hoc justify helps anyone. Is it really reasonable to expect people that get into highly technical positions based on technical merit to also be perfect organisers and have flawless interpersonal skills?

    If there was some catalog of people being offered keynotes or other prestigious things and having them taken away due to spite I could see this being worth spending time over but as a one-off this all just seems absurd. Unless of course there was some key detail I've missed in the half-dozen blogs posts that makes everyone involved terrible people?

  • New to Rust: How does Rust handle dynamic libraries
  • OK so looking at that PR the reason you aren't getting any errors is because it looks like one of the dependencies is trying to load python and thats where the error occurs. Rust would normally give you a pretty good stack trace but because this is happening in external code it can't and you won't fix it in the av1an codebase. vscode likely has its path setup differently allowing it to find python. I would double check the paths inside the vscode terminal and wherever you are running it.

  • New to Rust: How does Rust handle dynamic libraries
  • Dynamic libs in rust are supported but only through a c abi and it's a bit complicated.

    Looking at av1an I couldn't see anything showing it is dynamicly loading anything, it looks to statically link to ffmpeg according to the build instructions.