Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Ask HN: How do you use LLMs to secure your code and services?
    —discuss
  2. How to Nurture Plants and Your Kid's Curiosity (worldsensorium.com)
    —discuss
  3. Remembering the Future: Blade Runner (blue-continuum.com)
    —discuss
  4. Planning with Agents: Divided Worlds, Boundary Objects, and Thicker Interfaces (maggieappleton.com)
    —discuss
  5. Room to Wonder (rafaelmostert.com)
    —discuss
  6. Famous actors arriving in the vertical drama no longer just bring romance (duanju.news)
    —discuss
  7. The Cryptopals Crypto Challenges (cryptopals.com)
    —discuss
  8. Clankers Made Me Build a Second Brain (jadarma.github.io)
    —discuss
  9. Silicon Valley 'sex assault list' with 'over 100' names circulated (nypost.com)
    —discuss
  10. Midden, a JVM heap dump analyser in a single static binary (github.com/nullbyte3)
    1comments
  11. Reimagining research papers as interactive and reliable AI agents (nature.com)
    —discuss
  12. I got Opus 5.5 to make a whimsical video ad for my side hustle (reddit.com)
    —discuss
  13. Causal questions and the jobs program data (stochastic.blog)
    —discuss
  14. Platform-Independent SIMD in Go (go.dev)
    —discuss
  15. The Biggest Risk of AI Wearables Is Not Personal Privacy – It's Human Agency (ssrn.com)
    —discuss
  16. Kilo for JetBrains is now a multi-agent control room (kilo.ai)
    —discuss
  17. Hardlist: Index of ambitious European hardware startups (hardli.st)
    —discuss
  18. Double-entry accounting for compute time (sfcompute.com)
    —discuss
  19. Accelerating the Kernel's Build Process (lwn.net)
    —discuss
  20. Mdash as a Service (tsak.dev)
    1comments
  21. Meta needs you to believe it cares about privacy (axios.com)
    2comments
  22. A Rock Is Trapped Light [video] (youtube.com)
    —discuss
  23. All be asking more questions (seangoedecke.com)
    1comments
  24. The Hollow Pursuit of Happiness (medium.com/ivybealtaine)
    1comments
  25. GPT 6 Astra beat NetHack (kenforthewin.github.io)
    —discuss
  26. Code Review Says Less (openteams.com)
    —discuss
  27. Git-bug: Distributed, offline-first bug tracker embedded in Git (github.com/git-bug)
    —discuss
  28. Fueling a Return Journey from Mars – Massachusetts Institute of Technology (news.mit.edu)
    —discuss
  29. Walden. Build Deliberately (walden.so)
    —discuss
  30. ZapFast (zapfast.rocks)
    3comments

Show HN: Tlx – E2E chat over SSH under 500 lines of code

3 pointsby 56m agogithub.com
3 comments
This is a reference implementation of encrypted chats for small trusted groups.

It runs SSH server in a container that acts as a mailbox for opaque encrypted blobs (145 lines of code).

SSH keys serve as an identity.

Then a local demon syncs and decrypts these blobs into SQLite database (321 lines of code).

I wanted to make crypto as simple as possible and have only widely used and well audited components.

Relay server and sync demon are implemented in standard Python without any extra dependencies.

I've chosen Python as it ships with SQLite client in standard library. Could have used go/rust, but wanted to keep reference implementation as simple as possible with minimal dependencies.

45m agoHN ↗

Nice. what the use cases and groups of people you see that are going to use it?

24m agoHN ↗

I'll share a quote from a readme

Communicate with people you trust, away from the eyes of modern surveillance and large corporations.

I hope this answers your question.