Live data from Hacker News

Show HN: Screen memory without screenshots, just text to Markdown

github.com

21–30 of 30 posts

Re: Show HN: Screen memory without screenshots, just text to Markdown

#22
post #20
post #19

Earlier quoted context omitted.

OCR starts from screenshots though. This only grabs text via accessibility APIs, before rendering or any screenshots.

Yes, I know. Like I said : “Project reasons aside”. I’m not suggesting OCR for this, I’m imparting the general information to be used in other situations that in macOS you can OCR without requiring third-party tools.

Fair! It is actually new and interesting information for me (not into macOS dev)

Re: Show HN: Screen memory without screenshots, just text to Markdown

#24
A cool project, but feels like fundamentally the wrong approach when what you do most likely leaves a string of structured digital footprints anyway. I’ve got an agent that fills out my timesheets by looking at git commits, agent history, Slack messages, emails, and time-tracker tickets. I guess I could add relevant web-browsing?

Re: Show HN: Screen memory without screenshots, just text to Markdown

#26

neat. why not screenshot and tesseract (videos/images/viewport/etc)

When I built rem, I spent significant effort getting screenshot -> ocr + screenshot -> ffmpeg loop energy efficient, but it definitely is more expensive than accessibility API.

You also save a lot of disk space and writes to disk.

That being said, you lose the cool swipe to go back in time and search through history and visually see, features.

And situations where accessibility isn't supported.

And as others have mentioned, built in ocr is definitely better than tesseract.

Re: Show HN: Screen memory without screenshots, just text to Markdown

#28
Update: I've added a prompt to process the raw output into something more useful: https://github.com/dragthelake/ambient-context/blob/main/doc...

This is pretty magical tbh

Also added MIT license and added some more pruning to reduce initial capture by around 10%.

Re: Show HN: Screen memory without screenshots, just text to Markdown

#29
The per-app breakage is the real problem with text extraction, not accuracy, like etchalon pointed out. Screenshots dodge that since they look the same no matter what is rendering. Cropping to the window and marking it up before it goes anywhere also skips the full screen recording and the orange icon. https://slimsnap.ai already works that way.
Post reply on HN