frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

.furry – A Top-Level Domain for Furries

https://www.dotfurry.org/
1•birdculture•12s ago•0 comments

Show HN: Constellation is an open-source Hasura-compatible GraphQL engine in Go

https://nhost.io/blog/introducing-constellation
1•nunopato•1m ago•0 comments

Blue Origin Issues Official Statement on New Glenn Explosion

https://www.universetoday.com/articles/blue-origin-issues-official-statement-on-new-glenn-explosion
1•tcp_handshaker•1m ago•0 comments

European Commission proposes tech sovereignty package

https://ec.europa.eu/commission/presscorner/home/en
1•liotier•1m ago•0 comments

Build 2026: Furthering Windows as the trusted platform for development

https://blogs.windows.com/windowsdeveloper/2026/06/02/build-2026-furthering-windows-as-the-truste...
1•mariuz•2m ago•0 comments

Logicomix and 6 months at my new job

https://avocadoslaw.substack.com/p/logical-thoughts-on-logicomix
1•m_aiswaryaa•4m ago•0 comments

Fixing my ridiculous fridge with a tiny Funnel site

https://tailscale.com/blog/funnel-fridge
1•Brajeshwar•5m ago•0 comments

Companies Are Using Reddit to Manipulate ChatGPT and Google AI Search

https://www.404media.co/companies-are-using-reddit-to-manipulate-chatgpt-and-google-ai-search/htt...
2•SpyCoder77•5m ago•0 comments

Why are so many Show HNs being flagged?

1•866-RON-0-FEZ•5m ago•1 comments

Show HN: Testbump – automated test driven versioning

https://github.com/ivoputzer/testbump
2•ivoputzer•6m ago•0 comments

Dotnet-slopwatch – detect when AI coding agents "fix" problems by cheating

https://github.com/Aaronontheweb/dotnet-slopwatch
1•bastijn•8m ago•0 comments

A victory for digital common sense: Bavaria's deal with Microsoft falls through

https://www.abendzeitung-muenchen.de/bayern/sieg-fuer-die-digitale-vernunft-bayern-deal-us-softwa...
2•eigenspace•10m ago•1 comments

SemiAnalysis: TCO of Space Datacenters

https://newsletter.semianalysis.com/p/to-boldly-go-the-case-for-space-datacenters
1•samber•13m ago•0 comments

CI caching is not one cache

https://zozo123.github.io/gha-cache-field-guide/
1•zozo123-IB•14m ago•0 comments

GPS satellites have broadcast a "numbers station" in their public signals

https://mastodon.social/@sjmurdoch/116681186650836098
1•pavel_lishin•15m ago•0 comments

Show HN: Division Swarm, the OS for Multi-Agent Systems

https://github.com/division-sh/swarm
1•vn0m•16m ago•0 comments

Signal Struggles on Trains Widespread

https://www.ofcom.org.uk/phones-and-broadband/coverage-and-speeds/signal-struggles-on-trains-wide...
1•berlianta•16m ago•0 comments

Qwen 3.7 Plus

https://artificialanalysis.ai/models/qwen3-7-plus
1•theanonymousone•17m ago•0 comments

Partial Graphics Programs

https://devblogs.microsoft.com/directx/partial-graphics-programs/
1•ibobev•17m ago•0 comments

AgilitySDK 721 Preview and an addition to LinAlg in Shader Model 6.10

https://devblogs.microsoft.com/directx/announcing-agilitysdk-721-preview-and-more-shader-model-6-...
1•ibobev•18m ago•0 comments

I built an API that stops AI hallucinating colour

https://colourmemory.com/start
1•DigbyO•19m ago•0 comments

Show HN: Nib, collaborative font editor on the web

https://nibfont.com/
1•johnnydamacha•19m ago•0 comments

Intel's new CEO cut management layers in half. The stock is up nearly 500%

https://fortune.com/2026/06/03/intel-ceo-lip-bu-tan-ai-semiconductors-innovation/
1•Brajeshwar•19m ago•0 comments

(PewDiePie) any LOCAL AI model close to Claude Code?

1•knowmygpa•21m ago•0 comments

Do we fear the serializable isolation level more than we fear subtle bugs?

https://blog.ydb.tech/do-we-fear-the-serializable-isolation-level-more-than-we-fear-subtle-bugs-5...
2•b-man•22m ago•0 comments

Meta enters enterprise AI race with new business agent

https://www.reuters.com/business/meta-launches-enterprise-focused-ai-business-agent-automate-dail...
1•tartoran•22m ago•0 comments

Show HN: NoiR Code – because QR sounds similar to "noir"

https://noir-code.suncake.xyz/
1•Sunkek•22m ago•1 comments

AI Has Ruined the Job Market

https://www.theatlantic.com/ideas/2026/06/ai-job-market-hiring/687403/
1•FinnLobsien•23m ago•1 comments

AI to double data centre power and water consumption by 2030, UN researchers say

https://www.reuters.com/business/energy/ai-double-data-centre-power-water-consumption-by-2030-un-...
2•tartoran•23m ago•0 comments

Running a full blockchain stack locally (2024, 22 minutes) [video]

https://www.youtube.com/watch?v=H-R5FqrCYQs
1•Olshansky•23m 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!