Lukas Kalbertodt
Lukas Kalbertodt
Thanks for the example! Seems like a useful feature to me. Is probably related to #14. I will dig into this in the future, trying to come up with a...
Just for clarification: feel free to ignore my previous comments, it might be harder than I think and I really don't know a lot about this part of Opencast. I...
For the API I wouldn't even mind having `event_id` conditional and having different fields for different `type`s. Should we add more event data in the future, that's inevitable as we...
I'm afraid that this has reached stable with 1.78. I couldn't reproduce it with the minimal example in the previous comment, but a crate of mine now fails on stable,...
I managed to minimize the example from `lina`: ```rs use bytemuck::Pod; // 1.15.0 struct NPlusOneArray([T; N], T); impl AsRef for NPlusOneArray where [T]: Pod, { fn as_ref(&self) -> &[T] {...
Hi! I responded in the [users forum thread](https://users.rust-lang.org/t/introducing-colored-the-most-simple-way-to-add-colors-in-your-term/4968). I think spreading the discussion across GitHub isn't a good idea when talking about something like this ;)
Penguin should already be able to deal with that: https://github.com/LukasKalbertodt/penguin/blob/406fde018f00280e986166b8ae4b34b2d18d6f7a/lib/src/serve/proxy.rs#L406-L440 The code also looks like the "failed to connect to proxy target" page is served, but another "reload" command is...
Well, thanks for providing the build pack :wink: For my application, I have a build script which compiles assets (e.g. compiling `.less` files to `.css`). Currently I test `env::var("PROFILE")` [in...
> It feels gross to explicitly mention a specific framework in the build pack. Is there maybe another way to tackle this issue? I agree. Maybe the user could specify...
> we could just export variables using the `export_env_dir` script But who decides what to export? In other words: who sets the `whitelist` and `blacklist` variables in the script? 1....