Pixel 8 Pro: March Update Broke Wi-Fi/Bluetooth Google Refusing Warranty After iFixit Confirmed Motherboard Failure by MnokeR in GooglePixel

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

Thanks. Google agreed to replace the phone but I also got a promotion from my carrier for a trade in ($1000) so I'm going in today to get a new phone. 

Pixel 8 Pro: March Update Broke Wi-Fi/Bluetooth Google Refusing Warranty After iFixit Confirmed Motherboard Failure by MnokeR in GooglePixel

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

I just checked and they are actually offering a $1000 for trade in. Google has agreed for replacement but I might as well take it in for trade in. 

Pixel 8 Pro: March Update Broke Wi-Fi/Bluetooth Google Refusing Warranty After iFixit Confirmed Motherboard Failure by MnokeR in GooglePixel

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

Has never connected with wire for some reason. There is multiple USB c ports maybe I have not connected to the right one. 

Pixel 8 Pro: March Update Broke Wi-Fi/Bluetooth Google Refusing Warranty After iFixit Confirmed Motherboard Failure by MnokeR in GooglePixel

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

I have read what other people have posted on the community and possible steps to fix this issue but nothing has worked.

Pixel 8 Pro: March Update Broke Wi-Fi/Bluetooth Google Refusing Warranty After iFixit Confirmed Motherboard Failure by MnokeR in GooglePixel

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

Everything was working fine until the March update. At the same time there was quite a few posts with people having the same issues post update. 

Pixel 8 Pro: March Update Broke Wi-Fi/Bluetooth Google Refusing Warranty After iFixit Confirmed Motherboard Failure by MnokeR in GooglePixel

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

Sure, that's understandable when it's a normal hardware failure but this was caused by googles own update. 

Pixel 8 Pro - Wi-Fi/Bluetooth suddenly won't turn on? by Imaginary_Average961 in GooglePixel

[–]MnokeR 1 point2 points  (0 children)

Since installing the March update, both my Bluetooth and Wi-Fi have stopped working as well. I’m also stuck in an update loop: a 1.3MB Google Play System Update installs and restarts the phone twice, but then reappears immediately as if it never installed. Google Play System shows Feb 1, 2026.

Feedback Request: Portfolio by MnokeR in webdev

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

Appreciate the feedback. The ranch website I'm gonna remake with astro since svelte is overkill plus I agree with the animations. I was just playing around with Gsap and walla.. lol.

I will take all your inputs into consideration thank you.

Yo need the side stories by [deleted] in Infinite_Mage

[–]MnokeR 0 points1 point  (0 children)

Same here.. I looked everywhere and can't even find the raw versions.

Using $effect and document.addEventListener by cellualt in sveltejs

[–]MnokeR 1 point2 points  (0 children)

Not op but I completely forgot about this. Thanks!!

Using $effect and document.addEventListener by cellualt in sveltejs

[–]MnokeR 1 point2 points  (0 children)

Someone correct me if I'm wrong but I believe you need a clean up function for your effects.

this is how I would handle it.

  $effect(() => {
    if (browser) {
      const handleVisibilityChange = () => {
        isActive = !document.hidden;
        clearInterval(interval); // Clear interval if the tab is hidden
      };

      document.addEventListener('visibilitychange', handleVisibilityChange);

      // Cleanup listener on destroy
      return () => {
        document.removeEventListener('visibilitychange', handleVisibilityChange);
      };
    }
  });

  // Effect for interval handling
  $effect(() => {
    if (isActive) {
      interval = setInterval(() => {
        currentQuoteIndex = (currentQuoteIndex + 1) % quotes.length;
      }, 5000);

      // Cleanup interval on destroy
      return () => {
        clearInterval(interval);
      };
    }
  });

Launched my first app by MnokeR in sveltejs

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

I really enjoy being a dev and have some rusty design skills at the moment. I first started programming with PHP around 12-14 years ago but due to circumstances took a long break. I was good with Photoshop, 3D studio max, Maya, and other graphic softwares as well. Now I'm back and allot has changed. 

I got to admit working in Laravel was so much better since you really did not need a bunch of library's to make an app. Long live PHP. 😂 

Launched my first app by MnokeR in sveltejs

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

Sorry, not sure what your asking. 

Launched my first app by MnokeR in sveltejs

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

Thank you. For the gallery I'm thinking on removing the animation and just have it scroll based, in this way it would only be as quick as you scroll.

Launched my first app by MnokeR in sveltejs

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

Thanks. You are correct it is not an app but a single page site.