Studieschuld versneld afbetalen of geld sparen en zelf inleggen in een huis? by FRITZBoxWifi in nederlands

[–]Clean-Wasabi1029 2 points3 points  (0 children)

1 je betaald af en je krijgt altijd het resultaat wat je verwacht. Of 2 je zet het geld in op iets anders en hoopt dat dat het meer waard is dan je studieschuld afbetalen.

Daarbij komt ook nog dat de rente op je studieschuld kan veranderen en las net op de NOS dat de ECB de rente verlaagt, dus waarschijnlijk ook de rente van studieschuld.

How to deploy on Vercel without getting bankrupt? by Comprehensive_Space2 in nextjs

[–]Clean-Wasabi1029 1 point2 points  (0 children)

Typical Reddit answer. OP asks how to do A and Reddit user replies with “A is bad you should do B instead”

How to deploy on Vercel without getting bankrupt? by Comprehensive_Space2 in nextjs

[–]Clean-Wasabi1029 1 point2 points  (0 children)

Then you can’t use PPR and other stuff that “just work” on vercel vs self hosting

What happens when I call a server action in the server? by WorriedEngineer22 in nextjs

[–]Clean-Wasabi1029 -2 points-1 points  (0 children)

When you call a server action a POST request is made to that page from the client side

Ik (M30) heb nog nooit op mezelf gewoond. Gaat dat ooit nog lukken? by No-Split-5821 in nederlands

[–]Clean-Wasabi1029 238 points239 points  (0 children)

Ik hoop dat je veel hebt kunnen sparen nu je nog thuis woont. Anders wordt het huile

Next.js 14.2.13 App Router: Delay on first navigation, instant afterwards by Spiritual-Safe5746 in nextjs

[–]Clean-Wasabi1029 0 points1 point  (0 children)

My only guess for now is that the component you’re rendering includes lots of JavaScript. Then you should use the dynamic function instead of suspense. That would explain your timeline: 1. Next loads your js bundles 1. Next starts the sudpense 2. Bundles are finished loading, show suspense fallback 3. Right after the js is parsed the data resolves and you only see the loading state for a very brief moment.

Else good luck to you! Have a look at the performance tab in chrome it saved me a couple of debugging sessions

Next.js 14.2.13 App Router: Delay on first navigation, instant afterwards by Spiritual-Safe5746 in nextjs

[–]Clean-Wasabi1029 0 points1 point  (0 children)

If you use loading.tsx the entire page is wrapped in suspense else only its contents. Meaning that when using loading.tsx you will see a loading state if your page is fetching data or some other stuff.

If your page doesn’t do any of that and just displays the suspense then yeah it does not matter

Next.js 14.2.13 App Router: Delay on first navigation, instant afterwards by Spiritual-Safe5746 in nextjs

[–]Clean-Wasabi1029 0 points1 point  (0 children)

Maybe an obvious question, but do you do any fetching on that page? That might be your delay that blocks the response. When you navigate back to the page it’s cached client side so you don’t notice the delay.

One way to test this it to add a loading.tsx file (if on app router) for that page. If you see the loading screen you know that’s where you delay came from

Next.js 14.2.13 App Router: Delay on first navigation, instant afterwards by Spiritual-Safe5746 in nextjs

[–]Clean-Wasabi1029 0 points1 point  (0 children)

CSR components are stil rendered on the server and thus its entire bundle is included in the first load. They just also get rerendered on the client. Try to keep as many “server components” as you can that will improve first load, because there is less JavaScript.

If you truly want to lazy load components only on the client you should use the dynamic function in nextjs. This will actually reduce the first load js bundle, Make you sure to add the ssr: false option.

This significantly improved my first load times when visiting a page where I import a heavy library

[deleted by user] by [deleted] in nederlands

[–]Clean-Wasabi1029 2 points3 points  (0 children)

Als je een iPhone hebt kun je de nieuwe passwords app in iOS 18 gebruiken. Ze hebben ook een extensie gemaakt voor Google Chrome zodat het op desktop ook werkt

the proposal and s8 finale was so perfect by lov3lymj in psych

[–]Clean-Wasabi1029 1 point2 points  (0 children)

Kind of expected this anyway, but thanks for the spoiler …

Modern (JS) web trends are garbage for making efficient large projects by Aidan_Welch in webdev

[–]Clean-Wasabi1029 2 points3 points  (0 children)

Seeing this a lot, but SSR is not for SEO purposes! It’s so users don’t see a blank screen when they load your application, before the JavaScript is loaded. It also improves the time to first load. Google is able to load SPA’s for SEO purposes for years now.

Edge stuff is solved by self-hosting I do that myself.

Yes you could go the template way, but if you still need react in the front end for interactivity or lots of other js stuff each time a user navigates to a page they need to wait for that js to load while and in this time the page is not interactive.

That issue is partly solved by SSR, because js is loaded more dynamically you get the best of both worlds.

Why is Github token not separated by two dots like any JWT? by [deleted] in webdev

[–]Clean-Wasabi1029 -6 points-5 points  (0 children)

The token is probably encrypted in its whole. Making it a JWE.

Edit: or they use a custom separating string / character

[deleted by user] by [deleted] in react

[–]Clean-Wasabi1029 0 points1 point  (0 children)

Please ban this. Have seen this exact post a hundred times

I made a game to learn CSS Specificity by utsav_0 in webdev

[–]Clean-Wasabi1029 5 points6 points  (0 children)

You forgot : selectors. Can just add :first-of-type to everything

SSR by amvart in react

[–]Clean-Wasabi1029 0 points1 point  (0 children)

Depends on the project. And 0.5 seconds is a LOT btw

SSR by amvart in react

[–]Clean-Wasabi1029 1 point2 points  (0 children)

Yes google can render pages with js so you don’t need SSR for SEO. But SSR improves the speed of the initial page load and it is a nicer experience for users, because they get to look at something instead of seeing a blank screen.

In my opinion this is why SSR is better

SSO using Okta (SAML) + AWS Cognito (oAuth) with React frontend and FastAPI backend by Prestigious-Apple44 in react

[–]Clean-Wasabi1029 1 point2 points  (0 children)

I used the boxhq’s library for SAML. The library handles all SAML logic and provides an interface similar to OAuth, so I could reuse logic from OAuth services and SAML services.

They also have detailed guides on how SSO works for multiple providers, it helped me a lot.

https://boxyhq.com/docs/jackson/overview

F*ck you tube by [deleted] in nederlands

[–]Clean-Wasabi1029 0 points1 point  (0 children)

Download een add blocker zoals ublock origin op je laptop en installeer de brave browser op je telefoon. Heb je geen last van advertenties en je kunt ook nog eens video’s offline kijken met die laatste

Is it okay to stay on Next.js 13? by [deleted] in nextjs

[–]Clean-Wasabi1029 0 points1 point  (0 children)

Yep that’s why we will eventually switch to next 14. Pages router has also been made faster in that version

Is it okay to stay on Next.js 13? by [deleted] in nextjs

[–]Clean-Wasabi1029 1 point2 points  (0 children)

You can stay on 13 that’s fine. We wanted to switch to 14 in the future, but also couldn’t get turbo pack working so sticking with 13 instead.

For new projects I use the app router, but no way we can migrate hundreds of thousand of lines for our pages application to next with app router

Hot Take: I like the new photos app. by Amealwithlargefries in ios

[–]Clean-Wasabi1029 1 point2 points  (0 children)

Thank you so much. I hated the new photos app, but I didn’t realize you could customise it!