Thanks for reading my newsletter ❤️. This edition was delivered on Tuesday, March 18, 2025.

Tuesday, March 18, 2025

Server Rendering With Props

Something that I didn't discuss in the last post on hydration and server rendering is passing props.

In the aforementioned example I was just rendering

<Test />

but what if I want to render

<Test hello="Hi" />

The "Hi" string value can be thought of as something fetched from a database.

Here are the steps I followed:

  1. The HTML template rendering logic on the server is able to look at the JSX.Element value passed to it and access the props, we can then inject the props as a data- attribute to a div, from a user point of view this data is invisible but the JS that runs post server rendering will be able to access it
<body className={"bg-sky-100 font-dm max-w-2xl mx-auto px-4"}>
	<main id="root">{props.body}</main>
	<div id="data" data-props={JSON.stringify(props.body.props)}></div>
</body>
  1. As the props type will be used both server and client we want to store it in a types.ts file for shared access
type AboutProps = {
  hello: string;
}
  1. In the top level client React file (where hydration happens) we want to do something like this, we get the dataElement with our injected data via a .getElementById call, we can then use a type assertion to make the JSON.parse have a valid type, we could also use something like zod here to get more confidence that the parsing has worked and the props type is valid
const rootElement = document.getElementById("root");

if (!rootElement) throw new Error("Root element not found");

const dataElement = document.getElementById("data");

if (!dataElement) throw new Error("Data element not found");

const props: AboutProps = JSON.parse(dataElement.dataset.props || "{}");

if (rootElement.innerHTML.trim().length) {
  // Could also spread the props here but being more verbose for the example
  hydrateRoot(rootElement, <Test hello={props.hello}  />);
} else {
  createRoot(rootElement).render(<Test hello={props.hello} />);
}

From here the client should behave like normal React but with slightly better perceived performance due to the server rendering, all of this stuff is handled much better in frameworks like Next.js but it's fun to tinker around with it in my own little projects

Hoi An

Our final stop of our honeymoon in Vietnam was in Hội An.

Day 10: We woke early and headed straight to the clothes tailor. Emma found a trendy place that seemed somewhat Tiktok famous. We ordered what Emma likes to call "a haul"; a bunch of shirts for me and pants and dresses for her. We then did a lot of photo taking and walking around the Old Town. We'd stop at any shops we liked, slowly weaving our way through all the narrow laneways dodging motorbikes. We had lunch at Miss Ly and bought some more clothes. In the evening we walked along the river and went to the night markets.

Day 11: Today was probably our most adrenaline rush risky day where we rented a scooter. You just rock up to a scooter rental location and there's simply no paperwork or checking of licenses. We paid ~120,000 Vietnamese dong (or about $7 AUD) for a day. It was scary navigating the traffic and just generally obeying road rules (or lack thereof) but with Emma on the back seat we got through. For some reason the scooter had no petrol in it so we also got to roll up to a petrol station and fill up the tank. Riding the scooter with the wind whipping in your face really did feel fantastic. I'd love to go for a bigger scooter journey one day. In saying that, it is dangerous as hell and it's just a matter of time before you fall off.

Whilst on the scooter we visited the Pottery Village, Roving Chill House which was a cafe in a beautiful rice field and the Vegetable Village. We had lunch again at Miss Ly and dropped the scooter back. In the evening we picked up our tailoring as well as a bunch of gifts and had dinner at an Italian restaurant (our stomachs were feeling a bit average from so much Vietnamese food). It felt like home eating spaghetti bolognese.

Day 12: We had a quick hair wash and massage (which to my surprise I really enjoyed) before checking out of our hotel and heading to the airport. We flew back to Australia to see our one and only Boots.

Other items:

  • Hội An is your stereotypical overtourism type location, it takes a long time to walk anywhere due to the crush of people, there's also a bit of a rubbish issue
  • We stayed at this hotel, it was a solid pick
  • We were pretty paranoid about getting food poisoning again, for dinner on day 10 we thought the food was okay but didn't feel great the morning of day 11, might have been a minor case of food poisoning but we were fine later in the day

It was a fantastic honeymoon with lots of special memories. Some memories were not so good (again food poisoning and going to hospital sucks) but overall it was a great couple of weeks.

Here are my three Vietnam honeymoon posts:

  1. Ho Chi Minh City
  2. Meliá Ho Tram
  3. Hội An

Saturday, March 15, 2025

Melia Ho Tram

The Vietnam trip continues at the Meliá Ho Tram resort. I left everyone on a cliff hanger in the last post.

Day 5: We were bed bound and recovering from a sleepless night. We had body and head aches all day. Panadol helped. It was nice to be able to have a nice light dinner but sad that we missed out on quite a bit of resort time. Food poisoning sucks.

Day 6: We still took it pretty easy today as our stomachs weren't fully recovered. We spent plenty of time by the pool and ended the day with a pretty bad sun burn.

Day 7: We started to feel human again. In the morning we went for a bike ride, visited the petting zoo (the goats are very cute) and swam in the pool. In the afternoon we had a cooking class where we made a bowl of pho and swam in the pool again. We had a nice dinner of beautifully cooked steak and prawns.

Day 8: Another day in paradise. In the morning we went to the beach, had a massage and swam in the pool. We had a really nice Japanese lunch. In the afternoon we did some more swimming before dinner where we had a nice pappardelle pasta.

Day 9: Our last day. In the morning we walked along the beach to the pier and spent some time in the pool. We had a nice Japanese lunch again. We checked out, got transport back to Ho Chi Minh City and flew to Hội An (Da Nang).

Thursday, March 13, 2025

Major Cut#youtube.com

The major cut series in my opinion continues to showcase the best of YouTube golf. A bit of banter, really good golf and beautiful golf courses.

And the concept of "making the cut" keeps the viewer hooked. It gives you a reason to root for them.

Wednesday, March 12, 2025

M3 Ultra#apple.com

The unified memory architecture of M3 Ultra integrates the most high-bandwidth, low-latency memory ever available in a personal computer. Starting at 96GB, it can be configured up to 512GB, or over half a terabyte.

512GB of RAM. Holy crap that's a lot.

Reading on Hacker News and doing some research it seems like you need this much RAM to run certain open source LLMs locally. For example running the larger (in parameter size) Deepseek or Google Gemini models (via Ollama) would mean having a big powerful machine.

Rube Waddell#podcasts.apple.com

Really enjoyed this podcast. Will likely be one of my new favourites. Some thoughts:

  1. I've missed listening to Titus O'Reily
  2. The jumping geese story is one of the best things I've ever heard

Tuesday, March 11, 2025

Electron Debate#youtube.com

The "Is the Electron technology bad?" or "Are developers using Electron bad?" debate comes up quite a bit.

The real answer sits somewhere in the middle and you can't lean too hard one way.

Clearly we have more cross platform desktop apps these days due to Electron and this is clearly a good thing. Especially for Linux users.

AFL Scorebug#instagram.com

The Channel 7 scorebug is nice in my opinion.

The Fox Footy one is weird.

Taking a second look and referencing what the NFL used for the Superbowl there's some similarities to the NFL and the Channel 7 design. The NFL one is wider but has nice wide margins between each stat box so you can still see the action. The Channel 7 design is small enough to not block most of the action and conveys the score and time left very clearly. I think the design will catch on even if people hate it now.

The Fox Footy design is bad. It should be rolled back. Why is it so big?