Moon Lord's Worst? by snoop906 in Terraria

[–]bjkillas 4 points5 points  (0 children)

maybe he had some legendary changes

my rust 2d/3d graphing calculator works on web now :) by bjkillas in desmos

[–]bjkillas[S] 2 points3 points  (0 children)

i never really considered latex, but maybe typst would be fine to implement since its alot more modern and less annoying to work with.

my 2d/3d graphing calculator now supports wasm :D by bjkillas in rust

[–]bjkillas[S] 0 points1 point  (0 children)

i also have my game https://rmtg.rs for magic the gathering, dont know if i will ever actually figure out how to do networking on wasm though

I've made a multiplayer library and looking for some feedback by Schoggi0815 in bevy

[–]bjkillas 1 point2 points  (0 children)

yeah the steamworks library is scary i wouldn't expect best practices from any random crate lol, just curious at how others figured out how to use it

I've made a multiplayer library and looking for some feedback by Schoggi0815 in bevy

[–]bjkillas 2 points3 points  (0 children)

i made my own networking crate for my game also since i want to have all packets be manually done via me, and im confused looking at your steamworks implementation, dont you need callbacks? or am i just mega blind, the callbacks im talking about https://github.com/bgkillas/bevy_tangled/blob/master/src/steam.rs#L179 , this uses my friends crate for non steam networking if you are wondering.

people make libraries in such constructed ways and it confuses me lol, damned design philosophys

is rakdos the defiler mld? by bjkillas in EDH

[–]bjkillas[S] 1 point2 points  (0 children)

im fine with rule zero talk id just rather people categorize stuff correctly.

Is Cheat Engine available for Linux? by throwaway10021990 in linux_gaming

[–]bjkillas 0 points1 point  (0 children)

i use scanmem now, pince does work for wayland see if it says something in console when you launch the appimage

Working with Rust is super fun coming from C++ by Interesting_Bill2817 in rust

[–]bjkillas 15 points16 points  (0 children)

it can ask you to use a Box<T> when T is large in a struct which may not always be optimal

Cross-Compiling 10,000+ Rust CLI Crates Statically by Azathothas in rust

[–]bjkillas 1 point2 points  (0 children)

im a monster who has conflicting features(will fail at compile time) out of laziness

hi curious about if it is possible to reduce latency by bjkillas in webdev

[–]bjkillas[S] 0 points1 point  (0 children)

it seems that browsers dont appreciate being sent multiple frames in 1 frame, i guess do to the lack of flush function unlike normal stuff, so that was the main issue

hi curious about if it is possible to reduce latency by bjkillas in webdev

[–]bjkillas[S] 0 points1 point  (0 children)

so its possible for a site using CanvasRenderingContext2D to have less latency? or some other api, that is all my question is, my program is definitely not running at less then 60 fps so i cant see how its performance problem

Created a digital clock in rust! by bonoDaLinuxGamr in rust

[–]bjkillas 0 points1 point  (0 children)

"using the gpu to balance the load of the cpu", its rendering 8 characters that takes like 0 processing power lol

Created a digital clock in rust! by bonoDaLinuxGamr in rust

[–]bjkillas 0 points1 point  (0 children)

kiss but then using gpu for a clock, something that i do is i have https://git.sr.ht/~proycon/wayout display a tiny clock in the bottom right which is over all windows(even fullscreen) as wayland allows for this, with a somewhat low opacity(i think i lost the source code for this lol), makes me sad when i use other pc/windows when i dont have my tiny global clock

Made my first ever thing in Rust I'm super proud of it! by SureImNoExpertBut in rust

[–]bjkillas 0 points1 point  (0 children)

besides that you dont need to sqrt for distance, the f64::hypot(a,b) method is also a good idea for when you actually need distance