frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

DDRop: Memory Interposer Attacks on Confidential VMs by Dropping DDR5 Writes

https://ddropattack.eu/
1•jessegeens•1m ago•0 comments

Meta-analysis of the association between childhood maltreatment and depression

https://doi.org/10.1111/acps.13794
1•rendx•2m ago•0 comments

King Ludd

https://www.astralcodexten.com/p/king-ludd
2•jstanley•11m ago•0 comments

Pocket Bibles and AI

https://www.amytis.io/blog/insights-on-ai-from-the-reformation
2•nixlaz•12m ago•2 comments

Open Letter about the Mathathon

https://proofsandprompts.com/2026/09/10/open-letter-about-the-mathathon/
1•tirumaraiselvan•16m ago•0 comments

FastAPI-Crons – Cron jobs that live inside your FastAPI app

https://crons.darcode.dev
1•amai•21m ago•0 comments

Creating word recordings with AI: learning where to cut

https://freshteapot.net/writing/creating-word-audio-with-ai/
1•freshteapot•23m ago•0 comments

US Air Force secretary reveals deployment of on-orbit space control weapons

https://www.militarytimes.com/news/your-military/2026/09/14/us-air-force-secretary-reveals-deploy...
2•dustfinger•24m ago•0 comments

I Have to Bury My Talent in Yesterday

https://www.reddit.com/r/LocalLLaMA/comments/1wgii3h/deepseek_engineer_relections_on_rsi_burying_my/
2•deyiao•33m ago•1 comments

Show HN: Knecht, a tool for building software factories for agencies

https://knecht.works
1•samuelreichor•38m ago•0 comments

Challenging AI

https://jensrantil.github.io/posts/challenging-ai/
1•JensRantil•39m ago•0 comments

I built a free tool that turns your resume into a personal website

https://self.cv/en
1•javier_yc_new•41m ago•1 comments

'Decimated My Life': The Risks of Pushing the Limits for Clicks

https://www.nytimes.com/2026/09/12/us/influencers-social-media-algorithm.html
3•thm•42m ago•0 comments

Show HN: QuantSupport, a Rust-based quant library

https://github.com/jmelo11/quantsupport
1•jmelo11•43m ago•0 comments

Show HN: Back Me Up – Find papers that back your argument

https://backmeup.loomlabs.au
1•argilium•43m ago•0 comments

SkyForce UI – React and Tailwind UI Suite with an Offline Electron Builder

https://skyforceui.com/
1•alexandrubulacu•43m ago•0 comments

A metasearch engine and privacy-first multi-engine search aggregator

https://ethfata.com/
1•massimilianosal•44m ago•1 comments

Show HN: Spec sheets for humans – who you are and how to work with you

https://spec.md
1•allanmaeots•49m ago•0 comments

Trying to understand SR-1 Freedom

https://mceglowski.substack.com/p/trying-to-understand-freedom
2•calcifer•50m ago•0 comments

Study links low-arousal background music to healthier food choices in restaurant

https://www.nature.com/articles/s41538-026-01146-2
2•giuliomagnifico•51m ago•0 comments

Keeping Markdown canonical once decisions start referencing each other

https://github.com/FrancisMarzynski/operating-memory-public
1•francismarzynsk•52m ago•0 comments

OpenAI's SWE-bench harness relies on unisolated host Docker sockets

https://github.com/SWE-bench/SWE-bench/issues/144
1•amoriz•52m ago•0 comments

The Git Cheat Sheet

https://devopscycle.com/blog/the-ultimate-git-cheat-sheet
2•MrLA•54m ago•1 comments

Obsidian Vault to Enterprise Company Brain

https://www.ssp.sh/blog/from-obsidian-to-enterprise-company-brain/
2•interstingstuff•56m ago•0 comments

Adam Conover explains how YouTube ruined everything

https://www.theverge.com/podcast/991471/adam-conover-youtube-tv-media-union-labor-ai
2•DavideNL•57m ago•0 comments

The terminal should not own the work

https://lezli01.is-a.dev/vincent/docs/why/the-terminal-should-not-own-the-work.html
2•whatsthatandwhy•1h ago•1 comments

Osborne Computer's Bankruptcy and the Osborne Effect

https://dfarq.homeip.net/osborne-computers-bankruptcy-and-the-osborne-effect/
1•giuliomagnifico•1h ago•0 comments

Show HN: Control Claude Code from your Tesla's screen

https://teslacode.dev
1•kvakkefly•1h ago•2 comments

CSS Text-Box-Trim

https://developer.chrome.com/blog/css-text-box-trim
2•dsego•1h ago•1 comments

Pythoncall.jl – Python and Julia in Harmony

https://github.com/JuliaPy/PythonCall.jl
3•TheWiggles•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!