sorted by: new top controversial old
[-] mbtrhcs@feddit.org 1 points 1 week ago

Not to mention the law firm they hired advertises anti-union action, so that should tell you whether they can be trusted to be fair to workers..

[-] mbtrhcs@feddit.org 4 points 1 week ago

Well yes, I was simplifying because I wanted to address the main (incorrect) criticism by @spartanatreyu@programming.dev. I agree with your comment

[-] mbtrhcs@feddit.org 3 points 1 week ago

Yeah, in Java calling first() on a stream is the same as an early return in a for-loop, where for each element all of the previous stream operations are applied first.

So the stream operation

cars.stream()
    .filter(c -> c.year() < 1977)
    .first()

is equivalent to doing the following imperatively

for (var car : cars) {
    if (car.year() < 1977) return car;
}

Not to mention Kotlin actually supports non-local returns in lambdas under specific circumstances, which allows for even more circumstances to be expressed with functional chaining.

[-] mbtrhcs@feddit.org 8 points 1 week ago

..what? At least with Java Streams or Kotlin Sequences, they absolutely abort early with something like .filter().first().

[-] mbtrhcs@feddit.org 5 points 2 weeks ago

This is a decent explanation of gradient descent but I'm pretty sure the meme is referencing the color gradients often used to highlight when something is AI generated haha

[-] mbtrhcs@feddit.org 46 points 2 weeks ago

is that the one that says "fuck the color blind" because if so hey!! that's not nice

[-] mbtrhcs@feddit.org 15 points 3 weeks ago* (last edited 3 weeks ago)

IntelliJ finds most uses in my experience unless you're doing something weird with reflection or similar. And if it's a public facing API only used by the library's consumers..– it should be used in tests at the very least! Especially if it's prone to regressions like the comment suggests

[-] mbtrhcs@feddit.org 4 points 3 weeks ago

If you read the linked article you will find that exterior cameras feeds are plenty invasive enough.

[-] mbtrhcs@feddit.org 3 points 3 weeks ago

I don't think they have interior cameras (although other manufacturers do), but the front and backup camera feeds provide plenty of information as well.

Then there's also this, if you need any more reason to be concerned.

[-] mbtrhcs@feddit.org 77 points 3 weeks ago
[-] mbtrhcs@feddit.org 36 points 3 weeks ago

Their privacy policy includes a provision that they can use the cameras and GPS to infer things such as sexual orientation, so yeah.

[-] mbtrhcs@feddit.org 2 points 3 weeks ago

Windows Recall, the screengrabber they were about to release with an unencrypted database as an opt-out feature.

view more: next ›

mbtrhcs

joined 1 month ago