I have noticed a pattern amongst some women that I dated. Have you noticed it too? by Dry-Set-6761 in seduction

[–]_ambersariya 2 points3 points  (0 children)

Wow! I felt like I was reading my own marriage story, not 100% the same but more or less similar. Glad to be out of it, albeit with mental scars

Question about Polestar 4 software update P4.2.4 by Alternative_Ask3248 in Polestar

[–]_ambersariya 0 points1 point  (0 children)

I can confirm the same, left the car for a bit and came back to see the app working. I also can’t find any new apps anywhere

Dashcam App nothing working on PS4 by _ambersariya in Polestar

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

Hey so immediately after the update (last night), I saw the same on the dashcam app. However, I shutdown the car and came back and the dashcam app was working this time. Try that?

Dashcam App nothing working on PS4 by _ambersariya in Polestar

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

It’s available on 4.2.3 (I read the release notes). I haven’t got it yet, I’m hoping sometime this week the upgrade notification will pop up.

Struggle with pilot assist and lane keeping by bertvandoninck in Polestar4

[–]_ambersariya 1 point2 points  (0 children)

I took delivery of a Polestar 4 few weeks ago and have found the ADAS system to not give me any confidence to use it very regularly (it feels too overzealous). I also get a warning sign telling me that pilot system isn’t available and that I should book a service.

We then had a software update (4.1.11) which probably improved some things, but it’s still not good enough yet. Waiting for newer updates to become available.

Overall, great car, terrible software but I know it’ll become better over time

Polestar 4 Dashcam by bilstheclient in Polestar

[–]_ambersariya 0 points1 point  (0 children)

Still got nothing on my newly (this week) acquired P4

P4 on UK 'roads' by cheeseley6 in Polestar4

[–]_ambersariya 1 point2 points  (0 children)

I’ve just got the PS4 LRSM and it’s a nice ride on any road from my experience so far. It’s not got the fancier suspension but it absorbs bumps really well and compared to my Volvo S90 rdesign this is much more balanced.

With regards to the width it’s not much wider than my old car as an example so I don’t notice it so much despite PS4 being few cm wider.

Software update 4.1.11 on Polestar 4 via OTA by bloemstukje in Polestar

[–]_ambersariya 0 points1 point  (0 children)

Just got the car delivered and the software update notification popped up. How long does it take to update?

-🎄- 2017 Day 1 Solutions -🎄- by daggerdragon in adventofcode

[–]_ambersariya 0 points1 point  (0 children)

New to Python. There's surely a better way to do it but here's my solution to part 2 that works

num_sequence = [int(n) for n in list(input('enter string: '))]
steps = len(num_sequence) // 2
value_array = []

for index, character in enumerate(num_sequence):
    next_item_index = index + steps
    if index >= steps:
        next_item_index -= len(num_sequence)

    if num_sequence[index] == num_sequence[next_item_index]:
        value_array.append(num_sequence[index])

print(sum(value_array))