Not complete without the sounds
- 0 Posts
- 100 Comments
RustyNova@lemmy.worldto Programmer Humor@programming.dev•No, we have SRE at home... SRE at home:22·23 days agoPersonally I don’t like unit tests. I’d rather have debug asserts and larger scope tests.
But using unit tests as debugging is near too
RustyNova@lemmy.worldto Programmer Humor@programming.dev•No, we have SRE at home... SRE at home:40·23 days agoIgnoring the AI stuff, I don’t even get the joke.
RustyNova@lemmy.worldto Science Memes@mander.xyz•If you can't make it yourself, store bought is fineEnglish182·25 days agoSigma balls
True. Doesn’t solve the other issue tho. Heck, I work on rust a lot, and rustrover is free
NGL I’d use jetbrainz products more if they weren’t that pricey and more portable
RustyNova@lemmy.worldto Science Memes@mander.xyz•Pictures of Animals Getting CT Scans Against their Will: A ThreadEnglish21·2 months agoThere’s definitely two kinds
- Ima napping
- You think this is funny? This cell won’t hold me forever. And once I’m free, you will all regret it
Big “don’t help just film” vibes here
That’s a pretty great coincidence. Upright you’re an astronaut, but flip and you’re the agent of the devil
RustyNova@lemmy.worldto Programmer Humor@programming.dev•Inspired by ICastFist I remade an AI slop meme in 40 mins in blender21·3 months agoWait that’s AI!? I thought it was a random edited image from the internet
RustyNova@lemmy.worldto Programmer Humor@programming.dev•Inspired by ICastFist I remade an AI slop meme in 40 mins in blender81·3 months agoWhat is the original? I didn’t saw any ai slop on my feed
BTW you need more lights ;)
And of course the ai put rail signals in the middle.
Chain in, rail out. Always
!Factorio/Create mod reference if anyone is interested !<
I believe science. But that doesn’t stop me from not listening to it
Oh really?
Then let’s accelerate climate change. I won’t let those green fuckers win
Good and bad use-cases for floats
Floats can be used everywhere where it doesn’t matter that you can’t store a 100% accurate base ten representations. For example positions and speeds in 3D games and animations, “analog” values like temperatures, speed of a vehicle, geo positions with longitude and latitude, a persons weight or heart pressure. In fact if you develop games there is no way around 32 bit floats because GPUs are f32 number crunching beasts. Modern 3D games wouldn’t be possible without all those fast f32 calculations.
You shouldn’t use binary floats if you need or expect accurate base ten calculations (addition, subtraction, multiplication, - note that divisions also introduce errors quickly in decimal types) and for dimensions that have a smallest unit that can’t be broken down, for example like money. If you need to handle money just store the amount of cents as integers and only divide by 100 in your display function.
This is exactly my point. Don’t use floats when you need to get accurate stuff, but use it when you need a “feel” for it
Forgot the attachment?