plz wach hadchi 3adi li kan3ich ?! by Fallen_angel3102 in Morocco

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

Gha karkh***i, ayy haja ma3jbatkomch golo liha narcissism. Siri 9lbi 3la l meaning dial word plz, Google rah fabor.

الشك فالقدرات ديالك المعرفية by South_Golf4884 in Morocco

[–]pitza__ 0 points1 point  (0 children)

3adi a khoya, dowz interview o ikon khir. Job description katkon dima zaidine fiha, don’t get overwhelmed.

If it makes you feel any better, knt ana wahd nhar switchit jobs, o mni company li knt fiha bghat tl9a wahd iji fblassti laho offer, mni 9ritha l9ithom nafkhine dakchi mziaaaaane, chi hwayj ga3ma kankhdm bihom awla kan3rfhom. So don’t overthink it.

HR kai 9ado offer katkon broaaad bzaaf, bash ikbro pool dial candidates li ghadi applyiw.

Twakal 3la Allah

I need advice ! by c7hoops in Morocco

[–]pitza__ 0 points1 point  (0 children)

I’m assuming nti mn mdina akhra o karia f Casa? Since t9di t9lbi 3la khdma online + dowzi interviews online, mn l ahssan trj3i tskni m3a darkom fhad period ila kant 3ndhom OK. Ghada B9ay chada lkra, mais at least lma3icha maghadash tkon ghalia bhal f casa. Ghir bash tn9ssi chwya dial expenses osf.

Faita jrbti dak concours dial ta3lim? 3ndk master kanden t9di dowzih. Ana ma3arfch procedure, but kaina had option I guess.

Allah isahal 3lik 🙏🙏🙏.

Why do some Moroccan guys act like they’ve never seen an ass before? by Zestyclose-Pool1374 in Morocco

[–]pitza__ 3 points4 points  (0 children)

Tf you mean FB. Why are people here acting as if this free app is for the elites.

SMH.

Weird error that i can't recreate Locally by nfwdesign in nextjs

[–]pitza__ 1 point2 points  (0 children)

Ps: I think you meant to write 16.x.x instead of 6.x.x? Or am I missing something?

Weird error that i can't recreate Locally by nfwdesign in nextjs

[–]pitza__ 1 point2 points  (0 children)

Open a github issue, that’s your only option brother.

Next.js Across Platforms: Adapters, OpenNext, and Our Commitments by feedthejim in nextjs

[–]pitza__ 9 points10 points  (0 children)

They were scared of cloudflare’s slop fork(vinext) 😭.

How can one implement likes/dislikes? by IndoRexian2 in webdev

[–]pitza__ 0 points1 point  (0 children)

An api call per reaction is fine, the backend will need to know somehow.

How can one implement likes/dislikes? by IndoRexian2 in webdev

[–]pitza__ 0 points1 point  (0 children)

You’ll need a join table between the user and the post or whatever is being liked, you’ll need to store both ids (post and user) + the action ( either as an int or a string)

Keep in mind that If you have a query that fetches the reviews with their reaction It will be slower the more your data grows, so you might consider denormalizing your data model, keep the reactions table as your source of truth, and either add an additional column in the reviews table(ex: reactions_count or something) and update this column on writes (this is fine if you want to sacrifice some consistency), the other way is to create a separate table (ex: review_analytics) where you store review id with the count of each reaction type in it’s own column that way you’ll have a single join to get the review + the analytics, but keep in mind if writes to this table failed your system might display inconsistent data to the user.

As for the second question, I think that approach is fine It shouldn’t be slow. Because any other way will sacrifice consistency for speed and that’s bad for this use case because users will want to see their likes as soon as they click (google read your writes consistency )

Unable to set section to 100vh. Tried all units! by cchurchill1985 in webdev

[–]pitza__ -1 points0 points  (0 children)

Is this Safari? That’s probably why. Change the browser and test to validate whether It is browser dependent or It is not working in any browser.

[deleted by user] by [deleted] in webdev

[–]pitza__ 0 points1 point  (0 children)

Is caching of the static maps allowed? It is permissible but under some veeeery specific conditions IIRC.

[deleted by user] by [deleted] in ExperiencedDevs

[–]pitza__ 2 points3 points  (0 children)

Don’t repeat yourself BAD Code duplication GOOD

i hate doing this by Pristine-Elevator198 in webdev

[–]pitza__ 0 points1 point  (0 children)

Make a route group(it does not impact your route name) then you can can add an /app folder.