frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

1M context is now generally available for Opus 4.6 and Sonnet 4.6

https://claude.com/blog/1m-context-ga
259•meetpateltech•9h ago•76 comments

An investigation of the forces behind the age-verification bills

https://lwn.net/Articles/1062779/
34•pabs3•1h ago•3 comments

I Found 39 Algolia Admin Keys Exposed Across Open Source Documentation Sites

https://benzimmermann.dev/blog/algolia-docsearch-admin-keys
82•kernelrocks•3h ago•21 comments

Can I run AI locally?

https://www.canirun.ai/
951•ricardbejarano•13h ago•256 comments

Show HN: Channel Surfer – Watch YouTube like it’s cable TV

https://channelsurfer.tv
415•kilroy123•2d ago•137 comments

Mouser: An open source alternative to Logi-Plus mouse software

https://github.com/TomBadash/MouseControl
204•avionics-guy•7h ago•65 comments

Coding My Handwriting

https://www.amygoodchild.com/blog/cursive-handwriting-in-javascript
37•bwoah•4d ago•3 comments

Qatar helium shutdown puts chip supply chain on a two-week clock

https://www.tomshardware.com/tech-industry/qatar-helium-shutdown-puts-chip-supply-chain-on-a-two-...
434•johnbarron•13h ago•400 comments

Hammerspoon

https://github.com/Hammerspoon/hammerspoon
217•tosh•7h ago•78 comments

Parallels confirms MacBook Neo can run Windows in a virtual machine

https://www.macrumors.com/2026/03/13/macbook-neo-runs-windows-11-vm/
196•tosh•12h ago•272 comments

OpenTelemetry for Rust Developers

https://signoz.io/blog/opentelemetry-rust/
33•dhruv_ahuja•3d ago•6 comments

TUI Studio – visual terminal UI design tool

https://tui.studio/
561•mipselaer•15h ago•274 comments

Human Rights Watch says drone strikes in Haiti have killed nearly 1,250 people

https://haitiantimes.com/2026/03/11/hrw-condemns-haiti-drone-strikes-killing-children/
136•e12e•3h ago•64 comments

Elon Musk pushes out more xAI founders as AI coding effort falters

https://www.ft.com/content/e5fbc6c2-d5a6-4b97-a105-6a96ea849de5
328•merksittich•9h ago•495 comments

Our Experience with I-Ready

https://moultano.wordpress.com/2026/03/12/our-experience-with-i-ready/
17•barry-cotter•1h ago•2 comments

Games with loot boxes to get minimum 16 age rating across Europe

https://www.bbc.com/news/articles/cge84xqjg5lo
13•gostsamo•2h ago•0 comments

Using Thunderbird for RSS

https://rubenerd.com/using-thunderbird-for-rss/
73•ingve•3d ago•13 comments

Stanford researchers report first recording of a blue whale's heart rate (2019)

https://news.stanford.edu/stories/2019/11/first-ever-recording-blue-whales-heart-rate
54•eatonphil•7h ago•38 comments

New 'negative light' technology hides data transfers in plain sight

https://www.unsw.edu.au/newsroom/news/2026/03/New-negative-light-technology-hides-data-transfers-...
63•wjSgoWPm5bWAhXB•2d ago•42 comments

Lost Doctor Who Episodes Found

https://www.bbc.co.uk/news/articles/c4g7kwq1k11o
226•edent•21h ago•73 comments

Kovan: From Production MVCC Systems to Wait-Free Memory Reclamation

https://vertexclique.com/blog/kovan-from-prod-to-mr/
6•EvgeniyZh•3d ago•0 comments

Bucketsquatting is finally dead

https://onecloudplease.com/blog/bucketsquatting-is-finally-dead
313•boyter•17h ago•161 comments

Show HN: Context Gateway – Compress agent context before it hits the LLM

https://github.com/Compresr-ai/Context-Gateway
61•ivzak•8h ago•45 comments

Source code of Swedish e-government services has been leaked

https://darkwebinformer.com/full-source-code-of-swedens-e-government-platform-leaked-from-comprom...
204•tavro•16h ago•196 comments

Your phone is an entire computer

https://medhir.com/blog/your-phone-is-an-entire-computer
246•medhir•8h ago•237 comments

Launch HN: Spine Swarm (YC S23) – AI agents that collaborate on a visual canvas

https://www.getspine.ai/
85•a24venka•12h ago•67 comments

John Carmack about open source and anti-AI activists

https://twitter.com/id_aa_carmack/status/2032460578669691171
236•tzury•8h ago•333 comments

Meta Platforms: Lobbying, dark money, and the App Store Accountability Act

https://github.com/upper-up/meta-lobbying-and-other-findings
1170•shaicoleman•16h ago•485 comments

The Wyden Siren Goes Off Again: We'll Be "Stunned" by NSA Under Section 702

https://www.techdirt.com/2026/03/12/the-wyden-siren-goes-off-again-well-be-stunned-by-what-the-ns...
372•cf100clunk•10h ago•112 comments

Launch HN: Captain (YC W26) – Automated RAG for Files

https://www.runcaptain.com/
45•CMLewis•10h ago•28 comments
Open in hackernews

"Added 1M context window for Opus 4.6 by default for Max, Team, and Enterprise"

https://raw.githubusercontent.com/anthropics/claude-code/refs/heads/main/CHANGELOG.md
20•taspeotis•2h ago

Comments

gnabgib•2h ago
Earlier (29 points, 4 comments) https://news.ycombinator.com/item?id=47367129
tyleo•1h ago
I mentioned this at work but context still rots at the same rate. 90k tokens consumed has just as bad results in 100k context window or 1M.

Personally, I’m on a 6M+ like codebase and had no problems with the old window.

atonse•1h ago
CC seems to have gotten pretty good with auto compacting and continuing where it left off. Are there any good use cases for this?

I guess it would be to avoid tool use?

satring•1h ago
The big win is multi-file refactors where the model needs to hold the full dependency graph in context simultaneously. With 200k, compaction kicks in mid-task and the model loses track of which files it already changed, leading to inconsistencies or repeated work. With 1M you can load an entire module (tests, types, implementation) and get a coherent refactor in one pass.

Also useful for long debugging sessions where the conversation history itself is the context. Compaction preserves a summary, but summaries lose the exact error messages, stack traces, and failed approaches that help the model avoid going in circles.

atonse•31m ago
But interestingly every now and then I look at the compaction result and it now says if you need to reference the previous conversation you can open <file>. So technically that context is connected.

I’ve noticed MCPs get unstable after compaction. but even that’s been less so lately.