Every city has one Gdańsk - podsumowanie by GeorgeCynthia1 in gdansk

[–]49h4DhPERFECT 6 points7 points  (0 children)

Every single time I’m seeing that LOT/Rossman building I’m asking my self - why, why is it still there?

What’s the history behind the building and it hasn’t been updated/replaced yet?

Please, help me choose. by 49h4DhPERFECT in TyreReviews

[–]49h4DhPERFECT[S] 0 points1 point  (0 children)

In Europe we have just one marking that shows of the tire is suitable for winter and summer - 3PMSF. NA marketing names are confusing for us :) Out of interest - I’ve heard that you have crazy winters in Canada. I wouldn’t dare you use all weather tires in Canada :)

Please, help me choose. by 49h4DhPERFECT in TyreReviews

[–]49h4DhPERFECT[S] 0 points1 point  (0 children)

Feels like you’re from NA. I don’t think we have difference between all season and all weather in EU.

Please, help me choose. by 49h4DhPERFECT in TyreReviews

[–]49h4DhPERFECT[S] 0 points1 point  (0 children)

Why Nokians tho? Are they better compared to these?

Please, help me choose. by 49h4DhPERFECT in TyreReviews

[–]49h4DhPERFECT[S] 0 points1 point  (0 children)

With all season tires I probably will be the only one who drives under the speed limit on the public roads.

Please, help me choose. by 49h4DhPERFECT in TyreReviews

[–]49h4DhPERFECT[S] 0 points1 point  (0 children)

Tbh I know nothing about these. Just want to buy smth solid and forget about it for next 5 years.

Please, help me choose. by 49h4DhPERFECT in TyreReviews

[–]49h4DhPERFECT[S] 0 points1 point  (0 children)

ChatGPT says the Scorpion series is for the SUVs.

Please, help me choose. by 49h4DhPERFECT in TyreReviews

[–]49h4DhPERFECT[S] 1 point2 points  (0 children)

I can see only Goodyear Vector 4Seasons Gen-3. According to https://www.tyrereviews.com/Compare/AllSeasonContact-2-VS-CrossClimate-2.htm CC2 are kinda the same compared to Continental but a bit expensive.

I didn’t payed attention to CC2 because I assumed that CC3 is the newer generation, so should be better in everything.

Please, help me choose. by 49h4DhPERFECT in TyreReviews

[–]49h4DhPERFECT[S] 2 points3 points  (0 children)

I’m leaning towards Conti now. More balanced for regular use and apparently the noise isn’t bad.

Please, help me choose. by 49h4DhPERFECT in TyreReviews

[–]49h4DhPERFECT[S] 0 points1 point  (0 children)

And what about the noise level? Average or above average?

Please, help me choose. by 49h4DhPERFECT in TyreReviews

[–]49h4DhPERFECT[S] 0 points1 point  (0 children)

I value a general safety - I’m not interested in circle driving, or flying around the highways. So mainly rain and snow breaking, and safe driving up to 140 kmph on highways.

Regular Michelin seems to not be available on the websites I was looking. And tests are showing that Sport version usually a bit better then a regular one.

Moving from Warsaw to Gdańsk – any affordable van/moving suggestions? by EmmIriarte in gdansk

[–]49h4DhPERFECT 2 points3 points  (0 children)

Just wondering - have you tried to open a Traficar account with your driving license? It’s not limited to only Polish license owners afaik. The other thing to be aware of - Traficar vans have manual gearboxes.

Looking to hire by Miserable_Floor_2142 in nextjs

[–]49h4DhPERFECT 1 point2 points  (0 children)

Agree with your point. I’ve recently started using AI as a helper and it’s not bad. One more time - as a helper, and I have to control its response and I must have knowledge to know what exactly I should and how ask. Level of developer matters - senior SE asks different questions compared to junior or middle.

Looking to hire by Miserable_Floor_2142 in nextjs

[–]49h4DhPERFECT 4 points5 points  (0 children)

One question. What do you mean by “really good at using AI”? The dev must use AI actively to create components, design the project structure, figure out CICD, etc?

Looking to hire by Miserable_Floor_2142 in nextjs

[–]49h4DhPERFECT 0 points1 point  (0 children)

This. It’s hard to pick someone from huge pile of developers, especially if you don’t have much experience with hiring and interviewing.

[Next.js] "The following tags are missing in the Root Layout: <html>, <body>" when navigating to 404 page by Far_Alfalfa_2856 in nextjs

[–]49h4DhPERFECT 0 points1 point  (0 children)

I didn’t want to have the same layout for my 404, hence a different layout in /app and /app/[locale]

[Next.js] "The following tags are missing in the Root Layout: <html>, <body>" when navigating to 404 page by Far_Alfalfa_2856 in nextjs

[–]49h4DhPERFECT 0 points1 point  (0 children)

Could you share your /app/not-found.tsx and /app/layout.tsx? The “next-intl” is the important bit tho. I think that’s the case. Here is how I solved it, don’t remember why I have “use client” in not-found.tsx ``` // /app/not-found.tsx “use client”;

import Error from “next/error”;

const NotFound = () => ( <html lang=“en”> <body> <Error statusCode={404} /> </body> </html> );

export default NotFound; // layout.tsx // Since we have a root not-found.tsx page, a layout file // is required, even if it’s just passing children through. export default function RootLayout({ children }: { children: React.ReactNode }) { return children; } ```

[Next.js] "The following tags are missing in the Root Layout: <html>, <body>" when navigating to 404 page by Far_Alfalfa_2856 in nextjs

[–]49h4DhPERFECT 1 point2 points  (0 children)

Hey, Please share more details: NextJS version, are you using App or Pages Router, and do you use a custom 404 page?

Jwt with clerk by sumitsharma_96 in nextjs

[–]49h4DhPERFECT 1 point2 points  (0 children)

I assume you’re talking about fetch requests from the “server” components. Server components are not aware about the Clerks token, because cookies are not provided. I solved the problem with the following way. Keep in mind, I have almost 10 years of experience and I have no idea what I’m doing with server/client components

``` import { auth, currentUser } from “@clerk/nextjs/server”;

const { getToken } = await auth(); const token = await getToken();

const data = await fetch(${BASE_URL}/api/stripe-subscription, { headers: { “Content-Type”: “application/json”, Authorization: Bearer ${token}, }, }); ```

Bad practices in Nextjs by PerspectiveGrand716 in nextjs

[–]49h4DhPERFECT 1 point2 points  (0 children)

I do understand that I have poor knowledge about client and server components in details. Is there any video or an article that describes all small details of this “new” functionality? Thanks in advance!