AI is also helping a lot here. I always had a hard time making hibernate and especially suspend-to-hibernate work in Linux. And I have managed linux instances at work so I have the know-how. But you simply can't keep wasting time on every niggle in your system. This time with a few prompts to claude code and it quickly figured out from logs what boot params were wrong that needed fixing. Afterwards it just worked, Happy hibernating me after years on linux!
The sleep and hibernate issues keep plagueing me for close to 20y now. I still deal with them and realize it's still a better experience overall compared to windows
After Tanstack Start, Next.js seems even less intuitive. While it remains a viable option due to its established momentum, it feels quite alien to backend devs, esp with its unconventional defaults.
It feels like Wordpress inasmuch as it’s shoving a tool in places that don’t make sense. React is great for SPAs but if I wanted pre-rendered static content I’d use a different tool.
I had had a client cancel a job when they heard it's not going to use Wordpress. It was going to be a dashboard showing statistics (air quality, room bookings etc.) from their facility.
why? jsx is a great language for templating, the ui being a function of state is an incredible model. i am not a huge nextjs fan but React, mdx and friends are great for pre-rendered static content
Isn’t all templates language that way (blade, jade,…)? The main selling point of JSX is being a DSL for React, which present a functional model instead of the imperative paradigm of the DOM API.
If you are dealing with a static site then Astro makes more sense. Renders to just plain HTML while still allowing you to provide interactivity for part of page components using React or any framework by creating what Astro calls an island.
You get best of both worlds, rich interactiveness by using JS and plain HTML/CSS where you need static.
reply