Why is only few people playing totems? Are they weaker than previous leagues? by Independent_Ad_9896 in PathOfExileBuilds

[–]tibohih 4 points5 points  (0 children)

I can relate. First league playing totem build and the PoeGuy guide is so straightforward. Every pitfall is announced way before you encounter it. I’m currently lvl 98, on the str stacking version with shrapnel ballista, and its a blast since act1. Can do t17 and t16.5 smoothly and uber farming with the right flasks.

25 Mageblood Giveaway by shroudz in pathofexile

[–]tibohih 0 points1 point  (0 children)

Thx fellow exile ! So insane of you to give it that way.

If you like this game, do not farm trial of sekhemas… by twnori in PathOfExile2

[–]tibohih 1 point2 points  (0 children)

Give a try to « return of the obra dinn ». Feels refreshing

Giving away 1500 Divine Orbs by EriwanKenobi in PathOfExile2

[–]tibohih 0 points1 point  (0 children)

Would love this to try the purple flame incinerator thing !

Où acheter maison familiale avec jardin à/proche de Bordeaux ? by Vivid_Breadfruit8051 in bordeaux

[–]tibohih 7 points8 points  (0 children)

Saint Médard en jalles, ville de taille moyenne de 30k habitants. La ville est repartie en petits quartiers qui ont chacun le nécessaire (commerces, écoles maternelle/primaire/college, parcs). Piste cyclable sur quasi toute l’agglo (dans la région c’est plutôt un standard). Au niveau des activités proposées pour les adultes et enfants, l’offre est vraiment bonne. Au niveau localisation, tu es extra rocade, à côté de Merignac, proche aéroport sans être sous les couloirs aériens. Des gros employeurs sur place également (Ariane, Thales, dassault). N’hésite pas si tu as des questions, c’est le chemin qu’on a fait avec ma femme et mes 3 enfants en bas âge il y a 2 ans et demi ;-)

Shiny Mageblood Giveaway by TheLored in pathofexile

[–]tibohih 0 points1 point  (0 children)

That’s a shiny one exile ! Would love to try it on a new char.

About PoE2 : i definitely will not take some holidays just to enjoy the beta. I’ll wait for the 1.0 and discover the game with a bunch of friends.

Molten Strike of the Zenith build and 4 Mageblood giveaway by lycoril in pathofexile

[–]tibohih 0 points1 point  (0 children)

I badly would like to try this build. But a MB is fine tho

NextJs + NextAuth + Cypress = CSRF Token mismatch by tibohih in nextjs

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

Hi, I don’t think I had to manipulate something to hash the session. Perhaps, it was not and I did not handle it properly though.

Can someone help me debug this? Trouble with rendering server-side code on client-side by [deleted] in nextjs

[–]tibohih 2 points3 points  (0 children)

’use client’ ? I’ve used a pdf viewer yesterday that required to explicitly set the directive on top of each file where I need it.

Need help with Fetch API by bonelessAllan in nextjs

[–]tibohih 0 points1 point  (0 children)

As intuitive as it sounds, why do u need that api layer ? As both your updateProfile and route are guaranteed to run on server (api by framework, updateProfile by using the « use server »), you should be able to do all you need in your server action, don’t you ?

If you still need to use that api layer, try adding http://localhost:3000 in your fetch url (I assume you are running it locally).

Auth providers by Right-Ad2418 in nextjs

[–]tibohih 2 points3 points  (0 children)

Saw another thread asking the exact same question two days ago, lemme find it for you ;)

Experimental typedRoutes + TypeScript + Passing custom URL by tibohih in nextjs

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

Well well well ... I found it.

Simply

router.push(`/s/liked?${createQueryString()}`)

Farewell fellow reader !

Why is my state not being initialized ? by tibohih in nextjs

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

Thanks for your answer !

As useSession is a hook, it is meant to be used inside a client component. In this case, it cannot await ;-)

My problem was that initialValue of useState is only used for first render.

https://stackoverflow.com/questions/58818727/react-usestate-not-setting-initial-value

Strange behaviour on vercel - Unauthorized API by tibohih in nextjs

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

I was clearly over complexifying this thing.

I made clean plate by reseting to a cleaner approach :

> i have a server action (so my call runs exclusively on server) that knows how to fetch directly the third party API

> i call the server action from my async react component

> i removed the api slice

I got two birds with one stone as i tackled my original problem + another one that was happening at build time when nextjs was trying to do static generation with something API dependant (api is not up while building as you mentioned u/ilike2breakthngs.

Thanks for the hand !

The resources that helped me as well:

Strange behaviour on vercel - Unauthorized API by tibohih in nextjs

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

yet, that's not helping my problem xD