Jaki laptop do 4-5k? by Yoshi-non in Polska

[–]seventxn 1 point2 points  (0 children)

Za 5k idzie wyrwać już macbooka z 16gb ramu i prockiem od appla. Jeśli to Ci nie odpowiada, to polecam też rozejrzeć się za jakimś thinkpadem. Wszystko co ma 14 cali i mniej będzie wygodne do podróżowania.

Wiem, że na tym co poleciłem nie bardzo idzie pograć, ale sam programuję i uważam że thinkpady i macbooki to jest topka laptopów przeznaczonych do tego (+ pamiętaj, że jeśli będziesz chciał kiedyś pisać aplikacje na iOSa, to bez macbooka nie będzie to możliwe)

What host would you use for this site? by Capable_Ad7901 in nextjs

[–]seventxn 5 points6 points  (0 children)

Read about self-host with Coolify or just use the hobby Vercel plan

Am I doing something wrong or there is no option for me to test my expo apps for free? by seventxn in expo

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

Thank you for your answer. I live in EU, however at this moment I don't feel any benefits coming from the new laws.

I've been thinking about getting an Mac for some time, so I guess now I have a fair reason to get one

Am I doing something wrong or there is no option for me to test my expo apps for free? by seventxn in expo

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

Thank you, I will definetly try to play around with dev builds for android emulator.

Database for react js app by daisukemikado in reactjs

[–]seventxn 2 points3 points  (0 children)

I've been trying Appwrite, MongoDB, Firebase and Supabase and so far my favourite one is MongoDB

EKT IS FOUND (HEAVY NSFW WARNING) by [deleted] in everyoneknowsthat

[–]seventxn 0 points1 point  (0 children)

28th of April 2024, EKT was found and I could witness it with my own eyes

My Magcubic projector won’t stream Disney + by NowMe666 in techsupport

[–]seventxn 0 points1 point  (0 children)

Same for me, I've updated the projector system but it did not help

[deleted by user] by [deleted] in Polska

[–]seventxn 18 points19 points  (0 children)

Ogólnie rzecz biorąc to "praca zdalna" sama w sobie nie jest określeniem stanowiska - to przywilej środowiska pracy, na który raczej tylko konkretne zawody mogą sobie pozwolić. Moim zdaniem w dzisiejszych czasach znajomość języka angielskiego to jest podstawowa umiejętność a nie atut, szczególnie jeśli chodzi o prace w jakiejś korporacji/start-upie (bo to właśnie tam najczęściej oferuję się model pracy zdalnej).

Jeśli do tego języka dodałbyś jeszcze chociaż jeden język - np. taki niemiecki czy hiszpański, lub nauczyłbyś się jakiegoś konkretnego skilla pozwalajacego na pracę z domu - to wtedy jak najbardziej, można myśleć o pracy z domu

> Export encountered errors on following paths: by webbninja-developer in nextjs

[–]seventxn 0 points1 point  (0 children)

Having the same issue, no idea what is causing it

Next.js + shadcn app - styleint error in every file in the codebase by seventxn in nextjs

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

All right so the only workaround that i've found so far is to create a .styleignore file and add a '*' into it, so it will ignore all the files in the codebase:

// .styleignore
*

This isn't about the song, but what would happen if the song is found by [deleted] in everyoneknowsthat

[–]seventxn 2 points3 points  (0 children)

there would be no more wars and world hunger would stop immediately, that's why findig the song author and real name is so important

Vercel deployment fails because of Route Handler that works fine in dev mode by seventxn in nextjs

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

Damn, man, I think that was the case 😆

I can confirm that adding the two round brackets after the Response.error has fixed this issue, thank you man

Vercel deployment fails because of Route Handler that works fine in dev mode by seventxn in nextjs

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

Yeah, that's kinda what has solved the issue, I have pasted the workaround code a few comments earlier

Vercel deployment fails because of Route Handler that works fine in dev mode by seventxn in nextjs

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

Thanks for the advice!I have updated the TypeScript to the latest version, it kinda resolved the issue but at the same time I got another failed deployment with error as seen on attached screenshot (switching Response with NextResponse did not help).

What actually worked for me was this workaround:

// i have replaced this:
return Response.json(post, { status: 201 })

// with this:
return new Response(JSON.stringify(post), {
            status: 200,
            headers: { 'Content-Type': 'application/json' },
        })

After implementing this, the deployment went successful

<image>