frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Weak hands and blurry vision: Is your tech giving you 'phone body'?

https://www.bbc.com/future/article/20260630-is-your-tech-giving-you-phone-body
1•dabinat•1m ago•0 comments

Show HN: Toolnexus for Python – MCP, agent skills,a2a for any LLM

https://pypi.org/project/toolnexus/
1•muthuishere•6m ago•0 comments

Oracle outlines all the ways it could lose the farm it bet on AI

https://www.theregister.com/ai-and-ml/2026/07/01/oracle-outlines-all-the-ways-it-could-lose-the-f...
1•Bender•8m ago•0 comments

I'm opening VSCode less and less every day

2•othmanosx•8m ago•0 comments

Show HN: Banto – Turn any topic into a live game room in minutes

https://banto.tv
1•douglaspham•11m ago•0 comments

Red teamers turned Claude Desktop into a double agent to do their evil bidding

https://www.theregister.com/security/2026/07/01/red-teamers-turned-claude-desktop-into-a-double-a...
1•Bender•12m ago•0 comments

Filtering music and speech in YouTube videos to isolate the car engine audio

https://adamsohn.com/separate/
1•dataviz1000•12m ago•0 comments

Russia approved secret China military training at top level, sources say

https://www.reuters.com/business/aerospace-defense/russia-approved-secret-china-military-training...
3•cwwc•16m ago•0 comments

Healthy but Sedentary People Show Early Decline in Cellular Energy Production

https://news.cuanschutz.edu/news-stories/healthy-but-sedentary-individuals-show-early-decline-in-...
3•littlexsparkee•16m ago•0 comments

US feds are actively hiring "person who decides which models to ban"

https://www.usajobs.gov/job/856265200
33•arm32•19m ago•20 comments

Finding a Needle in the Haystack: Querying Physical AI Data with Daft

https://www.eventual.ai/blog/egodex-scenario-search
1•sammysidhu•20m ago•0 comments

Show HN: Shark Tank but you pitch your idea to indie hackers

https://indiesharktank.vercel.app/
1•roozka10•22m ago•0 comments

Weird Al declined 'a nice pile of money' to star in AI ad

https://www.avclub.com/weird-al-yankovic-ai-commercial-exit
3•jimt1234•24m ago•0 comments

I put Claude Code on my Garmin running watch

https://github.com/fashton28/garmin-code
1•fashton28•26m ago•2 comments

The Underhanded C Contest

https://underhanded-c.org/
5•ccabraldev•26m ago•2 comments

Motte-and-Bailey Fallacy

https://en.wikipedia.org/wiki/Motte-and-bailey_fallacy
1•chistev•29m ago•0 comments

Break any AI scam phone call in just a few easy steps [video]

https://www.youtube.com/watch?v=lk3jCuITwcE
1•akavel•32m ago•0 comments

Show HN: GONK – Lightweight Edge-Native API Gateway in Go

https://github.com/JustVugg/gonk
1•vforno•33m ago•0 comments

Lawsuit alleges Samsung, SK Hynix, and Micron colluded to inflate DRAM prices

https://www.polygon.com/ram-manufacturers-sued-supply-price-fixing/
2•DSemba•35m ago•0 comments

Opening up 'Zero-Knowledge Proof' technology to promote privacy in age assurance

https://blog.google/innovation-and-ai/technology/safety-security/opening-up-zero-knowledge-proof-...
1•consumer451•37m ago•0 comments

Teaching AI to Reason About Software

https://soteria-tools.com/blog/teaching-ai
2•giltho•40m ago•0 comments

KDE Linux Introduces "Developer Mode" Option, Easier Log Collection

https://www.phoronix.com/news/KDE-Linux-June-2026
2•Bender•42m ago•0 comments

'It's like having a dumb friend': Young San Franciscans hate AI

https://www.sfgate.com/tech/article/san-francisco-ai-backlash-22325141.php
15•turtlegrids•43m ago•0 comments

US opts not to renew Trump's trade deal with Mexico and Canada

https://www.ft.com/content/2c7b4dc8-1b1c-49f4-b51a-0dee0c1d216a
4•petethomas•44m ago•2 comments

Roost

https://roostsocial.app/
1•JetSpiegel•44m ago•0 comments

Reap: Automatic Curation of Coding Agent Benchmarks

https://arxiv.org/abs/2604.01527
1•dipankarsarkar•47m ago•0 comments

Ask HN: Could someone invite me to lobste.rs?

1•ra0x3•47m ago•0 comments

Are Claude models broken with the Fable 5 update?

1•jackjd•47m ago•0 comments

Cboe Seeks to List Prediction Market Type Options on Earnings Metrics

https://www.bloomberg.com/news/articles/2026-07-01/cboe-seeks-to-list-prediction-market-type-opti...
1•petethomas•48m ago•0 comments

Crimson Room (2004)

https://kbhgames.com/game/crimson-room
1•dieselgate•50m 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!