Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Cortera Framework:agentic framework with containment for rogue agents and action(github.com/cortera-space)
    discuss
  2. Show HN: Hntui – Another Hacker News TUI (Built on OpenTUI)(github.com/ahmd-sh)
    discuss
  3. Hubble Network Opens Satellite Coverage to All Bluetooth Devices(businesswire.com)
    discuss
  4. Even Americans who use AI every day are worried about it(techcrunch.com)
    1comments
  5. Ontological Language Models (OLMs)(olmapp.ai)
    1comments
  6. New SDK for Photonic Compute?(github.com/q-ant-gmbh)
    discuss
  7. Android Developer Verification vs. Play Console Verification: Sept 30 Deadline(submitsafe.app)
    discuss
  8. Show HN: Diff Pro Max – File Compare App(rkpg.net)
    discuss
  9. Slick: The most powerful and versatile Slack client mod(github.com/3kh0)
    discuss
  10. The state of MCP server security, after reading thirteen of them(les-k.github.io)
    discuss
  11. Advancing Private AI Compute with secure, server-side memory(deepmind.google)
    discuss
  12. Show HN: A "talk to a real person now" video chat, self-hosted on Cloudflare(github.com/yoavshalev)
    discuss
  13. KDE for People(kdeforpeople.com)
    discuss
  14. Hylio(marbletech.us)
    discuss
  15. Financial arithmetic is kind of hard(applied-algorithms.tech)
    discuss
  16. Pilgrim raises $25M seed for biological threat detection device(wsj.com)
    discuss
  17. Ask HN: What Is It Like Working with Q/KDB+? Q/KDB+ Questions?
    discuss
  18. McDonald's bets on chicken to win back diners as beef prices soar(ft.com)
    1comments
  19. OpenAI researchers might be spending >$4M/day on tokens (at API prices)(abtin.com)
    1comments
  20. Show HN: Diurnal – add a task without switching, with your calendar in view(diurnal.in)
    discuss
  21. Database of Databases VoltDB(dbdb.io)
    discuss
  22. Morgan Stanley Investment-Bank Deal List Leaked in Email Misfire(yahoo.com)
    discuss
  23. Qwen Image 2.1 beats Google Nano Banana 2.0 with minuscule 7B parameter model(tomshardware.com)
    1comments
  24. Why didn't anybody tell me about Redis Hash Slots?(verygoodsoftwarenotvirus.dev)
    discuss
  25. UK on course to miss climate targets, energy secretary admits(ft.com)
    1comments
  26. Italian parliament votes for return to nuclear energy(apnews.com)
    discuss
  27. Fertility rate dropped over 50% within 10 years in Argentina(twitter.com/jesusferna7026)
    1comments
  28. I Love Webrings(zwhuang.dev)
    discuss
  29. Trump TV: The Essentials Station(whitehouse.gov)
    1comments
  30. The Download: India's smart glasses menace and AI's trillion-dollar gamble(technologyreview.com)
    discuss

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

1 pointsby 50m 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.

46m 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!