frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Volvelle, an early example of a paper analog computer

https://en.wikipedia.org/wiki/Volvelle
1•valzevul•7m ago•0 comments

The Launchpad macOS 26 deserves

https://www.launchie.app
1•nickfthedev•13m ago•0 comments

Dumper: CLI utility for creating database backups – PostgreSQL, MySQL and others

https://github.com/elkirrs/dumper
2•thunderbong•18m ago•0 comments

Scientists Discover How Leukemia Cells Evade Treatment

https://www.rutgers.edu/news/scientists-discover-how-leukemia-cells-evade-treatment
1•geox•20m ago•0 comments

The Inevitable Shift from Prompts to Answers

https://www.aivojournal.org/the-inevitable-shift-from-prompts-to-answers/
2•businessmate•26m ago•1 comments

BoE chief: Brexit impact on UK economy negative for foreseeable future

https://news.sky.com/story/brexit-impact-on-uk-economy-negative-for-foreseeable-future-bank-of-en...
3•teleforce•27m ago•0 comments

I wish SSDs gave you CPU performance style metrics about their activity

https://utcc.utoronto.ca/~cks/space/blog/tech/SSDWritePerfMetricsWish
1•zdw•33m ago•0 comments

Lightning Computational Graph Theory

https://www.youtube.com/watch?v=A-z2ZIMWbuY
3•_untra_•36m ago•0 comments

But AI companies grow so fast

https://99d.substack.com/p/but-ai-companies-grow-so-fast
2•airstrike•36m ago•0 comments

Ask HN: Are you a real human or an LLM?

1•whatever1•37m ago•2 comments

Researchers find adding simple sentence to prompts makes AI models more creative

https://venturebeat.com/ai/researchers-find-adding-this-one-simple-sentence-to-prompts-makes-ai-m...
3•jdnier•45m ago•0 comments

Mortality in the news vs. what we usually die from

https://flowingdata.com/2025/10/08/mortality-in-the-news-vs-what-we-usually-die-from/
2•paulpauper•49m ago•0 comments

What I Learned from Lifting

https://www.atvbt.com/what-i-learned-from-lifting/
2•paulpauper•50m ago•0 comments

Another axiom that Euclid missed

https://web.archive.org/web/20250821165148/https://mathenchant.wordpress.com/2025/01/17/the-real-...
2•gsf_emergency_4•55m ago•0 comments

Show HN: NoCloud Bulk Image Converter (Cross-Platform, Privacy-First)

https://github.com/goto-eof/noc-convert
1•cbrx31•55m ago•1 comments

Dive-computer evidence ignored after 12yr-old's death

https://divernet.com/scuba-news/health-safety/death/dive-computer-evidence-ignored-after-12yr-old...
3•pooyamehri•1h ago•1 comments

Show HN: Drag to AirDrop

https://sindresorhus.com/menu-drop
3•mofle•1h ago•0 comments

Kintsugi Love

https://asim.bearblog.dev/kintsugi-love/
4•asim-shrestha•1h ago•1 comments

The traffickers are winning the war on drugs

https://www.economist.com/briefing/2025/10/16/the-traffickers-are-winning-the-war-on-drugs
25•coloneltcb•1h ago•19 comments

'Girl Take Your Crazy Pills ': Antidepressants Recast as Hot Lifestyle Accessory

https://www.wsj.com/health/wellness/anti-depressants-lifestyle-accessory-3b66027d
3•clanky•1h ago•0 comments

Zeno – open-source AI assistant that turns ideas into tasks

https://zenoapp.site/
2•CrazyCompiler01•1h ago•0 comments

Progress on defeating lifetime-end pointer zapping

https://lwn.net/Articles/1038757/
1•pykello•1h ago•0 comments

Wealth AI – Your Personal AI CFO That Understands Every Rupee You Spend

https://www.sideprojectors.com/project/67099/wealthai
2•WoWSaaS•1h ago•0 comments

Nutrition Beliefs Are Just-So Stories

https://www.cremieux.xyz/p/nutrition-beliefs-are-just-so-stories
4•smnthermes•1h ago•1 comments

Verbalized Sampling: How to Mitigate Mode Collapse and Unlock LLM Diversity

https://arxiv.org/abs/2510.01171
1•jdnier•1h ago•0 comments

Is the Serenibrain EEG headband the best alternative to the Muse headband?

https://ihnnk.tech/pages/mindfulness-meditation-system
1•lijunshi•1h ago•0 comments

Rotring NC-Scriber CS 100 (1990)

https://archive.org/details/rotring-nc-scriber-cs-100-1990
3•gregsadetsky•1h ago•0 comments

How I bootstrapped a platform with a team of LLMs

https://alyx.substack.com/p/how-i-bootstrapped-a-platform-with
2•larakerns•1h ago•0 comments

Show HN: We built the first comprehensive benchmark for legal retrieval

https://huggingface.co/blog/isaacus/introducing-mleb
1•ubutler•1h ago•0 comments

Should scientists be allowed to edit animals' genes? Yes say conservation groups

https://www.nbcnews.com/science/science-news/animals-genetic-engineering-iucn-conservation-groups...
1•jnord•1h ago•0 comments
Open in hackernews

Exception Handling considered harmful (2005)

https://www.lighterra.com/papers/exceptionsharmful/
1•lr0•1d ago

Comments

PaulHoule•1d ago
Whenever people don’t use exceptions they either (a) neglect error handling completely or (b) double or triple their LoC to (usually) implement what exceptions would have done or (c) some hybrid of the first two were error handling is partially implemented but the LoC doesn’t get bloated as much.

“Exceptions suck” is one of those widely held bad opinions that claims to be contrarian in software dev right up there with “OO sux”. Sure exceptions suck in C++ but that’s basically “C++ sux” and the cost of the stack traces is worse that I wish it was but one the defining traumas of my career was typing in a C program from Byte magazine and noticing how the clear logic was defaced by error handling code and how I felt like I’d come home when I started coding in Java and I was no longer 3x my code but rather it was more like 1x + constant.