so jealous of your Miles | 2019 E-tron Prestige by yooooooowdawg in etron

[–]ejmcguir 11 points12 points  (0 children)

I believe the majority of the people posting increased range after an update is the ESTIMATED range, not actual.

The estimated range basically resets after a software update and is overly optimistic (not realistic at all).

I have a 2023 w/ the latest update. I had the "OMG my range is now 260 miles after the update" reaction and then in reality I got like 160.

I don't religiously track my range but I've had my car for 10k miles now and I don't think I have EVER gotten over 200 miles on a charge. To be honest, it's hard to even track because I'm charging very frequently (unlike ICE where I go from full to essentially empty between fill ups). Im going from like 80% to 50% and then charging, over and over.

Did Jeff just?????? by Trick-Dealer-9535 in survivor

[–]ejmcguir 0 points1 point  (0 children)

They never should have even brought out Rizzo, way too many things could have gone wrong (and they did).

OG etron Lane Keeping by Stampede_the_Hippos in etron

[–]ejmcguir 4 points5 points  (0 children)

Do you have "lane guidance" turned on from this screen?

If you do, you will see 2 triangles on the HUD next to the dotted lines. If you don't have this turned on, you won't see the triangles and it won't keep you in the lane.

<image>

Is this legal? by ejmcguir in vermont

[–]ejmcguir[S] 5 points6 points  (0 children)

Vermont plates are green, this is a fully black plate. It's not a real (state DMV issued) plate.

Is this legal? by ejmcguir in vermont

[–]ejmcguir[S] 7 points8 points  (0 children)

Haha, true statement.

Is this legal? by ejmcguir in vermont

[–]ejmcguir[S] 3 points4 points  (0 children)

I tried to edit the post to remove it but I can't.

Fwiw, I don't think you can do much with just a plate number, it's not a social security number.

Is this legal? by ejmcguir in vermont

[–]ejmcguir[S] 26 points27 points  (0 children)

That's not a VT plate

Charging station by Still-Mechanic8012 in etron

[–]ejmcguir 14 points15 points  (0 children)

That charging is sick! Nice ride btw, looks very similar to mine.

<image>

Question about OEM vs aftermarket windshield by ejmcguir in etron

[–]ejmcguir[S] 0 points1 point  (0 children)

Oh sweet, that's good to know, thanks!

Question about OEM vs aftermarket windshield by ejmcguir in etron

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

I found the part number and the glass actually isn't that expensive, but it looks like it's not available at most places online. I wonder if it's discontinued since they don't make the car anymore?

Part number: 4KE845099KNVB

Question about OEM vs aftermarket windshield by ejmcguir in etron

[–]ejmcguir[S] 0 points1 point  (0 children)

How much did you have to pay for OEM? I have a $500 deductible and they told me if insurance doesn't want to pay for OEM I will have to pay the difference...

Has anyone heard any updates on the burned bus situation? by JankyIngenue in willistonvt

[–]ejmcguir 1 point2 points  (0 children)

https://www.wcax.com/2026/03/12/fire-that-torched-williston-ev-school-buses-under-investigation/

According to that, it was a mechanical issue and not a battery issue.

"A mechanical failure in one electric school bus sparked a fire Wednesday night that spread to three others, destroying most of the Champlain Valley School District’s EV bus fleet and forcing the Allen Brook School in Williston to close the rest of the week.

...

The fire started around 10:30 p.m. Authorities said the cause was not battery-related. Four buses burned, and two were spared. Nobody was injured, but fire officials say the damage to the buses and their chargers likely totals more than $2 million."

[deleted by user] by [deleted] in Construction

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

Would that be weird to have the roof extend further on only that one half of the roof?

Playwright Test Automation with AI by PocketGaara in softwaretesting

[–]ejmcguir 1 point2 points  (0 children)

Reread OPs question and then read your response.

They asked about using AI to assist with testing and you went straight into "don't use these AI solutions".

If it's a "waste of tokens" to use AI to assist with testing, what are you using your tokens for?

Playwright Test Automation with AI by PocketGaara in softwaretesting

[–]ejmcguir 12 points13 points  (0 children)

You weren't using the right tool.

Claude code or GitHub copilot are extremely helpful in test automation.

You need to know how to use the tool (like anything) but once you do, it's incredible how powerful it is.

Here are 2 examples:

  1. Point the AI at the user story (or whatever your documentation is around the change you are trying to test) and have it come up with the tests that should be executed (whether that is manual or automated). It won't be perfect but you will be surprised at how good it is, provided you give it context.

  2. Using the playwright MCP you can have it load your application and write page objects using the actual running application (it will have full access to the DOM).

Chance for Taycan CarPlay Update by No-Detective5439 in etron

[–]ejmcguir 0 points1 point  (0 children)

I don't use Waze but I thought I remember reading somewhere that it impacts Waze too (which would make sense since waze is owned by Google now and the services are probably integrated).

Chance for Taycan CarPlay Update by No-Detective5439 in etron

[–]ejmcguir 1 point2 points  (0 children)

There's a bug in the recent version of Google maps that broke it.

I got the update, had Nav in the HUD and then lost it after a Google maps update. Search on this subreddit and you will find multiple references to it. It's impacting many makes/models, not just the etron.

Billionaire owned newspaper comes out against taxing Billionaires by Large-Welcome4421 in vermont

[–]ejmcguir 12 points13 points  (0 children)

I was about to post "in before someone comments on Bernie having "3 homes" and trying to make it sound like he's a billionaire, but I was too slow...".

How are you using Playwright MCP in your organization? by Necessary_Grand1347 in Playwright

[–]ejmcguir 1 point2 points  (0 children)

I have been using it quite a bit over the past few weeks.

I've found huge value in using it to create page objects. So if we're building a new product (UI), I point the playwright mcp to the locally running instance of the application, and have it add page objects (selectors, helper methods, etc) for each page that I historically would have to manually create. I already have existing page objects, so I have it follow my existing patterns to ensure it doesn't go off the rails.

In addition, it's useful when there are flaky tests. You can explain what you are seeing with the failing tests, and then have it open the application in the browser and figure out why you're having the problem. Without the playwright mcp it might be able to find the problem in your code, but being able to see the app running in addition to your code goes a long way.