frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Asahi Investigation Results and Future Measures on Cyberattack Data Exposure

https://www.asahigroup-holdings.com/en/newsroom/detail/20251127-0204.html
1•ChrisArchitect•43s ago•0 comments

SSE sucks for transporting LLM tokens

https://zknill.io/posts/sse-sucks-for-transporting-llm-tokens/
1•zknill•1m ago•0 comments

Seagate achieves 6.9TB storage capacity per platter

https://www.tomshardware.com/pc-components/hdds/seagate-achieves-a-whopping-6-9tb-storage-capacit...
1•elorant•1m ago•0 comments

Shuffle – Game Mode as Experiment Engine

1•gok2•2m ago•0 comments

Grim Fandango film inspirations [pdf]

https://drive.google.com/file/d/1uIofz6_WeSYI3-6SEHT0vqFplb1wfLSW/view
1•Rant423•2m ago•0 comments

Tell HN: It should be okay to use AI for code and papers

1•nis0s•5m ago•0 comments

Show HN: Readit – Portable, dynamic context for AI Agents

https://readit.md/
1•zeerg•6m ago•1 comments

CSS has become too powerful. Here's the solution

https://youtu.be/VsLGfo-e-wc
1•whitep4nth3r•7m ago•0 comments

Pakistan says rooftop solar output to exceed grid demand in some hubs next year

https://www.reuters.com/sustainability/boards-policy-regulation/pakistan-says-rooftop-solar-outpu...
1•toomuchtodo•7m ago•1 comments

NLnet announces funding for 45 more open-source digital infrastructure projects

https://nlnet.nl/news/2025/20251127-45-NGI0-CommonsFund.html
1•pimterry•7m ago•0 comments

Show HN: In The Office Tracker – Track your RTO requirements automatically

https://intheofficetracker.com
1•jryan49•8m ago•0 comments

Greggit – Google but it's only the Reddit results

https://greggit.com
1•goncharom•8m ago•0 comments

Ask HN: What Are You Thankful For?

3•nerdsniper•9m ago•0 comments

10 years of writing a blog nobody reads

https://flowtwo.io/post/on-10-years-of-writing-a-blog-nobody-reads
1•thejoeflow•10m ago•0 comments

The VanDersarl Blériot: a 1911 airplane homebuilt by teenage brothers

https://www.historynet.com/vandersarl-bleriot/
1•ForHackernews•11m ago•0 comments

Thank You Hacker News – To Everyone – It Is the Most Fun Place on the Internet

1•Brajeshwar•11m ago•0 comments

Google Agent Garden

https://console.cloud.google.com/vertex-ai/agents/agent-garden
1•Brajeshwar•11m ago•0 comments

Sharing Your Work Is Like Lifting with Your Legs

https://devonzuegel.com/writing-for-an-audience-is-like-lifting-with-your-legs
1•todsacerdoti•12m ago•0 comments

Show HN: An open-source, air-gapped threat detector for Active Directory

https://github.com/Saeros-Security/Saeros
1•saeros•12m ago•0 comments

Lifetime access to AI-for-evil WormGPT 4 costs just $220

https://www.theregister.com/2025/11/25/wormgpt_4_evil_ai_lifetime_cost_220_dollars/
2•vintagedave•13m ago•0 comments

It's Been a Very Hard Year

https://bell.bz/its-been-a-very-hard-year/
3•tobr•14m ago•0 comments

In Memoriam: Web mascots 404 but not forgotten

https://archive.org/details/in-memoriam-web-mascots
3•ChrisArchitect•14m ago•1 comments

Has China pulled the plug on largest particle collider?

https://www.scmp.com/news/china/science/article/3331618/chinas-god-particle-quest-over-worlds-lar...
1•elashri•15m ago•0 comments

YouChoose: Feed Your Head, Choose Your Algorithm

https://youchoose.ai/
1•thunderbong•17m ago•0 comments

Stirling V2

https://www.stirling.com/blog/introducing-v2
1•Tomte•18m ago•0 comments

Show HN: GemGuard – a security auditing tool for Linux and Windows

https://github.com/AlvaroHoux/gem-guard
1•Alvaro_Houx•21m ago•0 comments

Future Colliders Comparative Evaluation – Working Group Report

https://arxiv.org/abs/2511.20417
1•elashri•21m ago•0 comments

Tested OpenAI's prompt caching across models. Found undocumented behavior

1•harsharanga•23m ago•0 comments

Ingredient in diet sodas, ice cream and chewing gum now linked to liver disease

https://www.dailymail.co.uk/health/article-15328493/Ingredient-diet-sodas-ice-cream-chewing-gum-l...
1•Bender•24m ago•1 comments

Slipknot-gauged mechanical transmission and robotic operation

https://www.nature.com/articles/s41586-025-09673-w
1•bookofjoe•25m ago•0 comments
Open in hackernews

The Trouble with Checked Exceptions

https://www.artima.com/articles/the-trouble-with-checked-exceptions
3•whatever3•1h ago

Comments

Hendrikto•11m ago
Needs (2003) in the title, but still an interesting read.

TL;DR:

> Anders Hejlsberg: I see two big issues with checked exceptions: scalability and versionability.

> Anders Hejlsberg: Let's start with versioning […]. Let's say I create a method foo that declares it throws exceptions A, B, and C. In version two of foo, […] foo might throw exception D. It is a breaking change for me to add D to the throws clause of that method, because existing caller of that method will almost certainly not handle that exception.

> Adding a new exception to a throws clause in a new version breaks client code. It's like adding a method to an interface. After you publish an interface, it is for all practical purposes immutable, because any implementation of it might have the methods that you want to add in the next version. So you've got to create a new interface instead. Similarly with exceptions, you would either have to create a whole new method called foo2 that throws more exceptions, or you would have to catch exception D in the new foo, and transform the D into an A, B, or C.

> Anders Hejlsberg: The scalability issue is somewhat related to the versionability issue. […] With a little example, you can show that you've actually checked that you caught the FileNotFoundException […]. Well, that's fine when you're just calling one API. The trouble begins when you start building big systems where you're talking to four or five different subsystems. Each subsystem throws four to ten exceptions. Now, each time you walk up the ladder of aggregation, you have this exponential hierarchy below you of exceptions you have to deal with. You end up having to declare 40 exceptions that you might throw. And once you aggregate that with another subsystem you've got 80 exceptions in your throws clause. It just balloons out of control.

> In the large, checked exceptions become such an irritation that people completely circumvent the feature. They either say, "throws Exception," everywhere; or—and I can't tell you how many times I've seen this—they say, "try, da da da da da, catch curly curly." They think, "Oh I'll come back and deal with these empty catch clauses later," and then of course they never do. In those situations, checked exceptions have actually degraded the quality of the system in the large.