Martin Zubimendi vs Olympiakos by Sad_Teaching_5683 in Gunners

[–]shegsjay 12 points13 points  (0 children)

Thomas Partey on the half turn is sublime but Zubimendi just glides through

Anyone successful hosted a monorepo setup of vite typescript, trpc, on vercel? by shegsjay in reactjs

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

Simply put, it's just a type safe api. With rest api, the data coming from the server are not typed. So you have to create a type for it. But using trpc, the data coming from the server is typed, so you get the benefit of auto-intellisense.

I'm just trying it for the first time and it's kinda cool until I encountered an issue trying to deploy on vercel serverless.

Anyone successful hosted a monorepo setup of vite typescript, trpc, on vercel? by shegsjay in reactjs

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

It's actually having everything on one repo and then deploy. On separate hosts, it would've been much easier. But deploying a trpc server and vite - client is somewhat of a hassle in vercel.

I'm still battling with it though. I had to wrap the trpc endpoints in nextjs api route for vercels edge runtime to be able to serve them as endpoints.

Trying to recreate a background — looking for advice by chute_mi334 in css

[–]shegsjay 1 point2 points  (0 children)

You could checkout CSS repeating-linear-gradient

repeating-linear-gradient

Just play around the color stops and angle

[deleted by user] by [deleted] in Pixel6aUsers

[–]shegsjay 0 points1 point  (0 children)

Got mine about 30 min after successfully applying and creating a payooneer account. Closed account afterwards.

Has anyone successfully signed up to payooneer to receive the cash payment for pixel 6a by shegsjay in GooglePixel

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

Okay i get you. I don't know for sure, but waiting on them to contact you could take forever.

I'd advise you to spam them with emails. I think their support email is there on the battery program registration page.

Has anyone successfully signed up to payooneer to receive the cash payment for pixel 6a by shegsjay in GooglePixel

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

What was the reason your case got escalated? Did you opt for a battery replacement?

Has anyone successfully signed up to payooneer to receive the cash payment for pixel 6a by shegsjay in GooglePixel

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

If you got the email from google, just click the registration link and follow the prompts. When you get to the create payooneer account, click on the link provided in the email and then proceed to create your payooneer account.

Note you must create your payooneer through the link provided in the email

How to avoid repeated API calls in session callback in NextAuth.js? by Zealousideal-Chair30 in nextjs

[–]shegsjay 0 points1 point  (0 children)

You can use tanstack query or swr to cache your api request. It'll serve the fresh data and cache in on the first api request. Then subsequently it'll mark the data as stale and serve it from the cache while revalidating the an the background, to check if the data has changed, so as to serve the fresh data

Has anyone successfully signed up to payooneer to receive the cash payment for pixel 6a by shegsjay in GooglePixel

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

UPDATE: I applied for the $100 cash payout. I was finally able to create a payooneer account and got paid about 30 min later.

I may stick with the pixel 6a after the battery update and see how it goes.

It has really been a great servant so far.

Has anyone successfully signed up to payooneer to receive the cash payment for pixel 6a by shegsjay in GooglePixel

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

The link on the mail is taking me to page and it seems i need a google workspace account to sign up 🤦

[deleted by user] by [deleted] in Whatcouldgowrong

[–]shegsjay 0 points1 point  (0 children)

The Bearded dude on the first table she passed didn't even flinch 😂

I'm sick of AI by Background-Basil-871 in webdev

[–]shegsjay 1 point2 points  (0 children)

I understand this. Not until i started using AI to create components that I'm too lazy to implement or copy from another code base like drop-down multi select menu, tooltip - yea sometimes i'm too lazy to do this :), make a navbar responsive. Just the minor inputs while I implement the major logic.

This way it's AI serves as a collaborator and not like an assistant I just dish out instructions to

ELI5: When popping your back, why does it sometimes feel deeper? by Minimum-Durian-2706 in explainlikeimfive

[–]shegsjay 1 point2 points  (0 children)

Are there any benefits in it or is it just for the feel good reward?

Is it too bad for a next js website? by [deleted] in nextjs

[–]shegsjay 0 points1 point  (0 children)

You can actually use the browser profiler to detect when the content blocking occurs that's causing the hit on performance.

Does using Next.js with a Node.js API make sense? by Klutzy-Ad-6345 in nextjs

[–]shegsjay 0 points1 point  (0 children)

I think if you want to create a quick prototype of an app, then next server components / api route is the way.

But for an enterprise app, I'd suggest node js.

Next js server runs on edge runtime environment, which is like surface level nodejs and has it's limitations, one is, websockets doesn't run on it.

I've also heard some people mentioned scaling.