We would if we could afford to
phlegmy
TIL: Lemmy doesn’t know what /s means
Eb Games and Kmart are both huge in Australia
That makes two of us :)
That guy’s seriously talented!
Among the things he’s made, he’s also made some really nice, easy to understand, high-speed compression formats (QOI/QOA), as well as a public domain mpeg decoder.
I’ve used all three for various projects and I’d highly recommend that most software developers check them out. If only for the learning experience.
Oh, I get you.
Sorry, I’m not American, so I’ve never heard people call them that.
Where I live, ‘truck’ is exclusively used for the vehicles used with logistics or heavy machinery.
Totally understand what you mean now, and yeah fuck those guys lol.
Who uses a truck for that?
Edit: I guess truck drivers who don’t own a car might, but surely that’s less than 1% of the road users?
I feel like I’m out of the loop on this one.
You don’t consider delivery/logistics to be working, and you expect supermarkets to receive their stock from a fleet of cars/vans?
And you don’t need a different license to drive trucks where you live?
Probably because it’s only four bytes of data, and counting/extracting bits takes more cpu time than one AND operation.
Most CPU’s are optimised to work with whole integers (32/64 bit) rather than individual bits.
If memory was a serious concern you could compress it down to one byte as a ‘number of 1s’ counter at the cost of additional cpu operations, but because 3 extra bytes is such a small amount of data, this memory/time trade off isn’t worth it in most systems.
It’d be useful if you wanted to compress some data logs or something with many subnet masks though.