frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Virginia bans sale of geolocation data

https://www.hunton.com/privacy-and-cybersecurity-law-blog/virginia-bans-sale-of-geolocation-data
164•toomuchtodo•1h ago•20 comments

Exapunks (2018)

https://www.zachtronics.com/exapunks/
184•yu3zhou4•3h ago•68 comments

Since Linux 6.9, LUKS suspend stopped wiping disk-encryption keys from memory

https://mathstodon.xyz/@iblech/116769502749142438
359•IngoBlechschmid•7h ago•173 comments

Podman v6.0.0

https://blog.podman.io/2026/07/introducing-podman-v6-0-0/
311•soheilpro•8h ago•114 comments

Lightning Memory-Mapped Database Manager (LMDB) 1.0

http://www.lmdb.tech/doc/
45•radiator•2h ago•17 comments

EFF letter to FTC on X consent order (2 July 2026) [pdf]

https://cdn.arstechnica.net/wp-content/uploads/2026/07/EFF-letter-to-FTC-on-X-consent-order-7-2-2...
75•Terretta•3h ago•18 comments

PeerTube is a free, decentralized and federated video platform

https://github.com/Chocobozzz/PeerTube
447•doener•11h ago•204 comments

Vulkan is now available on NetBSD

https://github.com/segaboy/vulkan-netbsd
65•segaboy81•3h ago•14 comments

Reality has a surprising amount of detail

https://johnsalvatier.org/blog/2017/reality-has-a-surprising-amount-of-detail
29•vinhnx•4d ago•9 comments

Postgres transactions are a distributed systems superpower

https://www.dbos.dev/blog/co-locating-workflow-state-with-your-data
68•KraftyOne•3h ago•32 comments

How to ask for help from people who don't know you

https://pradyuprasad.com/writings/how-to-ask-for-help/
327•FigurativeVoid•9h ago•50 comments

The Short Leash AI Coding Method for Beating Fable

https://blog.okturtles.org/2026/07/short-leash-ai-method/
40•Riseed•3h ago•24 comments

Superpowers 6

https://blog.fsck.com/2026/06/15/Superpowers-6/
35•seahorseemoji•2d ago•9 comments

Great Salt Lake Tracker – Grow the Flow

https://growtheflowutah.org/laketracker/
30•cfowles•2h ago•3 comments

JEP 539: Strict Field Initialization in the JVM moved to preview

https://openjdk.org/jeps/539
43•za3faran•3h ago•12 comments

Launch HN: Manufact (YC S25) – MCP Cloud

https://manufact.com
96•pzullo•7h ago•60 comments

Claude-real-video - any LLM can watch a video

https://github.com/HUANGCHIHHUNGLeo/claude-real-video
43•cortexosmain•3h ago•11 comments

BlastRadar – paste a Git diff, get a production risk score in 10 seconds

https://blastradar.vercel.app/
8•M_Carpenter•1h ago•0 comments

Immich 3.0

https://github.com/immich-app/immich/discussions/29439
98•hashier•8h ago•32 comments

Show HN: zkGolf – Competitive optimization of formally verified circuits

https://zk.golf/
30•rot256•6h ago•2 comments

A New Catalog of Stellar Rotation Periods for over a Million Stars

https://aasnova.org/2026/07/01/a-new-catalog-of-stellar-rotation-periods-for-over-a-million-stars/
18•visha1v•3h ago•2 comments

Spain Orders Blacklist of Palantir from Public and Private Companies

https://clashreport.com/world/articles/spain-orders-blacklist-of-us-tech-giant-palantir-from-publ...
503•mgh2•7h ago•164 comments

24-bit/192kHz music downloads and why they make no sense (2012)

https://people.xiph.org/~xiphmont/demo/neil-young.html#toc_wd2bm
77•Kaapeine•6h ago•105 comments

Hazel (YC W24) Is Hiring for Our Largest Government Contract

https://www.ycombinator.com/companies/hazel-2/jobs/3epPWgu-full-stack-engineer-ts-sci
1•augustschen•9h ago

Client-side load balancing at a million requests per second

https://engineering.zalando.com/posts/2026/06/client-side-load-balancing.html?v=2](https://engine...
32•cjbooms•1d ago•5 comments

LibreCAD in the Browser

https://magik.net/librecad/
63•devttyeu•21h ago•5 comments

Wireless LAN SD

https://www.sdcard.org/developers/sd-standard-overview/sdio-isdio/wireless-lan-sd/
18•sharpshadow•2h ago•18 comments

AI can't be listed as inventor on patent applications, Japan's top court rules

https://japannews.yomiuri.co.jp/science-nature/technology/20260306-314930/
343•mushstory•8h ago•182 comments

German button maker searched rivers of American Midwest for valuable shells

https://www.smithsonianmag.com/smithsonian-institution/how-one-german-button-maker-searched-the-r...
130•bookofjoe•5d ago•41 comments

Ask HN: Since when does Craigslist's front page have emojis?

30•argee•2d ago•30 comments
Open in hackernews

Claude-real-video - any LLM can watch a video

https://github.com/HUANGCHIHHUNGLeo/claude-real-video
43•cortexosmain•3h ago

Comments

cortexosmain•3h ago
Hi HN! I built this because I was frustrated that no LLM actually "sees" a video — Claude won't accept video files, ChatGPT reads the transcript only, and Gemini samples at a fixed 1fps (missing fast cuts, over-sampling static slides).

claude-real-video takes a URL or local file and:

1. Extracts frames at every scene change (not fixed intervals) + a density floor 2. Deduplicates with a sliding-window pixel-diff algorithm (so A-B-A interview cutaways don't re-send the same shot) 3. Transcribes audio (prefers embedded subtitles, falls back to Whisper) 4. Optionally keeps the full soundtrack for audio-capable models 5. Writes a clean MANIFEST.txt you can drop into any LLM chat

A 10-min presentation goes from ~600 fixed-interval frames to 5-15 meaningful keyframes. 90%+ token savings with better comprehension.

The dedup approach (v0.2.0) uses real pixel difference on 16x16 RGB thumbnails against a sliding window of the last N kept frames — inspired by videostil's pixelmatch, but simpler and self-contained.

`--report` generates a self-contained HTML showing every keep/drop decision with diff percentages, so you can tune the threshold visually.

pip install claude-real-video && crv "https://youtube.com/watch?v=..." --report

MIT licensed, pure Python + ffmpeg. Happy to answer questions!

ProofHouse•1h ago
Very cool I have something that does this as well along these lines. I’ll dig into yours over the next few days and contribute where and if I can too, awesome to see!
AmazingEveryDay•33m ago
I think a more or less clunky name like 'llm video preprocessor' would be better description? In any case seems like a you came up with a good project idea. I wonder how long until the sota models will just have this kind of functionallity built in.
garciasn•26m ago
I gave Claude a video provided by a county attorney for a speeding ticket I got. It was spot on in its analysis, even though I don’t like what the video showed.

What does it mean that Claude can’t view video; it did it just fine. Or do you mean tool less?

torhorway•3m ago
yeah im pretty sure claude code can handle videos. its been doing frame by frame analysis for me with generated video to iterate on pipelines
gvkhna•56m ago
Nice @OP i put together something similar as well. Incidentally I found for motion design specifically llm is not able to infer specific animations as well as it just being described very plainly and accurately what is happening and the timing.

One thing which sort of worked decently was actually take the frames and put them into a grid and have the agent look at the image of all of the frames together. It did surprisingly well but missed a lot of subtle details that it couldn’t see.

Also tried various kinds of vision embeddings, heat map of motion etc, and blur etc to show motion. But none really worked as well so I ended up just describing it until it got it. Haven’t quite found the right solution yet.

ElijahLynn•50m ago
I was just thinking about this exact use case yesterday:

And it's for me measuring different charged speeds at different starting battery capacities and different temperatures and I was like well. What if I just had a video camera pointing at the voltage going in and out and then I could see the battery percentage increase and I can have a temperature gun pointed at the phone as well. And I couldn't know what temperature of the phone is as well and it could just figure it all out create charts..

This would make reviewing different charging equipment really easy as long as you really have to do is plug it in and tell other people to do the same thing and take a video of it and beat it to the system.

I might very well give this a try!

fred123123•43m ago
How do you handle things like scrolling quickly in a video?
BeetleB•30m ago
I think this is much more useful than just LLM related applications. I'd suggest renaming it to not make it seem like it's LLM related.
nxtfari•21m ago
this is really clever, props
bonoboTP•4m ago
"Where the video goes: stays on your machine" - No, the frames (that this tool extracts) obviously get sent to Anthropic if you use Claude.