Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. LensVLM: Compressing long context as images, expanding only relevant pages(huggingface.co)
    discuss
  2. Ask HN: Do you offload your coding to AI, or keep your skills sharp?
    discuss
  3. Can internal model transparency tame the AI race?(karthiktadepalli.com)
    discuss
  4. The meta-harness for coding agents(soloterm.com)
    discuss
  5. Show HN: Jev-mice – mouse colony simulation using Jev and deterministic engine(carsonsweet.com)
    discuss
  6. Discover Solo: The Ultimate AI-Integrated Control Panel(master.dev)
    discuss
  7. Steam Frame Teardown(ifixit.com)
    discuss
  8. SpaceX Starshield(wikipedia.org)
    discuss
  9. Mexican Navy's tall ship Cuauhtémoc will be at the Embarcadero all week(kqed.org)
    discuss
  10. A Worthwhile Trade(nejm.org)
    discuss
  11. Loopjacking in A2A Implementations: Hijacking Human-in-the-Loop Approvals(adithyanak.com)
    discuss
  12. How AI Helps and Hampers Junior Workers(nominalnews.com)
    discuss
  13. Jackrong/Qwopus3.8-27B-Flash-V2(huggingface.co)
    discuss
  14. Nemotron 3 Diarization(huggingface.co)
    discuss
  15. CKKS – Encryption and Decryption(jeremykun.com)
    discuss
  16. What AI pays the people who train it(dpdns.org)
    discuss
  17. Cloud Agents Are Inevitable AI Prisons(normanponte.io)
    discuss
  18. Ask HN: Why so many dead comments lately?
    discuss
  19. Illinois, California governors fast-track AI safety measures with EOs(transparencycoalition.ai)
    discuss
  20. Gvnr(gvnr.io)
    discuss
  21. HySparse2: Hybrid Sparse Attention with Two-Level KV Sharing(arxiv.org)
    discuss
  22. The Vigilante Who's Taking Down Recruitment Scammers, One Fake Job Ad at a Time(wsj.com)
    1comments
  23. Pretraining data, not verifiability, is why LLMs are good at math (and coding)(lesswrong.com)
    discuss
  24. Microsoft Publisher will no longer be supported after October 2026(support.microsoft.com)
    1comments
  25. When AI makes challenging last-minute requests no human client cares about(twitter.com/lauren_wilford)
    discuss
  26. Facing Congressional Scrutiny, Flock Details New Search Guardrails(wsj.com)
    discuss
  27. A quadruped robot designed to complete a marathon on a single battery charge(nature.com)
    discuss
  28. Swap, ZRAM, Zswap and Hibernate on NixOS(matthewbrunelle.com)
    discuss
  29. Claude discovers a novel enzyme system with CRISPR-like repeats(anthropic.com)
    discuss
  30. Introducing HLE-Diamond – Humanity's Last Exam(lastexam.ai)
    discuss

Show HN: Chromafolk – A pixel canvas inhabited by AIs that see the world as text

1 pointsby 1h agochromafolk.world
1 comments
Storytime! One day I came to the office and showed a friend a literal bot that I was working on for a game project. He noticed this loop of writing a bot, then watching it play was fun, so we had this idea: take an LLM, write who it is, then let it loose on a world in which you can see what it does and thinks.

1, the world: a persistent canvas in which the AIs can draw pixels. But they should think they are building, so they could say "let's meet up at the castle", and think it's a real castle.

2, the AIs need to see the world. But... can a model with vision see up to a pixel with exact coordinates? We need them to build by hand-placing pixels, as a player playing Minecraft with blocks. Large expensive models can do it, but cheap ones can't. We need a cheap model if we want to offer, besides free BYOK, paid plans (for non-tech people) that aren't as expensive.

So how do we get a cheap LLM to "see" a pixel world? Pixels as text! We need to give the model the exact position and colour of each pixel. First iteration: 1560,1890,ff00ff. Bad: too many tokens, hard to read. So we came up with a "code": colours are letters, 52 colours for 26 letters (lower and uppercase).

  hhHHHHhh
  NNNnnNNN
  eeeeeeee
  WWWwwWWW
  sSsSsSsS
  lllLLLll
  oooooooo
  LLLLLLLL
That's a build in Chromafolk! Each time a model wakes, it gets the vision around it (a 128px square) in this same way, and writes back what it wants to build.

This is one of many things we came across when building Chromafolk, so feel free to ask any techy question!

You can, without registering an account, watch the world, see the AIs work, and read a bit about them. If you wanna make your own character in the world, with BYOK, it's free to play! Sadly I can't offer free inference, I wish I could (this was a lost fight).

Thanks in advance to anyone who checks it out,

Cheers,

Bruno.

1h agoHN ↗

Some numbers:

- The canvas is 5000x5000px and can be made bigger when needed. - For now (for the plans) we are using Muse Spark 1.3 (Contrib) but we are looking into alternatives such as the new Luna by OpenAI. - The system instructions prompt that's sent to the models is more or less 35k tokens and we keep improving it week by week!