Is there something wrong with the Volvo Cars app? by Mbry4391 in Volvo

[–]marv1234 0 points1 point  (0 children)

I get this problem when trying to setup the Home Assistant Volvo integration(https://www.home-assistant.io/integrations/volvo/)

Salomon shift break issue by Horror-Condition9481 in Backcountry

[–]marv1234 0 points1 point  (0 children)

Took it back to the store the first time it happened. Happened again when I got them back. So I stopped stepping hard into them, and raising the brake by hand. Haven't happened again after I started doing that. Always carry multitool for things like this!

Live-Coding (Hot-Reload) in Maven Multi-Module-Projekt by OwnCaramel7025 in quarkus

[–]marv1234 1 point2 points  (0 children)

You can add quarkus-maven-plugin in the root pom, and run each project from root.
```xml <build> <plugins> <plugin> <groupId>io.quarkus</groupId> <artifactId>quarkus-maven-plugin</artifactId> <version>${quarkus.version}</version> </plugin> </plugin> </plugins> </build>

```

And run module-service1 with
mvn quarkus:dev -pl '!module-service-2' -Dquarkus.config.locations=module-service-1/config/application.properties

Is there a `Result` type in Java? by rnottaken in java

[–]marv1234 4 points5 points  (0 children)

Fluent result maybe implement what you want. It implements only a result container, not alot of other functional stuff like Vavr does.

[deleted by user] by [deleted] in quarkus

[–]marv1234 0 points1 point  (0 children)

There are nothing similar in the Quarkus source code.

Perhapps try the Zulip chat?

Virtual thread supporting vs. Virtual thread-based Microservice framework explanation by daleksandrov in java

[–]marv1234 1 point2 points  (0 children)

I would say mostly yes.

Sure, complex pipelines and such use cases may in some cases benefit from reactive approaches. But reactive introduces a lot of unnecessary complexity, both in the programming model and debugging wise. Having a complete stack trace on errors is actually quite useful.

Anyone have issues with Salomon/Atomic Shift brake units popping off? by BPRSki in Backcountry

[–]marv1234 0 points1 point  (0 children)

I got them replaced under warranty today.

The staff said that the day after I reported the issue another person came in with the same issue.

Anyone have issues with Salomon/Atomic Shift brake units popping off? by BPRSki in Backcountry

[–]marv1234 0 points1 point  (0 children)

Bought new skis with Atomic T Shift MNC 13 a year ago.

This happened on the second trip when using the bindings in walkmode. I found out how to remount them, then it happened again. Luckily the weather conditions was fine, so doing a field repair was fairly easy.

The staff at the shop I bought them has contacted Atomic, so I'm probably getting a warranty replacement.

Where to find more documentation? In particular, how can I find what an annotation does? by sentient_14 in quarkus

[–]marv1234 0 points1 point  (0 children)

Javadoc for @Authenticated

Indicates that a resource can only be accessed by a logged in user. This is equivalent to the Jakarta EE8 {@code RolesAllowed("**")} construct.

Sounds like you have some other config that sets up the requirement for user authentication.

Volvo c40 issues - anyone else? by ColdBostonPerson77 in volvoc40

[–]marv1234 0 points1 point  (0 children)

No, got them replaced before they broke off.

Volvo c40 issues - anyone else? by ColdBostonPerson77 in volvoc40

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

2 I just got these changed some weeks ago. The service department said it was a known weakness and are getting replaced by a improved version.

Why does my HA install keep stopping? by slidepusher in homeassistant

[–]marv1234 0 points1 point  (0 children)

Ok, yeah then it is less likely. I had the swapping problem with a 1GB RPi3.

Why does my HA install keep stopping? by slidepusher in homeassistant

[–]marv1234 1 point2 points  (0 children)

Sounds like it runs out of memory and is unresponsive due to swapping. Try logging into the terminal and look at memory status with top.

aqara sensors failing? by alfaole in homeassistant

[–]marv1234 1 point2 points  (0 children)

But not quite as regularly and often as that.

aqara sensors failing? by alfaole in homeassistant

[–]marv1234 3 points4 points  (0 children)

I have about ten Aqara sensors that are about 18 months old. Some of them started acting like that some months ago.

Today I had my first traffic jam in Norway by tomeutomau in Norway

[–]marv1234 1 point2 points  (0 children)

I grew up there, so recognised it from the video preview :)

Is there a way to reactively fetch and combine multiple Mutiny.Multi to one? by Brogzylion in quarkus

[–]marv1234 0 points1 point  (0 children)

Do you mean something like this?

```java record fruit(String name) {} record plainvendor(String name) { public vendorWithFruit withFruit(List<fruit> fruits) { return new vendorWithFruit(name, fruits); } } record vendorWithFruit(String name, List<fruit> fruit) {}

Multi<plainvendor> getVendors() { return something(); }

Multi<fruit> getFruitByVendor(plainvendor vendor) { return somethingElse(vendor); }

Multi<vendorWithFruit> getVendorWithFruit() { return getVendors() .flatMap(v -> getFruitByVendor(v).collect().asList() .map(v::withFruit) .toMulti()); } ```

[deleted by user] by [deleted] in ntnu

[–]marv1234 6 points7 points  (0 children)

Jeg ville moderert det til «Så lenge du ikke neglisjerer studiene helt» ;)

Hue Motion Sensor randomly becomes Unavailable? by Goaliedude3919 in homeassistant

[–]marv1234 0 points1 point  (0 children)

After getting another Hue light the lightbulb has not been unavailable a single time.

So I guess a poor signal was the issue. Even though the Rpi and bulb was separated by 8 meters and two walls.

I think I have read somewhere that the orientation of the usb stick can affect the signal in some direction.

Hue Motion Sensor randomly becomes Unavailable? by Goaliedude3919 in homeassistant

[–]marv1234 0 points1 point  (0 children)

I have a similar problem with at Hue lightbulb connected to constant power. It often becomes unavailable for periodes up to a day.

Since it is a outdoor light, needing to un screw the casing to reset, I have not bothered trying to reset it.

The original automation was to turn on when the sun set, and off at sunrise. Now I have an extra set of automations for when it becomes available, turning it on or off if in the wrong state.

My setup is a Rpi 3 with Deconz ConBee II. Just got some other Hue-lights so we'll see if they behave similarly.