frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Fed Chairman Kevin Warsh pledges Fed policy regime change to rid inflation tax

https://www.cnbc.com/2026/07/14/warsh-promises-inflation-will-be-a-thing-of-the-past-cites-benefi...
1•donsupreme•2m ago•0 comments

Meta used AI to target workers with medical conditions for layoffs

https://www.reuters.com/world/meta-used-ai-target-workers-with-medical-conditions-layoffs-former-...
3•nlpnerd•2m ago•0 comments

The Agent Loop Is the New SaaS

https://lobu.ai/blog/the-agent-loop-is-the-new-saas/
1•buremba•2m ago•0 comments

The US Approves Launch of Mirror Satellite That Can Reflect Sunlight at Night

https://www.wired.com/story/reflect-orbital-earendil-mirror-satellite-fcc/
1•achristmascarl•2m ago•1 comments

Show HN: Manifest – Turn any webpage into a structured action manifest for agent

https://demo.manifest.omfang.io/demo
1•Maxnordstrom•3m ago•0 comments

Software hiring has become absurd

https://twitter.com/DanielGlejzner/status/2076985401915429296
2•bilsbie•4m ago•0 comments

You have zero privacy anyway. Get over it

https://www.techradar.com/pro/quote-of-the-day-by-sun-microsystems-ceo-scott-mcnealy-you-have-zer...
1•theanonymousone•5m ago•1 comments

Honeycomb Structures Spotted on Mars

https://www.space.com/astronomy/mars/honeycomb-structures-spotted-on-mars-space-photo-of-the-day-...
1•speckx•5m ago•0 comments

Chefkiss Inferno: Open-Source Apple Silicon Emulator

https://chefkiss.dev/applehax/inferno/
1•jeswin•10m ago•1 comments

Wirehead (Science Fiction)

https://en.wikipedia.org/wiki/Wirehead_(science_fiction)
2•cainxinth•10m ago•0 comments

Microsoft Confirms Windows GDID Device Identifier That Cannot Be Disabled

https://www.ghacks.net/2026/07/12/microsoft-confirms-windows-gdid-device-identifier-that-cannot-b...
1•doener•10m ago•0 comments

Old Icons

https://leancrew.com/all-this/2026/07/old-icons/
1•surprisetalk•11m ago•0 comments

Claude for Teachers

https://www.anthropic.com/news/claude-for-teachers
1•surprisetalk•11m ago•0 comments

Show HN: Noteato – Notion-like notes as local Markdown files

https://github.com/shashankbhat2/noteato
2•dankbhat26•11m ago•0 comments

New York to enact nation's first statewide data center moratorium

https://gothamist.com/news/hochul-puts-hold-on-large-data-centers-in-new-york
1•PLenz•12m ago•1 comments

Aevum – Free AI RPG engine for Claude with persistent factions and economy

https://github.com/RukkaNova/aevum-realm-architect
1•arcanumrpgs•12m ago•0 comments

Why Claude uses the browser like a drunk intern, and how to fix it

https://pluno.ai/blog/why-claude-uses-browser-like-drunk-intern
2•korabs•12m ago•1 comments

If(Facebook == PornBook) Delete Facebook;

1•theoutfield•14m ago•0 comments

Progress orders emergency ShareFile server shutdown over mystery security threat

https://www.theregister.com/security/2026/07/13/progress-orders-emergency-sharefile-server-shutdo...
1•toomuchtodo•14m ago•1 comments

Count the Bytes, Not the FLOPs

https://thepragmaticquant.com/why-we-stopped-materializing-arrays/
1•sgilda•15m ago•0 comments

Show HN: Codynet – free, privacy-first DNS and network tools

https://codynet.com
1•codymisc•15m ago•0 comments

We asked Meta's new model to build things its team had rejected

https://github.com/adelinamart/robrain/tree/main/packages/vetobench/results/muse-spark-1.1-series
1•mart1adelina•15m ago•0 comments

Show HN: I built a smart proxy so your coding agent can run loose

https://trollbridge.dev/
1•dandriscoll•15m ago•0 comments

OpenAI Plans to Win over Doctors, Patients and Hospitals

https://www.forbes.com/sites/amyfeldman/2026/07/07/how-openai-plans-to-win-over-doctors-patients-...
1•brandonb•16m ago•0 comments

The MCP debate has a context problem

https://thenewstack.io/mcp-enterprise-agent-governance/
1•Brajeshwar•17m ago•0 comments

Open-Source APK Secret Scanner: Dexpose

https://github.com/zuhayrb/dexpose
1•ZuhayrBarhoumi•18m ago•0 comments

2026 CSTA K-12 CS Standards – what should students know about computing?

https://csteachers.org/pk12standards/
1•bmackenty•20m ago•1 comments

Sale of multimillion-dollar T rex skeleton is big headache for scientists

https://www.theguardian.com/science/2026/jul/14/t-rex-skeleton-sothebys-auction-new-york-scientists
1•speckx•21m ago•0 comments

Show HN: Post-quantum signing keys that never leave the iPhone's Secure Enclave

https://github.com/jimcase/capacitor-pq-secure-storage
1•jcaso•24m ago•0 comments

"If HEIC has no haters I'm dead."

https://unsung.aresluna.org/if-heic-has-no-haters-im-dead/
2•speckx•24m ago•0 comments
Open in hackernews

Show HN: Run SAM only when your tracker is uncertain – #1 on SportsMOT

https://www.holma.io/blog/posts/selective-mask-propagation
2•lapuerta•1h ago
This started when I saw a Roboflow tutorial tracking basketball players by giving every player's box to SAM2 and propagating masks through the whole clip (https://www.youtube.com/watch?v=yGQb9KkvQ1Q). Identity preservation worked way better than any dedicated tracker I'd used before but it only ran at 1–2 fps, where both speed and memory was scaling with player count.

Most frames don't need SAM at all though. A normal tracking-by-detection tracker matches boxes frame to frame by solving an assignment problem on a cost matrix, and for most of a game that matching is completely trivial. It breaks down when players get close and two assignments look almost equally good, which you can see in the cost matrix because best and second-best assignment are equal or close to equal. I define that as the assignment margin, and this margin acts as a signal/cue for using SAM.

So the system runs a lightweight tracker (Deep-EIoU, but could use any tracker with a cost matrix e.g SORT or ByteTrack) on every frame and only brings in SAM 3 when a margin collapses. SAM gets seeded a few frames earlier, on a recent frame where the player was still clearly separated, propagates the mask through the crossing, and once things calm down we check which box the mask ended up in. If it settled into a different track than it was seeded on, the tracker swapped identities somewhere in the pile and we rename them.

There's no training anywhere, and both the tracker and SAM are used as black boxes. When I swapped SAM 2 for SAM 3 the whole system improved without touching anything else. It's currently #1 on SportsMOT with 87.2 HOTA.

Code: https://github.com/holma91/selective-mask-propagation, paper: https://arxiv.org/abs/2606.13033, leaderboard: https://www.codabench.org/competitions/13077/#/results-tab. Happy to answer questions!