frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Motorola's preinstalled "Smart Feed" app hijacks apps for affiliate revenue

https://old.reddit.com/r/Android/comments/1tno2z3/motorolas_preinstalled_smart_feed_app_hijacks/
1•stefan_•1m ago•0 comments

EU to squeeze US space tech out of prized satellite airwaves

https://www.politico.eu/article/eu-reserve-satellite-spectrum-operators/
1•berlianta•4m ago•0 comments

The Confession Nobody Expected

https://victoriaaremo.substack.com/p/the-confession-nobody-expected
2•victoria_aremo•6m ago•0 comments

NASA unveils next steps to build permanent Moon base

https://www.bbc.co.uk/news/articles/c39228nxyr4o
2•haack•6m ago•0 comments

Intel: Vision Without Execution, a comic-style deep dive (2000–2026)

https://zozo123.github.io/intel-story/
3•zozo123-IB•7m ago•0 comments

KDE Dolphin with tabs on top discussion

https://bugs.kde.org/show_bug.cgi?id=464386
2•maverick74•7m ago•0 comments

Scott Aaronson won't collaborate with the New York Times anymore

https://scottaaronson.blog/?p=9758
2•camillomiller•7m ago•0 comments

Why do most teleprompter apps suck?

https://thesmartteleprompter.com
1•timcombridge•12m ago•1 comments

Is GitHub Pull Request page copy broken?

https://imgur.com/a/CJfEaIr
2•__natty__•12m ago•0 comments

Uglycash

https://ugly.cash/
1•janandonly•13m ago•0 comments

OpenMLS Has Been Audited

https://blog.phnx.im/openmls-independent-security-audit/
4•raphaelrobert•16m ago•0 comments

1-Bit and Ternary Bonsai Image 4B: Image Generation for Local Devices

https://prismml.com/news/bonsai-image-4b
1•Marius77•17m ago•0 comments

Show HN: Wolf – Turn Slack threads into multiplayer agent workspaces

https://getwolf.dev
3•swimninja247•26m ago•3 comments

Jqwik 1.10.0 ships a hidden prompt injection telling AI agents to delete code

https://github.com/jqwik-team/jqwik/issues/708
1•rjbatllet•27m ago•0 comments

UFC fighting cage rises on White House lawn

https://apnews.com/article/ufc-octagon-white-house-trump-america-250-4fa60d8e0cd34448b55f34f41b18...
2•geox•27m ago•0 comments

Technical Demo Design: Live Coding vs. Pre-Recorded Demos

https://blog.segment8.com/posts/technical-demo-design/
1•ankitg12•28m ago•0 comments

EU Managed Kubernetes Comparison

https://www.eucloudcost.com/kubernetes/
3•mixxor•28m ago•0 comments

Building a Real-Time Stock Momentum Ranking System

https://medium.com/@DolphinDB_Inc/building-a-real-time-stock-momentum-ranking-system-with-dolphin...
3•CrazyTomato•31m ago•0 comments

Nextra – Next.js Static Site Generator

https://nextra.site
1•janandonly•33m ago•0 comments

Claude, Author of the Humanitas

https://linch.substack.com/p/claude-author-of-the-humanitas
1•wyclif•35m ago•0 comments

A Terminal‑Style Maze Game with Corruption and Zombies

https://bluebottleware.itch.io/the-labyrinth
1•j0hnsm1th•37m ago•0 comments

Discover European Tech Alternatives

https://techropa.com
2•doener•39m ago•0 comments

Quantum dot qubit using High NA EUV lithography

https://www.imec-int.com/en/press/world-first-imec-presents-quantum-dot-qubit-device-using-high-n...
1•luu•40m ago•0 comments

Is coherence still a useful signal of truth after generative AI?

https://philpapers.org/rec/JOVSII-2
1•thestructuralme•42m ago•0 comments

San Francisco offline route calculations in browser using Rust (live demo+MIT)

https://punnerud.github.io/mpee/
3•punnerud•48m ago•2 comments

Show HN: Sotto – AI interview assistant for Mac

https://getsotto.ai/
1•sweetgummybears•51m ago•0 comments

Go: Support for Generic Methods

https://github.com/golang/go/issues/77273
1•f311a•52m ago•0 comments

Embedded Recipes 2026 Day One – Live

https://www.youtube.com/watch?v=dFtNisipSY0
1•rettichschnidi•57m ago•1 comments

How AI Agents Work: An Architectural Deep Dive

https://deepresearch.ninja/2026/05/How-AI-Agents-Actually-Work-An-Architectural-Deep-Dive/
1•jackalxyz•1h ago•0 comments

Ask HN: Why do none of the major AI agents persist memory across sessions?

1•hannahLiang•1h ago•0 comments
Open in hackernews

Would you believe try-catch-finally works in plain old C?

4•mf_taria•1y ago
I was digging through some of my old repositories and found a C language extension I wrote years ago. Even now, I think it’s kinda cool — and I’d love for you to check it out.

https://github.com/simpart/c-try

It recreates `try {}` / `catch {}` / `finally {}` in plain C using just macros and global variables. There's also a `$` macro to propagate errors between function calls — a bit like a mini DSL for error handling.

You can find a working example in `test.c`.

It doesn't support nesting or multithreading, and yes, it abuses macros. But hey, it's C.

Comments

actionfromafar•1y ago
Finally!