惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
Google Developers Blog
博客园 - 三生石上(FineUI控件)
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
MongoDB | Blog
MongoDB | Blog
小众软件
小众软件
Y
Y Combinator Blog
博客园 - 聂微东
Google DeepMind News
Google DeepMind News
D
Docker
罗磊的独立博客
Microsoft Security Blog
Microsoft Security Blog
D
DataBreaches.Net
B
Blog
Vercel News
Vercel News
Recent Announcements
Recent Announcements
GbyAI
GbyAI
阮一峰的网络日志
阮一峰的网络日志
T
The Blog of Author Tim Ferriss
H
Hackread – Cybersecurity News, Data Breaches, AI and More
P
Proofpoint News Feed
酷 壳 – CoolShell
酷 壳 – CoolShell
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Microsoft Azure Blog
Microsoft Azure Blog
宝玉的分享
宝玉的分享

Hacker News

GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis Bonsai 1-bit WebGPU - a Hugging Face Space by webml-community Moving a large-scale metrics pipeline from StatsD to OpenTelemetry / Prometheus GitHub - Nightmare-Eclipse/RedSun: The Red Sun vulnerability repository GitHub - SethPyle376/hiraeth: Local AWS emulator focused on fast integration testing, with SQS support, SQLite-backed state, and a debug-friendly web UI. GitHub - macOS26/Agent: Any AI, replaces Claude Code, Cursor, OpenClaw. Over 18 LLM providers (Claude, OpenAI, Gemini, Ollama, Zai, HF, Qwen) wired into a native Mac app that writes code, builds Xcode projects, bumps versions, manages git, automates Safari, use AppleScript, JS or Accessibility, extend Agent! w/ MCP Servers, run tasks from your iPhone via Messages. YouTube now lets you turn off Shorts I Made a Terminal Pager Burgers | マクドナルド公式 Commands — HackerNews CLI documentation ChatGPT for Excel PiCore - Raspberry Pi Port of Tiny Core Linux Live Nation illegally monopolized ticketing market, jury finds Google Broke Its Promise to Me. Now ICE Has My Data. Founding Engineer at Adaptional | Y Combinator CRISPR takes important step toward silencing Down syndrome’s extra chromosome GitHub - saffron-health/libretto: The AI toolkit for building reliable browser automations US v. Heppner (S.D.N.Y. 2026) no attorney-client privilege for AI chats [pdf] Retrofitting JIT Compilers into C Interpreters IPv6 – Google The Accursèd Alphabetical Clock Cybersecurity Looks Like Proof of Work Now Fragments: April 14 Cal.com Goes Closed Source: Why AI Security Is Forcing Our Decision | Cal.com - Scheduling Software for Online Bookings Laravel raised money and now injects ads directly into your agent When moving fast, talking is the first thing to break Too much Discussion of the XOR swap trick – Heather Cafe Introduction to Spherical Harmonics for Graphics Programmers The Grand Line
Snowboard Kids 2 is 100% Decompiled
2026-05-18 · via Hacker News

I’m very pleased to announce that Snowboard Kids 2 is 100% decompiled!

All of the game’s functions have now been implemented in C and compile to assembly that matches the original game. There’s still some occasional __asm__ hackery,1 and plenty of code needs better names and documentation, but every function now has a matching C implementation.

That matters because a matching decompilation turns the game from a pile of MIPS assembly into a codebase we can read, build, study, and modify. It should help with recompilation, asset extraction, modding, and generally understanding the mechanics of the N64’s greatest game.

screenshot of the decomp.dev Snowboard Kids 2 decompilation report

Snowboard Kids 2 decompilation report from decomp.dev. Boxes represent different files.

The journey

This project has been a little under two years in the making, with the first commit landing in September 2024.

The circumstances surrounding the final matches were not quite what I expected when I started. I’m currently sitting in hospital with my newborn daughter. She’s doing fine, but needs some help eating. Decompilation has been a useful distraction and an enjoyable way to fill the quiet hours.

photo of me in the hospital with my daughter

The path to decompiling any game, let alone a Nintendo 64 game, is not especially well documented. This project would not have been possible without the N64 decompilation Discord community, whose members have been incredibly generous with their time. I would particularly like to thank Bl00D4NGEL, inspectredc, SlaveOfIDO, and queueRAM for their significant contributions to the project, especially across the final ten functions.

screenshot of the decomp.dev Snowboard Kids 2 leaderboard

Leaderboard shared on discord for tracking work on the remaining Snowboard Kids 2 functions.

The community was more important than any model: people answered my dumb questions, explained tooling, and decompiled functions themselves. With that said, coding agents also greatly accelerated the decompilation effort, particularly Claude, GLM, and Codex. I don’t want to turn this into another AI blog post2, but I do have a couple of observations:

  1. Based on my experience with the final ten functions, which were among the most difficult, the most effective model appeared to be Codex 5.5 xhigh. Historically Claude was more effective, and I expect this to keep changing, perhaps even by the time you read this.
  2. Frontier models are now very effective at decompilation, but this comes at a cost. GLM has probably been the best value for money for this specific kind of work. If you want to try coding agents on your own decompilation project but are put off by high subscription fees, that is where I would start.

What next?

Reaching 100% decompilation was not technically blocking the recompilation effort, but it was more interesting to me personally. With the decompilation finished, my next goal is to release a high-quality recompilation of Snowboard Kids 2.

That’s already in a pretty good state thanks to help from sonicdcer and DarioSamo, but there are still bugs to squash before I’m comfortable releasing it.

screenshot of an alpha version of Snowboard Kids 2: Recompiled

Screenshot from Snowboard Kids 2: Recompiled. Note the use of widescreen and expanded draw distance. This can lead to some visual quirks.

There’s also plenty of work left to do in the decompilation project itself. A 100% match doesn’t mean the source is perfectly understood. Many functions still have generated names, many structures need to be cleaned up, and graphics/audio assets are still mostly treated as binary blobs. The project is now in a much better place for that work, but the work still needs doing.

Finally, I’m interested in starting a Snowboard Kids 1 decompilation. I think it would be very cool to have a ‘Super Snowboard Kids’3 that combines both games and allows you to play all the original tracks on the second game’s more modern engine. I have no idea how feasible that ultimately is, but it’s a fun thing to think about.

If you’ve made it this far, you probably have an interest in decompilation and Snowboard Kids 2. Take a look at the Snowboard Kids 2 decompilation project. The README includes a list of good first tasks.

You can also follow me on Bluesky for more Snowboard Kids 2 updates.