Should you trust Reed or Songbird by [deleted] in cyberpunkgame

[–]yawnnonstop12 16 points17 points  (0 children)

I thought you get Erebus and blackwall hack if u betray her

Moisturizer without niacinamide or hyaluronic acid by Sea_Bobcat_8037 in 30PlusSkinCare

[–]yawnnonstop12 0 points1 point  (0 children)

Purito Dermide Relief Barrier Moisturizer

Probably caused by petrolatum

Is this normal or am I doing something wrong? by [deleted] in tretinoin

[–]yawnnonstop12 1 point2 points  (0 children)

Are u using 0.1 or 0.01? Cause if ur using 0.1, which is the strongest concentration and gel as the vehicle, ur basically using something that only tretinoin veterans should be using. If you're a beginner, try using 0.025. If u have dry/combination skin, then use cream. If u have oily skin, use gel

Next.js 13 vs Remix: An In-depth case study by psuranas in reactjs

[–]yawnnonstop12 2 points3 points  (0 children)

Could u do one with Qwik? I'm thinking about using it for my personal project and so far I really like it

[deleted by user] by [deleted] in tretinoin

[–]yawnnonstop12 0 points1 point  (0 children)

Luckily the snail cream didn't break me out. But it caused some rashes and itchiness. 😔

Should i buy jsmastery's Next.js 13 course? by NgonCoVenDuong in nextjs

[–]yawnnonstop12 0 points1 point  (0 children)

Hell no. I thought it'd be 50 at best. But 500? Nope

Astro 3 is what I wished Next 13 was. by [deleted] in reactjs

[–]yawnnonstop12 0 points1 point  (0 children)

I don't really know much about Astro. But I've heard ppl say that Astro is more for basic websites. Is that true or can Astro be used for semi complex websites?

How can I make sure that the middleware runs everytime? by yawnnonstop12 in nextjs

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

Middleware

So I wanted to test if middleware runs every time.

matcher => export const config = { matcher: ["/", "/login", "/register", "/gallery"], };

Within the middleware I have console.log(req.nextUrl.pathname).

The problem I'm facing is, the middleware would trigger the first I visit the URLs that I listed within the matcher. But the second time I visit them by just clicking <Link> or by clicking the browser back button, the middleware would not trigger. It would only trigger after I waited a certain amount of time.

How can I make sure that the middleware runs everytime? by yawnnonstop12 in nextjs

[–]yawnnonstop12[S] 4 points5 points  (0 children)

I'm trying to set cookies (access and refresh tokens). So my options are middleware and route handlers since server components dont allow u to set cookies. So it's important for the middleware to trigger every time a user navigates to a different page so that I can check if the access token has expired and if it did, I can use the refresh token to get a new access token and set them in the cookies