mbtrhcs

joined 1 month ago
[–] mbtrhcs@feddit.org 14 points 1 week ago

I used to be principled like you, but this man has the potential to cause death and destruction on a scale so unfathomably larger than one person. Would I prefer he face justice? Absolutely. But at some point "not wishing death on someone" flies in the face of the greater good of humanity

[–] 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 15 points 1 week ago (1 children)

Imagine you have to choose a health insurance company to be insured with like you choose a credit card (Visa, Mastercard, etc). Many doctors (shops) only accept certain insurance providers (cards) due to fees and other regulations.

The problem described in this article is when your insurance lists doctors that you can go to that will accept your insurance, but most of them have gone out of business or actually don't accept your particular insurance anymore.

[–] 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 (2 children)

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 (7 children)

..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 19 points 2 weeks ago

In solchen Momenten bin ich wieder mal furchtbar dankbar für die DSGVO, die – wenn auch gerne mal absichtlich missverstanden – ein verhältnismäßig sehr solides Grundwerk zum Schutz unserer Daten vor genau solcher unternehmerischer Schikane geschaffen hat.

[–] mbtrhcs@feddit.org 46 points 2 weeks ago (3 children)

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) (1 children)

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 (2 children)

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 (4 children)

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.

12
submitted 1 month ago* (last edited 1 month ago) by mbtrhcs@feddit.org to c/main@feddit.org
 

Moin liebe Community,

ich habe es leider versäumt meine feddit.de Abonnements rechtzeitig irgendwo zu speichern. Da feddit.de jetzt offensichtlich endgültig weg ist, gibt es noch irgendeine Möglichkeit die Liste der Abonnements zu bekommen, die ich auf dem Account hatte?

Ich bin nicht allzu optimistisch, aber ich dachte vielleicht werden Abonnements ja auch irgendwo im Fediverse weitergetragen, deswegen frag ich trotzdem mal.

Danke für jede Hilfe :)

Edit: hier geht es noch, falls jemand anders die gleiche Frage hat :) danke @caos für den Tipp!

view more: next ›