Hacker News
Show HN: SVGV – A Real-Time Vector Video Format for Budget Hardware
I am a CNC designer from Pakistan. I developed a new logic for vector video (SVGV) to replace traditional pixels with mathematical paths. This approach aims to fix blurry "trashy" video on budget mobile sensors and reduce file sizes by up to 85% for high-fidelity content like K-Dramas. I am looking for technical feedback on the research paper and potential C++/NDK partners.
Comments URL: https://news.ycombinator.com/item?id=46922606
Points: 1
# Comments: 0
Study of 150 developers shows AI generated code no harder to maintain long term
Article URL: https://www.youtube.com/watch?v=b9EbCb5A408
Comments URL: https://news.ycombinator.com/item?id=46922605
Points: 1
# Comments: 0
Spotify now requires premium accounts for developer mode API access
Article URL: https://www.neowin.net/news/spotify-now-requires-premium-accounts-for-developer-mode-api-access/
Comments URL: https://news.ycombinator.com/item?id=46922594
Points: 1
# Comments: 0
When Albert Einstein Moved to Princeton
Article URL: https://twitter.com/Math_files/status/2020017485815456224
Comments URL: https://news.ycombinator.com/item?id=46922587
Points: 1
# Comments: 0
Agents.md as a Dark Signal
Article URL: https://joshmock.com/post/2026-agents-md-as-a-dark-signal/
Comments URL: https://news.ycombinator.com/item?id=46922582
Points: 2
# Comments: 0
System time, clocks, and their syncing in macOS
Article URL: https://eclecticlight.co/2025/05/21/system-time-clocks-and-their-syncing-in-macos/
Comments URL: https://news.ycombinator.com/item?id=46922577
Points: 1
# Comments: 0
McCLIM and 7GUIs – Part 1: The Counter
Article URL: https://turtleware.eu/posts/McCLIM-and-7GUIs---Part-1-The-Counter.html
Comments URL: https://news.ycombinator.com/item?id=46922567
Points: 1
# Comments: 0
So whats the next word, then? Almost-no-math intro to transformer models
Article URL: https://matthias-kainer.de/blog/posts/so-whats-the-next-word-then-/
Comments URL: https://news.ycombinator.com/item?id=46922563
Points: 1
# Comments: 0
Ed Zitron: The Hater's Guide to Microsoft
Article URL: https://bsky.app/profile/edzitron.com/post/3me7ibeym2c2n
Comments URL: https://news.ycombinator.com/item?id=46922552
Points: 2
# Comments: 1
UK infants ill after drinking contaminated baby formula of Nestle and Danone
Article URL: https://www.bbc.com/news/articles/c931rxnwn3lo
Comments URL: https://news.ycombinator.com/item?id=46922551
Points: 1
# Comments: 0
Show HN: Android-based audio player for seniors – Homer Audio Player
Video: https://youtu.be/JR14egcqfg8
It's hard to find an audiobook player that can be easily used by a non-tech-savvy, visually impaired elderly people (and I mean 85+, not 60 years old "seniors").
So I have built my own.
I'm terrible at hardware hacking and I wanted to make something that others can replicate easily. There are many awesome RaspberryPi based projects out there but they're not for me. So my approach was to: use off-the-shelf consumer products: a cheap tablet, a smart case etc. and write an app to push it as far as I can.
I have created Homer Audio Player with the following assumptions and functionality:
- it's meant for two users: a caregiver who manages content and a listener who controls only playback,
- lockdown/kiosk mode - notifications, system navigation and other apps are hidden from the user - this converts an Android device to a dedicated device,
- hidden settings section (optionally) - there's no chance for an accidental tap to "break" anything,
- mainly for audiobooks, but will play anything,
- simplified podcast support - the listener can choose only from a small number (1-5) of the most recent episodes,
- unique features for older users, e.g. you can add extra screen margins to have more area to hold the device by,
- balance between simplicity and functionality: you can enable/disable particular controls like volume, rewind etc.
In the end you get a robust audio device with simple user interface and some hidden smarts.
It has been battle‑tested by my grandmother for over ten years.
Technical stuff:
Kiosk mode is implemented with standard Android for enterprise functionality. The device needs to be factory reset and set up as a "company owned" device by installing a special companion app. The companion app is a device policy controller (DPC) that grants the Homer Audio Player app permissions to enable Android's "lock task". The player app can then pin itself to the screen. It's the regular "task pinning" but it can't be unpinned by user gestures, only by the app itself (which is exposed to the caregiver user in settings). It's relatively friendly to non-technical users. The device can be reverted back to its original state by doing a factory reset. Android Docs: https://source.android.com/docs/devices/admin#fully-managed
Touch screen as input device is not ideal for visually impaired users. It would be much better to have tactile buttons. But I had to work with this limitation by using:
- the accelerometer for "flip-to-stop" - placing the device with screen down stops playback,
- 8" tablet so that the buttons are large enough to see and hit even for low-vision users.
- I haven't enabled TalkBack for my grandmother's device as I'm afraid it might be a bit too techy and requires relatively good motor skills. However buttons are properly labelled for accessibility services.
Text-to-speech comes free on Android for so many languages. So far it's being used to read titles while swiping but I may use it a bit more in the future, e.g. to signal end of audiobook.
Regular Android is running underneath, so any apps can be installed to run in the background. I use "Autosync for Google Drive" to sync a folder and thus manage audiobooks on the device remotely by modifying content in a shared Google Drive folder. I know other users use SyncThing and similar solutions.
I wanted to make a device but I can only make apps, so I made an app that makes the most of a mass-market device. I'd love to hear your feedback or suggestions.
Videos: https://homeraudioplayer.app/videos Google Play: https://play.google.com/store/apps/details?id=com.studio4plu... F-droid: coming soon! GitHub: https://github.com/msimonides/homerplayer2 BlueSky: https://bsky.app/profile/homeraudioplayer.app
Comments URL: https://news.ycombinator.com/item?id=46922549
Points: 3
# Comments: 0
Starter Template for Ory Kratos
Article URL: https://github.com/Samuelk0nrad/docker-ory
Comments URL: https://news.ycombinator.com/item?id=46922540
Points: 1
# Comments: 0
LLMs are powerful, but enterprises are deterministic by nature
Over the last year, we’ve been experimenting with LLMs inside enterprise systems.
What keeps surfacing is a fundamental mismatch: LLMs are probabilistic and non-deterministic, while enterprises are built on predictability, auditability, and accountability.
Most current approaches try to “tame” LLMs with prompts, retries, or heuristics. That works for demos, but starts breaking down when you need explainability, policy enforcement, or post-incident accountability.
We’ve found that treating LLMs as suggestion engines rather than decision makers changes the architecture completely. The actual execution needs to live in a deterministic control layer that can enforce rules, log decisions, and fail safely.
Curious how others here are handling this gap between probabilistic AI and deterministic enterprise systems. Are you seeing similar issues in production?
Comments URL: https://news.ycombinator.com/item?id=46922527
Points: 2
# Comments: 0
Make your iPad 3 a touchscreen for your computer
Article URL: https://github.com/lemonjesus/ipad-touch-screen
Comments URL: https://news.ycombinator.com/item?id=46922507
Points: 2
# Comments: 1
Internationalization and Localization in the Age of Agents
Article URL: https://myblog.ru/internationalization-and-localization-in-the-age-of-agents
Comments URL: https://news.ycombinator.com/item?id=46922506
Points: 1
# Comments: 0
8-piece tablebase development on Lichess (op1 partial)
Article URL: https://lichess.org/@/Lichess/blog/op1-partial-8-piece-tablebase-available/1ptPBDpC
Comments URL: https://news.ycombinator.com/item?id=46922445
Points: 1
# Comments: 0
US to bankroll far-right think tanks in Europe against digital laws
Article URL: https://www.brusselstimes.com/1957195/us-to-fund-far-right-forces-in-europe-tbtb
Comments URL: https://news.ycombinator.com/item?id=46922440
Points: 1
# Comments: 0
Ask HN: Have AI companies replaced their own SaaS usage with agents?
With all the SaaSmageddon going on, I am wondering if companies like Anthropic and OpenAI reduced their SaaS usage and developed their own agents to do the work?
Comments URL: https://news.ycombinator.com/item?id=46922432
Points: 1
# Comments: 0
pi-nes
Article URL: https://twitter.com/thomasmustier/status/2018362041506132205
Comments URL: https://news.ycombinator.com/item?id=46922425
Points: 1
# Comments: 0
Show HN: Crew – Multi-agent orchestration tool for AI-assisted development
I built Crew to help manage multiple AI agents working on the same codebase.
It has two modes:
1. Design mode: Automated Writer ⇄ Reviewer loops to refine ideas into polished design docs
2. Crew mode: Run parallel AI agents (QA, DEV, JANITOR) for continuous code improvement
It's written in Bash and works with Claude CLI, OpenAI's opencode, or Google's Gemini.
Would love feedback from the HN community!
GitHub: https://github.com/garnetliu/crew
Comments URL: https://news.ycombinator.com/item?id=46922422
Points: 1
# Comments: 0
