frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Why can AI generate Super Mario but not a wedge ramp for my robot vacuum?

2•zhuchaokn•1h ago•0 comments

Ask HN: GitHub employees what's going on? Why?

323•sharts•5d ago•261 comments

Where are people finding GPU capacity?

3•adilhafeez•6h ago•1 comments

Ask HN: What's the current best research/understanding of healthy weight loss?

2•simonebrunozzi•4h ago•1 comments

Ask HN: Alternatives to GitHub

648•dhruv3006•5d ago•435 comments

Tell HN: Cloudflare silently injects its analytics when you switch nameservers

658•stagas•6d ago•202 comments

Ask HN: I've quit six systems for tracking my illness. What works?

52•Abh1Works•1w ago•89 comments

Continue coding agent is dead. Alternatives?

3•roscas•16h ago•3 comments

Ask HN: At what point does "clean architecture" become technical debt?

4•kiops•10h ago•4 comments

Coding Agents killed my identity. How do you feel?

19•bah9•1d ago•32 comments

Windmill.dev is not "fully open-sourced (AGPLv3)"

9•alpine-rockies•1d ago•2 comments

Ask HN: OpenCode no longer including DeepSeek?

8•dv35z•1d ago•6 comments

Ask HN: Why does the US government search through people's phones at the border?

13•roschdal•20h ago•12 comments

Robotics Software

3•erardaiden•1d ago•0 comments

Ask HN: Why is HN missing a "go to top" link on long posts?

4•KellyCriterion•1d ago•3 comments

Ask HN: How to Relicense an Old Project

3•gradschool•1d ago•1 comments

Ask HN: Just saw a YC25 job posting front page that looks like a 7-day work week

78•walrus01•1d ago•54 comments

Ask HN: What is the evidence for a stock market bubble in AI?

10•roschdal•21h ago•7 comments

SearXNG running on OpenBSD on a ThinkPad t420

2•open-search•1d ago•0 comments

You've reached the end!

Open in hackernews

Why can AI generate Super Mario but not a wedge ramp for my robot vacuum?

2•zhuchaokn•1h ago
I've been puzzled by something: AI generation can produce an elaborate figurine, a cartoon character, even a convincing Super Mario — yet it can't reliably make a simple wedge ramp so my robot vacuum can climb a step.

  For context: I bought a Bambu P2S but can't model. I tried the "describe
  it and get a model" AIs — the output is unusable, you can't adjust it,
  it's never quite what I meant. I tried having an agent write Python to
  build geometry directly — it tops out at simple primitives.
 
  What finally worked: geometric decomposition. I break a complex part into
  ordered, grouped steps, describe each as a small spec, and let an agent
  execute them in Blender (via blender-mcp). That process turned out to
  abstract into a small engine — the key insight being it converts the 3D
  spatial reasoning LLMs are bad at, into the structured code they're good
  at. I wrote it up here: https://github.com/zhuchaokn/spec-3d-model
 
  My questions:
  - Why is "functional part" generation so much weaker than
  "figurine/aesthetic" generation? Is it data (no parametrized-CAD training
  sets), representation (mesh vs B-rep), or evaluation (nobody benchmarks
  "does it print / is it watertight")?
  - Is "turn 3D modeling into code for an LLM" the right framing, or am I
  missing something better?