frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: CLI that migrates a folder of client sites off Cookiebot in one command

https://www.consentify.app/en/migrate
1•aaresvictor•51s ago•0 comments

Building a Foundation Stack for General-Purpose Robots

https://spectrum.ieee.org/x-square-robot-embodied-ai-stack
1•Brajeshwar•1m ago•0 comments

Suffix BWT vs. cyclic shift BWT, and fast computation

https://purplesyringa.moe/blog/suffix-bwt-vs-cyclic-shift-bwt-and-fast-computation/
1•ibobev•3m ago•0 comments

Does technical blogging spark joy?

https://purplesyringa.moe/blog/does-technical-blogging-spark-joy/
1•ibobev•4m ago•0 comments

FastAPI Folder Structure: How to scale from One File to Thirty Modules

https://fastro.ai/blog/fastapi-folder-structure
1•amai•4m ago•0 comments

Optimal Parse with Phminposuw

https://purplesyringa.moe/blog/optimal-parse-with-phminposuw/
1•ibobev•4m ago•0 comments

A guide to safely running coding agents in YOLO mode locally

https://yakko.dev/blog/running-agents-in-yolo-mode
1•yakkomajuri•4m ago•0 comments

The internet is becoming increasingly hostile towards VPNs

https://blog.basementcommunity.com/the-internet-is-increasingly-hostile-towards-vpns/
2•speckx•5m ago•0 comments

Datacentres need to consider alternatives to grid connection

https://www.computerweekly.com/opinion/Datacentres-need-toconsider-alternatives-to-grid-connection
1•beardyw•5m ago•0 comments

GPT-5.6 Cancels SaaS Stripe Subscriptions

https://twitter.com/bridgemindai/status/2076632817811722700
1•carlgreene•6m ago•0 comments

Dictation for agentic coding, now with an MCP and CLI

https://twitter.com/superwhisper/status/2076669502561890667
1•bpjzy•6m ago•0 comments

Learning from Experience Instead of Curated Datasets

https://oaklab.ai/posts/learning-from-experience-instead-of-curated-datasets
1•bwjx•8m ago•0 comments

J-Space: Yet Another LLM Mind Reader?

https://huggingface.co/blog/dlouapre/j-space
1•victormustar•9m ago•0 comments

Agentic development is standardizing faster than its operating model

https://blog.codacy.com/agentic-development-is-standardizing-faster-than-its-operating-model
1•claudiacsf•9m ago•0 comments

What housing in America could look like in 50 years

https://www.vox.com/the-highlight/493413/america-at-250-housing-crisis-cities-future
2•nabbed•9m ago•1 comments

Minutes with Douglas Maly

https://berlin.cwiemeevents.com/articles/5-minutes-with-douglas-maly
1•taubek•10m ago•0 comments

Silica, a notes/codebase agent that reverts its edits if they break coherence

https://github.com/kiycoh/silica-agent
1•kiycoh•11m ago•0 comments

Ask HN: How do you read programming books?

1•3booda•12m ago•0 comments

Show HN: Wrapper – Yet Another Agent Framework

https://github.com/xatuke/wrapper
1•satuke•13m ago•0 comments

Show HN: Saymade, a coding agent for building ambitious software efficiently

https://saymade.com
1•domag•13m ago•0 comments

Even if 90% of AI-discovered vulnerabilities are made up, it's still terrifying

https://kerkour.com/ai-slop-vulnerabilities-terrifying
4•redcannon218•15m ago•0 comments

You Have Become a Fat King

https://highstandards.substack.com/p/you-have-become-a-fat-king
1•speckx•16m ago•0 comments

Agents can now run the full SDLC. What do engineers do now?

https://www.augmentcode.com/blog/what-do-engineers-do-when-agents-run-the-full-sdlc
1•knes•16m ago•0 comments

Show HN: A prompt to make LLMs write property-based tests

https://github.com/e35zhang/property-testing-skill
2•e35zhang•16m ago•1 comments

Self-Hosted VPN Servers

https://bryanhu.com/easyVPN/
1•thatxliner•17m ago•1 comments

DKIM2: Successor to Arc and DKIM

https://dmarcguard.io/blog/arc-to-dkim2-future/
1•meysamazad•17m ago•0 comments

Ask HN: Why is this Microsoft Outlook page sending me elsewhere?

1•zwilderrr•17m ago•0 comments

Cloudflare Identifies Race Condition in Hyper's HTTP/1 Implementation

https://www.infoq.com/news/2026/07/cloudflare-hyper-bug-fix/
1•theanonymousone•18m ago•0 comments

Silverstone 2026 British GP

https://edleeman.co.uk/posts/silverstone-2026-british-gp/
1•meysamazad•18m ago•0 comments

Debian New Maintainers' Guide

https://www.debian.org/doc/manuals/maint-guide/index.en.html
1•gregsadetsky•18m 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!