Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Can you use Claude Cowork to automate A/R? (revexos.com)
    —discuss
  2. Would you wear an air-quality sensor on your body? (cbc.ca)
    —discuss
  3. Doubts grow over claims OpenAI agent hacked Australian Medicare portal (therecord.media)
    —discuss
  4. Financing the AI Buildout (brookings.edu)
    —discuss
  5. Show HN: Worktable, an open-source workspace for you and your agents (github.com/worktable)
    —discuss
  6. Double Split Experiment (claude.ai)
    —discuss
  7. Satin: Dark mode PDF reader via affine mapping on Oklab lightness dimension (github.com/samestep)
    —discuss
  8. Show HN: Hamilton – a no-internet Android health dashboard, named after my dog (play.google.com)
    —discuss
  9. Show HN: JevPertus – Jev-style option scoring on Apertus (github.com/jaluus)
    —discuss
  10. Nobody Asked for a Crab Chair (newmobility.com)
    —discuss
  11. System Design Unboxed: new digital book (lextrem.com)
    —discuss
  12. Show HN: FAA sectional Time Machine, 1930 to today (archive.aero)
    —discuss
  13. Solved cold case may have a connection to the infamous 1982 'Tylenol murders' (spokesman.com)
    —discuss
  14. Ormaos: What happened inside your Python execution? (ormaos.com)
    —discuss
  15. ChatGPT composed a BEAUTIFUL, original piano solo with code. Is this AGI? (twitter.com/adamhincu)
    —discuss
  16. Agent communication should be designed as Byzantine (noetive.io)
    1comments
  17. Ali Alkhatib: Weeds tend not to grow where they can't take root (ali-alkhatib.com)
    —discuss
  18. The "FREAK" TLS/SSL flaw, and related thoughts (galois.com)
    1comments
  19. Octostudio – A free mobile coding app made by the creators of Scratch (octostudio.org)
    —discuss
  20. EU Member States plan "digital expropriation" in the interest of AI companies (noyb.eu)
    —discuss
  21. Jev CEO talk: I made ChatGPT, now I'm building what's next [video] (youtube.com)
    —discuss
  22. Amazon sellers watch as inventory vanishes into pending-order purgatory (theregister.com)
    —discuss
  23. MacSync malware uses public iCloud calendars to deliver new payloads (bleepingcomputer.com)
    —discuss
  24. Peter Thiel on "Back to the Future" (2011) [video] (youtube.com)
    —discuss
  25. Patches Posted for Enabling NVMe on All Apple M3 Based SoCs with Linux (phoronix.com)
    —discuss
  26. IronWarden – A microsecond PII firewall for streaming LLMs in safe Rust (github.com/somnerd)
    —discuss
  27. Show HN: Wave – Layered gradient wave backgrounds using Three.js and shaders (subworkflow.ai)
    —discuss
  28. A Eulogy for the Software Engineer (davekiss.com)
    1comments
  29. Show HN: Sand Timer – a desktop hourglass for macOS where the sand behaves (github.com/and)
    —discuss
  30. How to detect information voids from social media and web searches (nature.com)
    —discuss

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

3 pointsby 1h 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.

1h agoHN ↗

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

1h 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.