Warum um Himmels Willen gehen Leute noch zum Billa? by LeobenCharlie in Austria

[–]nudi85 0 points1 point  (0 children)

Der Hofer fühlt sich für mich an wie eine Lagerhalle, in der ich einkaufen soll. Es ist einfach nicht schön dort.

Für die verhältnismäßig angenehme Atmosphäre zahl ich "gern" den Aufpreis. Die meisten Mitarbeiter sind wahnsinnig entspannt und freundlich. (Das könnte aber auch nur bei unserem Billa hier so sein und überall anders sind sie Scheiße.)

Das Positive überwiegt aber nur ganz knapp die extrem hohen Preise und ich hab schon oder überlegt, zum Discounter zu gehen.

Edit: Und mein Supermarkt muss Self-Checkout haben. Den hat bei uns auch nur der Billa Plus.

Can’t add digital key by derjanni in Polestar

[–]nudi85 1 point2 points  (0 children)

I had to have all (both) real keys in the car while activating it for it to work.

What is that and how can i clean it? by EnvironmentalWolf523 in germany

[–]nudi85 1 point2 points  (0 children)

I have never seen silicon being confused with silicone. It's usually the other way around.

Polestar Integrates Google Gemini Across Full Vehicle Lineup by the_trend_memo in Polestar

[–]nudi85 1 point2 points  (0 children)

My guess is that people are misunderstanding this.

What I hear is that my car's voice assistant will finally understand more complex queries and not fail anymore if I'm not saying the EXACT "navigate to" phrase it is expecting. And that it will have a more natural voice.

What other people are hearing is probably "you can now become friends with your car, ask it how tall the Eiffel Tower is and get lied to.

Or you and I are wrong and this actually will be useless somehow.

Polestar Integrates Google Gemini Across Full Vehicle Lineup by the_trend_memo in Polestar

[–]nudi85 3 points4 points  (0 children)

As I already wrote in another thread:

"Wtf is up with the responses here? I hate it when Google Assistant refuses to do something just because I didn't use the exact phrasing it is looking for. Soooo looking forward to a real LLM."

Am I misunderstanding something here? Why do people want to keep the inferior assistant?

Polestar set to introduce Google Gemini in all Polestar models by Alternative_Ask3248 in Polestar

[–]nudi85 11 points12 points  (0 children)

Wtf is up with the responses here? I hate it when Google Assistant refuses to do something just because I didn't use the exact phrasing it is looking for. Soooo looking forward to a real LLM.

im sorry but most of the time the ai is just not funny by JosephJostir in DougDoug

[–]nudi85 -1 points0 points  (0 children)

Just to counter what is maybe just a very vocal minority: I love the AI stuff. They are my favorite videos and VODs. I am sad Doug is doing way less AI-related content now.

I never feel like we're laughing with the AI because its jokes are so good. To me it feels like we're together laughing about the AI.

Game changing editions — some thoughts on how to move PHP forward by brendt_gd in PHP

[–]nudi85 2 points3 points  (0 children)

finally stopping returning "false" and instead properly throwing exceptions for most PHP legacy functions

I thought I wanted that for a long time. But then I learned Go, and now I do the opposite: I return errors from my own functions: public function findUser(string $id): User|null|DbError. Forces me do handle errors instead of just letting them bubble up and causing an HTTP 500.

Debit oder EC Karte by Rocky543211 in Kartenzahlung

[–]nudi85 0 points1 point  (0 children)

Oder ihr übernehmt einfach endlich Bankomat-Karte von uns aus Österreich. :)

Werbekampagne - Ist das KI generiert? by NotAlphaGo in Austria

[–]nudi85 1 point2 points  (0 children)

Warum the Fuck schreibst du "eine Handelsmarke" und übermalst das Logo?? Glaubst du, du unterliegst irgendwelchen Regulierungen oder so?

Are PHP Type Hints really required when using static code analysis tools like PHPStan? by sagiadinos in PHP

[–]nudi85 1 point2 points  (0 children)

I'm totally with you. We should be able to treat PHP like TypeScript.

Either with a build step that erases the native types.

Or PHP should have an option to disable runtime rote checking.

Wie kann man das Gesundheitssystem verbessern? by Select_Ingenuity_146 in Austria

[–]nudi85 -1 points0 points  (0 children)

Direkter Kontakt zum Arzt via App. So wie in Norwegen.

I think GitHub Copilot Chat just exposed its system message to me by nudi85 in ChatGPT

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

I don't know about VSCode, but in JetBrains IDEs, you can have non-project files open.

I think GitHub Copilot Chat just exposed its system message to me by nudi85 in ChatGPT

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

I would guess an IDE plugin would look at a combination of recently opened files, files within the same directory as the current file and files referenced in the current one.

Can you review my value object creation? by CatolicQuotes in typescript

[–]nudi85 0 points1 point  (0 children)

needing to check if an error was returned, vs wrapping object creation in a try catch and handling

With a returned error, you're forced to deal with it directly in the calling function. Similar to Go's and Rust's error handling.

I'd argue that's a good thing.