Artemis II Photo Timeline: Hank Green Builds With Claude Code
A chronological timeline of Artemis II photos built by Hank Green with Claude Code captures the indie web spirit and shows AI-assisted side projects in action.
A new side project has quietly climbed the ranks on Hacker News: the Artemis II Photo Timeline. It's a simple, elegant website that lets you step through images from NASA's Artemis II mission in chronological order. But the story behind it — built by Hank Green using Claude Code — resonates far beyond the photos themselves.
The Story
The site offers a curated timeline of photos from the Artemis II mission, which recently completed its lunar flyby. You can filter by crew photos, spacecraft, or lunar observations, and navigate with arrow buttons. It's a straightforward concept executed cleanly. The photos come from NASA's public archives, and the timeline lets you see the mission unfold day by day, from the crew walkout to splashdown.
Hank Green, the creator, built the entire thing using Claude Code, Anthropic's coding agent. He documented the process in a YouTube video, showing how he prompted Claude to generate the site, fetch and organize images, and deploy it. The result is a functional, well-designed timeline that feels both personal and polished.
Why It's Trending on HN
The HN thread, which has 104 points and only 9 comments, captures a specific nostalgia. One commenter wrote:
"This is exactly what the internet felt like in 2000-2006. This is amazing. Creators are making little things all over and sharing them on the indie web. Yesssss!!!"
Another pointed to the tooling: "He used Claude Code! What an incredible enabler of fun little side projects it's turning into."
The small but enthusiastic response suggests that people are tired of bloated, ad-ridden content farms. A simple, free, and beautifully crafted timeline feels like a breath of fresh air. There's also genuine curiosity about what AI-assisted development can unlock for individual creators.
My Take
I've been watching the indie web revival with interest, and this project epitomizes what's exciting about it. The barrier to entry for building and shipping a useful web tool has never been lower. Hank Green isn't a professional frontend developer, yet he created something that thousands of people find value in. That's the promise of tools like Claude Code: they lower the floor, not just the ceiling.
What strikes me is the clarity of purpose. The timeline doesn't try to do everything. It doesn't have ads, a newsletter signup, or social share buttons. It just shows you photos in order. That restraint, combined with fast loading times and a clean UI, makes it a joy to use.
The lunar observation photos, as another commenter noted, give a strange perspective where the moon looks small and close — "like rain drops in really soft sand." That sense of wonder is what the web should enable. Not metrics, but moments.
What This Means for Builders
In an era where cloud giants push complex frameworks and serverless architectures, this project demonstrates a simpler path. A small, static site built with vanilla HTML, CSS, and JavaScript, deployed on a static host, is often enough. The core infrastructure — fetching data from an API, organizing it into a timeline, adding interactivity — is straightforward when you have an AI coding assistant to handle the boilerplate.
Here's a conceptual sketch of how you might build a similar chronological photo viewer:
// Fetch and sort images by date
const images = await fetch('/api/photos').then(res => res.json());
images.sort((a, b) => new Date(a.date) - new Date(b.date));
// Render timeline
let currentIndex = 0;
function renderImage(index) {
const img = images[index];
document.getElementById('photo').src = img.url;
document.getElementById('date').textContent = img.date;
document.getElementById('caption').textContent = img.caption;
}
document.getElementById('next').onclick = () => {
if (currentIndex < images.length - 1) {
currentIndex++;
renderImage(currentIndex);
}
};
But the real lesson is about distribution. Hank Green already has a large audience on YouTube, which helped surface this project. For most builders, sharing on HN, relevant subreddits, or Twitter communities can spark similar attention. The project itself isn't complex — it's the story and the execution that matter.
Should You Care?
If you're a developer who misses the early web, or feels overwhelmed by the complexity of modern tooling, this project is a reminder that making simple, beautiful things is still possible. If you're curious about using AI as a coding assistant, Hank Green's video is a great case study. If you're involved in a space mission, consider how public engagement tools like this can make your work accessible. And if you're just someone who loves space photos, go enjoy the timeline — it's a gem.
Make something small. Share it. That's how the web used to feel.
Original thread: Hacker News
Artemis II Timeline: artemistimeline.com
Hank Green's build video: YouTube
Claude Code: Anthropic docs
NASA Artemis II: nasa.gov