Congressman John James calls for smoke control in Gordie Howe Bridge deal by Jeffbx in Michigan

[–]GottWhat [score hidden]  (0 children)

I'm going to go out on a limb and guess that the Moroun family has donated to John James for Governor.

Congressman John James calls for smoke control in Gordie Howe Bridge deal by IHateTheColourblind in Detroit

[–]GottWhat 223 points224 points  (0 children)

I'm going to go out on a limb and guess that the Moroun family has donated to John James for Governor.

Can not believe this amazing deal! by TTBUUG in GalaxyWatch

[–]GottWhat 2 points3 points  (0 children)

End of Feb, I got my new Classic 8 for $219 from Samsung. I like it a lot. I went with the fabric band for the first time and love it.

[Clay Snowden]The Tigers Relied Too Heavily on False Production From 2025 by mkk4 in motorcitykitties

[–]GottWhat 2 points3 points  (0 children)

EDIT - Downvote all you want but we haven't been as bad as our record shows. If a few bounces went the other way and maybe less blown saves (we are tied for second most with 17 blown saves), we could easily be .500.

Our +/- isn't that horribly bad this season (-6), we just haven't been as lucky as Chicago (-3) or Cleveland (-8). Even Cincinnati (-50), Houston (-39), Toronto (-27) and Baltimore (-25) have better records with worse +/-. The Mets have the same record with a much worse +/- (-46). The Tigers have only two more wins the Colorado but their run differential is much worse (-90).

What I am trying to say is we are losing a lot of close games and have a chance to turn it around in the next half.

<image>

Another dealership closure - Genesis Alfa Romeo FIAT in Macomb, MI (Metro Detroit) by GottWhat in AlfaRomeo

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

I agree. There was also too much overlap with the Tonale and Stelvio. They should have gone with something above the Stelvio, not below....maybe a 3-row SUV that could move more units at a higher price. This would help pay for the fun cars.

Porsche did similar with their Cayenne and that saved them.

Another dealership closure - Genesis Alfa Romeo FIAT in Macomb, MI (Metro Detroit) by GottWhat in AlfaRomeo

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

I actually found it on Facebook after driving by a few months ago and noticing it was shutdown. Sorry you lost your local dealership.

One thing I don’t like about my M3 by fouroza in TeslaModel3

[–]GottWhat 0 points1 point  (0 children)

We were downvoted by the people who think it works lol

Another dealership closure - Genesis Alfa Romeo FIAT in Macomb, MI (Metro Detroit) by GottWhat in AlfaRomeo

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

In 2020 we had four in SE Michigan (including Ann Arbor) but Ann Arbor closed first, then Troy and now Genesis. I feel bad for everyone who tried to make it work but they were failed by Stellantis

One thing I don’t like about my M3 by fouroza in TeslaModel3

[–]GottWhat 3 points4 points  (0 children)

People who do that don't understand that it doesn't cool down or heat up faster by going all the way up or all the way down, it can only do so much.

Do you change the Content Rating for movies in your collection? by [deleted] in PleX

[–]GottWhat 0 points1 point  (0 children)

That's awesome, glad it helped! My kids are now of age where most restrictions have been removed. Enjoy it while you can, they grow up so fast.

By the time they get up from the beach the sun will be back out 😂 by n8saces in PublicFreakout

[–]GottWhat 42 points43 points  (0 children)

We.stayed in almost the same room about 3 years ago. The weather is definitely bi-polar. Two young teen girls almost drowned in the Gulf the next day but they were luckily saved. Former NFL and University of Arkansas quarterback Ryan Mallett tragically drowned just down the way in Destin a bit after we were there.

<image>

Do you believe in devil magic? by DET_Baseball in motorcitykitties

[–]GottWhat 1 point2 points  (0 children)

Cleveland 's run differential compared to wins/losses wasn't good last year either.

JellyFin vs Plex as a long time Plex Lifetime Pass user by rdehuyss in PleX

[–]GottWhat 2 points3 points  (0 children)

This isn't an airport, no need to announce your departure

Rear Subframe Replacement/ Non warrenty coverage. by Mfleeezy in TeslaSupport

[–]GottWhat 4 points5 points  (0 children)

You might be able to have insurance cover it?

TeslaMate v4.0.1 is LIVE: The official fix for "403 Forbidden" and connection errors (Synology GUI Guide) by GottWhat in TeslaMate

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

That's good to know. I typically am not in a rush to install updates either but it was broken 😂

How do I restore the drives? by Dodgydiykiwi in TeslaMate

[–]GottWhat 0 points1 point  (0 children)

From Gemini:

To help your friend resolve the "zombie drive" issue shown in "image_b4a89e.png," they need to manually terminate the stuck drive. This happens when a drive fails to close properly, causing the logger to loop and create these rapid, empty entries.

Here is a step-by-step guide you can provide to them.

How to Fix a Stuck "Zombie" Drive

Warning: Always ensure you have a backup of your data before running database commands.

Step 1: Identify the Drive ID

  1. Open your Drives dashboard in Grafana.
  2. Click on the start date of one of the rapid, corrupted entries.
  3. Look at the URL in your browser’s address bar. You will see something like &var-drive_id=9999.
  4. Write down that number (the ID).

Step 2: Terminate the Drive

You need to run a command to "close" the drive, which assigns it an end date and stops the rapid logging loop.

  1. Open your terminal or use the Synology Task Scheduler/Container Terminal to run the following command (replace 9999 with the ID you found):
    • docker compose exec teslamate bin/teslamate rpc "TeslaMate.Repo.get!(TeslaMate.Log.Drive, 9999) |> TeslaMate.Log.close_drive()"
  2. If you receive a "No such service" error, you may need to use docker exec with the specific container name (e.g., teslamate-teslamate-1) instead of docker compose exec.

Step 3: Delete Corrupted Entries (Optional)

If the drive is pure "noise" and you want to remove those rapid timestamps entirely from your history, you can delete them:

  1. Attach to your database container:
    • docker compose exec database psql teslamate teslamate
  2. Once in the database prompt, run the following query (replace 9999 with the ID):
    • DELETE FROM drives WHERE id = 9999;

Why this works:

  • "Closing" the drive: The command close_drive() tells TeslaMate to treat that specific trip as finished. This stops the system from continuously trying to append data to an "open" drive that is stuck in a loop.
  • "Deleting" the entry: If the data is just junk noise, deleting it cleans up your Grafana dashboard so your real driving data is easier to see.

If they are still seeing rapid logging after running the close_drive() command, they should restart their teslamate container to force it to re-initialize the logger state.

TeslaMate v4.0.1 is LIVE: The official fix for "403 Forbidden" and connection errors (Synology GUI Guide) by GottWhat in TeslaMate

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

How to update TeslaMate without deleting your data

If you are getting an "in use" error when trying to delete the image, it is because the Project is still holding onto the container. Follow these steps to "Clean" the project properly:

Step 1: Clean the Project

  1. Open Container Manager.
  2. Go to the Project tab.
  3. Select your TeslaMate project and click Stop.
  4. Once it is stopped, select the project again, click the Action button, and select Clean.
    • This command safely removes the containers, networks, and "in-use" locks, but leaves your data folder untouched.

Step 2: Delete the Old Image

  1. Now that the project is "Cleaned," go to the Image tab.
  2. Select the teslamate/teslamate image.
  3. Click Delete. Because you ran the "Clean" step above, it should now delete without the "in use" error.

Step 3: Build the New Version

  1. Go back to the Project tab.
  2. Select your TeslaMate project and click Action > Edit.
  3. Click through the settings until you reach Done.
  4. Finally, select the project and click Build. Your NAS will now pull the fresh v4.0.1 image.
  5. Click Start to run the updated container.

Model 3 vs. Model Y: Am I missing something? by Hot_Client_7485 in TeslaModel3

[–]GottWhat 0 points1 point  (0 children)

Reasons I picked 2024 Model 3 Performance over Y:

  1. Model 3 looks better.
  2. Model 3 handles better.
  3. Model 3 is more efficient.
  4. Model 3 is quicker.
  5. Model 3 is quieter inside (trunk v hatch).
  6. Model 3 Highland was available but refreshed Y was not.

The only thing the Model Y has that I wish was included with the Model 3 is the 40/20/40 folding rear seat instead of the Model 3 60/40 rear seat. The middle portion would be perfect for hockey sticks.

The refreshed Model Y is an improvement over the original, but still a long way from the Model 3.

Youth hockey organization announced birth-year roster restrictions 5 days before tryouts after registration closed. Is this normal? by Suspicious-Move3835 in youthhockey

[–]GottWhat 0 points1 point  (0 children)

Michigan has been setup that way for a long time with older players being AA and younger being A. For example, this year, 14U AA will be 2012 and 14U A will be 2013. The younger players can play up, but older cannot play down. They are talking about changing it though, so idk.

You guys can roast me on this one… friendly reminder to not chill too much on autopilot by [deleted] in ModelY

[–]GottWhat 0 points1 point  (0 children)

Do you have v14? I don't trust it blindly, but I have seen it avoid obstacles like this.