frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

OpenAI rips Anthropic, distances itself from Microsoft

https://www.axios.com/2026/04/13/openai-microsoft-anthropic-amazon
1•Brajeshwar•1m ago•0 comments

Show HN: I Added Support for Qwen3-ASR and Qwen3 ForcedAligner in WhisperX

https://github.com/m-bain/whisperX/pull/1401
1•mahfouz22•2m ago•0 comments

I built an AI to do my job end-to-end. The problem wasn't the AI

https://medium.com/@iroy2000/i-tried-to-automate-my-own-job-heres-what-i-found-15fb86d415c2
1•iroy2000•3m ago•1 comments

Using Actor Network Theory to rethink work in the age of generative AI

https://stripepartners.substack.com/p/this-months-frame-using-actor-network
1•laurex•4m ago•0 comments

Show HN: Messaging without phone numbers, email, or metadata

https://tunnelmessenger.com/access
1•trpfnc•4m ago•0 comments

Show HN: LoadLens – See why queues hide overload instead of solving it

https://loadlens.dev
1•janbalangue•5m ago•0 comments

Show HN: AriaType – open-source privacy-first and local-first voice-to-text app

https://github.com/joe223/AriaType
1•Joe_Harris•6m ago•0 comments

Bot Bait – Just hit $2K MRR after 8 months of grinding

https://old.reddit.com/r/SaaS/comments/1sl3mrh/just_hit_2k_mrr_after_8_months_of_grinding
1•csomar•6m ago•0 comments

Show HN: Cliparr – Export clips from your personal media server

https://github.com/TechSquidTV/Cliparr
1•TechSquidTV•7m ago•0 comments

Same LLM, different agent: a CI debugger built on Claude

https://www.mendral.com/blog/same-llm-different-agent
1•shad42•9m ago•0 comments

The Meta Product Manager

https://k2xl.substack.com/p/the-meta-product-manager
2•k2xl•9m ago•0 comments

Building a Browser for the Agent Era

https://www.tinyfish.ai/blog/building-a-browser-for-the-agent-era
3•tiny-automates•10m ago•2 comments

Missing Emails in Gmail? It's Your Tabs – and It Costs You More Than You Think

https://clearmailapp.com/blog/gmail-missing-emails-hidden-cost/
1•raghukumar•11m ago•0 comments

Ozempic Dreams

https://daverupert.com/2026/04/ozempic-dreams/
2•speckx•11m ago•0 comments

Hyperbridge exploited two weeks after April Fools' hack joke

https://www.web3isgoinggreat.com/single/hyperbridge-exploit
3•LorenDB•12m ago•0 comments

Is This Agent Safe? Free security checker with scores no platform can revoke

https://agentgraph.co/check
1•kenneives•12m ago•0 comments

Zig 0.16.0 Release Notes

https://ziglang.org/download/0.16.0/release-notes.html
3•ska80•12m ago•0 comments

Amazon Bio Discovery

https://aws.amazon.com/blogs/industries/introducing-amazon-bio-discovery/
1•firasd•12m ago•0 comments

Google, Microsoft, Meta All Tracking You Even When You Opt Out

https://www.404media.co/google-microsoft-meta-all-tracking-you-even-when-you-opt-out-according-to...
11•Cider9986•13m ago•0 comments

Airbnb Hosts Dont Want to Talk to Guests Anymore, Are Outsourcing Messages to AI

https://www.404media.co/airbnb-hosts-dont-want-to-talk-to-guests-anymore-are-outsourcing-messages...
1•Cider9986•13m ago•0 comments

New toothpaste stops gum disease without killing good bacteria

https://www.sciencedaily.com/releases/2026/04/260413043141.htm
1•atombender•13m ago•0 comments

Prolog Implementation of the IRS Fact Graph

https://github.com/alexpetros/factgraph.pl
1•triska•13m ago•0 comments

IMF warns global economy at risk of recession if Iran war persists

https://www.bbc.com/news/articles/c4g66p2q075o
1•Cider9986•14m ago•0 comments

For the First Time in the U.S., Renewables Generate More Power Than Natural Gas

https://e360.yale.edu/digest/us-renewables-natural-gas-coal
13•Brajeshwar•15m ago•1 comments

1-Bit Bonsai: The First Commercially Viable 1-Bit LLMs

https://prismml.com/news/bonsai-8b
1•wicket•16m ago•2 comments

The Fediverse deserves a dumb graphical client

https://adele.pages.casa/md/blog/the-fediverse-deserves-a-dumb-graphical-client.md
4•speckx•17m ago•1 comments

Show HN: A memory database that forgets, consolidates, and detects contradiction

https://github.com/yantrikos/yantrikdb-server
2•pranabsarkar•18m ago•1 comments

Ask HN: What funding models exist for a search engine?

1•PingCo•19m ago•0 comments

Re-Mapping Opcodes on the 6502

https://6502.org/forum/viewtopic.php?t=1949
2•JPLeRouzic•20m ago•0 comments

Prof. Eric Goldman on "sign-in wrap" decision from Judge Orrick

https://blog.ericgoldman.org/archives/2026/04/remember-when-the-ninth-circuit-rejected-classpass-...
1•dctoedt•21m ago•0 comments
Open in hackernews

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

4•mf_taria•11mo 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•11mo ago
Finally!