Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. AI anxiety is sweeping the globe – and cutting across party lines(politico.eu)
    discuss
  2. Linux Implements Dynamic Bash Tab Completion(salivity.github.io)
    discuss
  3. I Couldn't Build Jev at OpenAI – Diogo Almeida, TypeSafe Co-Founder and CEO [video](youtube.com)
    discuss
  4. Performance and safety of a multi-cancer early detection test(nature.com)
    discuss
  5. Ethics of Agent Exploitation(cygankiewicz.com)
    discuss
  6. Build a devtool once. Mount it anywhere(devfra.me)
    discuss
  7. Troubleshooting a weird keyboard on a Pentium III(rubenerd.au)
    discuss
  8. Show HN: a Rust crate to mock concrete type without using trait(github.com/xtsoftwarelabs)
    discuss
  9. Woman Arrested, Dragged Away After Speaking About Flock at City Council Meeting(404media.co)
    1comments
  10. Anthropic made Opus 5.5 cheaper. Then it broke four things your agent depends on(thenewstack.io)
    discuss
  11. I Manage Homebrew from a UI(albertoarena.it)
    discuss
  12. An agent is not an extension of the employee who created it(getlago.com)
    discuss
  13. Agent Communication Protocol(agentcommunicationprotocol.dev)
    discuss
  14. Search is a 2.9 mb browser for the Mac based on WebKit(officecommun.com)
    discuss
  15. Tokonomics–AST context compiler to stop hitting Claude/GPT rate limits in VSCode(visualstudio.com)
    discuss
  16. First Principles Thinking(sunilsadasivan.com)
    discuss
  17. EA Safety(venkateshrao.com)
    discuss
  18. Why 'What's Opera, Doc?' Looks Like That(animationobsessive.substack.com)
    discuss
  19. Why do common Rust packages depend on C code?(langdev.stackexchange.com)
    discuss
  20. Show HN: Photos by Strangers (reviving an old, self-coded project)(serendi.pt)
    discuss
  21. After multiple deaths and injuries, NHTSA is investigating comma.ai(arstechnica.com)
    1comments
  22. I Built AI Clones of My Coworkers. Things Got Weird(wired.com)
    1comments
  23. IonStack: 1-Click Browser to Kernel Full-Chain to Get Root Shell on Android 17(blackhat.com)
    1comments
  24. Energy Sharing and the Grid(netbound.io)
    1comments
  25. Call an API from Every Row in DuckDB, Without the Loop(query.farm)
    discuss
  26. Rails World 2026 Opening Keynote [video](youtube.com)
    1comments
  27. Global DRAM Module Revenue Jumped 59% to $21.2B in 2025(guru3d.com)
    discuss
  28. Ten years of Postgres logical replication(tapoueh.org)
    discuss
  29. You Can See Everything – Official Trailer [video](youtube.com)
    discuss
  30. What to Know About JavaScript in 2026(master.dev)
    discuss

Show HN: STXT, a human-first XML alternative I created in 2013, is now ready

2 pointsby 43m agostxt.dev
0 comments
STXT came to me in the spring of 2013: a language that preserves the most used features of XML, while being able to be written by non-technical people. The first version was created, different from the current one, but I never announced it. In 2014 my daughter was born; my priorities changed.

Time passed and we arrived at 2025. In those years I didn't find another format with the same balance of characteristics that STXT has, and I decided that was the time to resume the project. Since then, I've been revising the language, using it for personal projects, and today it's usable and stable.

STXT is a text format for documents and structured data, indentation-based, with schemas, namespaces, and no escape characters.

An example in STXT (extra indentation for HN):

  Book (com.example.library):
      Title: Modern Software Architecture
      Authors:
          Author: Keyla Brown
          Author: Joan Costa
      ISBN: 978-84-123456-7-4
      Published: 2026-08-25
      Summary >>
          This book offers a practical view
          of patterns and best practices
          for designing distributed,
          scalable systems.
And the template with the structure and cardinality:

  Template (@stxt.template): com.example.library
      Structure >>
          Book:
              Title: (1)
              Authors: (1)
                  Author: (+)
              ISBN: (1)
              Published: (1) DATE
              Summary: (?) TEXT
The portal is made with STXT itself (add .stxt to any URL to see the source). There you can find the language specifications and implementations in Java, TypeScript and Python, passing the same conformance kit. All available at https://github.com/stxt-lang/ under MIT License.

You can try STXT at https://play.stxt.dev or install the VS Code extension stxt-lang.stxt.

A quiet thread, for now.Start the conversation on HN ↗