Overloader
Overloader
I was a bit busy the last few Weeks and will try the branch out in a few days. Has to be noted though that the standard package delivered by...
Same for me, also using arch and openjdk 19, logs look pretty much the same
> Is your firewall allowing outgoing and incoming udp packets for ntrviewer-hr? I explicitely allowed udp port 8001 with iptables > * Disable Reliable Stream (setting it to off), I...
The iptable rules ``` ❯ sudo iptables -L -n | grep ":8001" ACCEPT udp -- 0.0.0.0/0 0.0.0.0/0 udp dpt:8001 ACCEPT udp -- 0.0.0.0/0 0.0.0.0/0 udp dpt:8001 ACCEPT udp -- 0.0.0.0/0...
Still, do you have any idea why that could be None and what lib I am missing?
Okay here comes the weird thing: I Just created a little test program ```rust fn main() { unsafe { let egl = dbg!(khronos_egl::DynamicInstance::::load_required()).unwrap(); dbg!(egl.get_display(khronos_egl::DEFAULT_DISPLAY)).unwrap(); } } ``` Which if I'm...
Since I just saw there are log statements, I quickly added env_logger ``` ❯ RUST_LOG="trace" target/debug/chip8-iced [2024-08-27T14:25:51Z DEBUG sctk] Bound new global [47] wl_output v4 [2024-08-27T14:25:51Z DEBUG sctk] Bound new...
Okay i did some more testing with the logging. I ran it via `steam-run` (a magic nixos tool that loads in libraries at runtime, but itsnt suited for packaging applications,...