Hacker News

Show stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Show HN: An e-ink frame that hears birds and draws them as 1800s illustrations(github.com/arnegiacomo ↗)
    235comments
  2. Show HN: Restarted – a 2026 remake of the classic 2015 startup generator(restarted.io ↗)
    4comments
  3. Show HN: AttaLambda: a language where types and data are made of untyped lambdas(attalambda.com ↗)
    discuss
  4. Show HN: Collected every single "What are you working on" project into a website(reachpad.app ↗)
    1comments
  5. Show HN: Kosmic Kart – Mario Kart-style racing with friends in the browser(kosmi.io ↗)
    discuss
  6. Show HN: How Stale Is Your AI? Release age and training cutoff for 20 models(stale.jock.pl ↗)
    44comments
  7. Show HN: SeasonMap – when to travel where? visualized with climate data(seasonmap.app ↗)
    8comments
  8. Show HN: Interakt – open-source self-hosted search and AI chat for your website(github.com/alphasolutionsrepo ↗)
    discuss
  9. Show HN: Friday – Self-hosted persistent memory for AI coding agents (MCP)(github.com/itskie ↗)
    2comments
  10. Show HN: Halo 3's Guardian, playable in the browser, as my personal website(runboli.com ↗)
    4comments
  11. Show HN: I made a flight simulator, except you're just a passenger(inflightsimulator.com ↗)
    200comments
  12. Show HN: Padwan-LLM, a lightweight LLM Python client(github.com/polarsen-io ↗)
    discuss
  13. Show HN: ManyBot – Framework to build WhatsApp bots, without the boring part(manybot.org ↗)
    discuss
  14. Show HN: Hacking a $20 4G wireless hotspot into a texting device(bkovac.github.io ↗)
    36comments
  15. Show HN: Capsule – Single-file web apps that save their data into SQLite(withcapsule.app ↗)
    156comments
  16. Show HN: Pizza Bot – An inbox for AI agents that work in the background(github.com/pizza-bot-app ↗)
    33comments
  17. Show HN: Pixel Agents – A pixel-art mission control for your Claude Code agents(mateovalle.github.io ↗)
    1comments
  18. Show HN: Swift-Qwen3.8-27B, -58.3% thinking, x1.95 speed, accuracy of xhigh(huggingface.co ↗)
    11comments
  19. Show HN: Redis City – Explore how Redis works in an interactive 3D model(poltora.dev ↗)
    26comments
  20. Show HN: YOLO FPS-per-dollar numbers for edge AI boards ($75-$215)(github.com/chorylee ↗)
    discuss
  21. Show HN: Put an AI agent on a FaceTime audio/video call (open source, WebRTC)(github.com/cherthq ↗)
    discuss
  22. Show HN: OmnisBench, a re-gradable, open LLM routing benchmark on fresh tasks(github.com/fortitude-group ↗)
    1comments
  23. Show HN: Macros with a Behringer FCB1010 MIDI Pedalboard in macOS(github.com/jamesryanatx ↗)
    21comments
  24. Show HN: Kinesis – Control your Mac with the Meta Neural Band(github.com/callbacked ↗)
    46comments
  25. Show HN: Panel – A research workspace where the agent can build its own panes(github.com/greentfrapp ↗)
    21comments
  26. Show HN: Picxel – Turn reference images into pixel-art game assets(github.com/see-sol-lab ↗)
    1comments
  27. Show HN: Pelican-bicycle alternatives(gally.net ↗)
    45comments
  28. Show HN: TurboBench, the Compression Lie Detector, 100 Codecs, Daily Update(github.com/powturbo ↗)
    discuss
  29. Show HN: Nari Qwen3-TTS and Qwen3-ASR – High accuracy, low latency and cost(narilabs.com ↗)
    31comments
  30. Show HN: Pull every comment out of a Google Sheet, in the browser(bensunter.com ↗)
    1comments

Show HN: Halo 3's Guardian, playable in the browser, as my personal website

10 pointsby 2h agorunboli.com
4 comments
I've never had a personal website, and I didn't want to make a resume/portfolio site, so I rebuilt Guardian and hid a treasure hunt through my life inside it.

You start in the Halo 3 main menu, go through the lobby, spawn in the map, and explore. There are photos, stories, quests, mini-games, and Easter eggs scattered around. Movement is via WASD and mouse, no signup.

Guardian was my third place growing up. Starting in 9th grade, my friends and I would get home after school, get on Halo, and hang out in a Guardian free-for-all with MLG settings until everyone came online, then play customs or ranked for hours.

On weekends we'd bring our Xboxes and monitors to each other's houses, stay up all night, and play in local tournaments. Guardian was probably the closest thing I had to a digital home, so I wanted my site to live there. Playing it and hearing the theme music for the first time in 10+ years in a place I knew by heart felt a bit like coming home.

The map itself isn't AI-generated. It uses an original Guardian asset export distributed through the fan-run Halo Archive: an OBJ with 115,250 faces, the original UV coordinates, and 42 referenced diffuse textures, loaded through Three.js.

What was AI-generated was everything on top needed to turn it into a complete game: shaders, lighting, scenario tags, physics, animations, collision, movement, sky and fog, lifts, pickups, weapon handling, and quest routing.

Every pickup was placed by hand against the geometry using callout maps and a dev-only coordinate locator. This was surprisingly tedious to get right - I think it took me 10 iterations just to get the blue lift on Camo to line up parallel with the ledge.

The Guardian geometry and texture assets are 21 MB, so the load is hidden inside the lobby countdown and scorecard screen while the shaders warm up. It targets 60 FPS and feels smooth on a recent MacBook in Chrome.

Touch controls work on mobile, but the field of view is roughly 20 degrees in portrait, so desktop is definitely the best way to play it.

I built it with Codex using Astra. It wrote essentially all of the code: 20,552 lines of TypeScript across 118 files, 973M tokens, 37 hours of runtime, and about 25-30 hours of my time.

Coding wasn't the hard part. The time-consuming part was deciding which memories belonged in the map, where each should live, what game mechanic fit each one best, and then playing it over and over to fix bugs and get the movement and user flow to feel right.

I'll write up more about the Codex/Astra side in a comment since I had a lot of interesting learnings from building something this large with it.

This is an unofficial fan project and I'm not making money from it. The geometry, textures, UI, and many of the sound effects are Halo material and belong to their respective owners.

Some things are still rough. There's occasional lag when picking up a power weapon. The lifts don't feel quite natural - it was hard to replicate the vacuum effect of the real lifts. On some browsers like Firefox, audio needs a click before it starts.

Would love feedback on how it could be improved, especially from anyone else who spent a lot of time on this map.

2h agoHN ↗

Awesome job! Very cool to see this.

1h agoHN ↗

Sir you made my day. Worked on iPhone se3.

1h agoHN ↗

At first I thought that might have been the third gen of iPhones (circa 2009), but then I looked it up and saw it came out in 2022 . Thank you!

17m agoHN ↗

“Coding wasn't the hard part.” I would hope not since astra did that.

Above saltiness aside, are you worried Microsoft will see this?