frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Every CEO and CFO change at US public companies, live from SEC

https://tracksuccession.com/explore
126•porsche959•4h ago•55 comments

Show HN: MCP server gives your agent a budget (save tokens, get smarter results)

https://l6e.ai
3•bennettdixon•1h ago•0 comments

Show HN: Avec – iOS email app that lets you handle your Gmail inbox in seconds

https://apps.apple.com/us/app/avec-email-app-for-gmail/id6742199038
11•jnnnthnn•1h ago•1 comments

Show HN: CD-Deluxe for the Command Line

https://github.com/m6z/cd-deluxe
2•m6z•1h ago•1 comments

Show HN: Compile English specs into 22 MB neural functions that run locally

6•yuntian•1h ago•0 comments

Show HN: Scope-structured arena memory for C, O(1) cleanup, no GC/borrow checker

https://github.com/hollow-arena/ariandel
3•theperezident•2h ago•0 comments

Show HN: Pseudonymizing sensitive data for LLMs without losing context

https://atticsecurity.com/en/blog/why-llms-hate-fake-data-token-proxy/
3•n00pn00p•4h ago•3 comments

Show HN: Plain – The full-stack Python framework designed for humans and agents

https://github.com/dropseed/plain
88•focom•23h ago•49 comments

Show HN: LangAlpha – what if Claude Code was built for Wall Street?

https://github.com/ginlix-ai/langalpha
142•zc2610•1d ago•50 comments

Show HN: Skillgrab – scan any project, auto-install matching AI skills

https://briascoi.github.io/skillgrab/
4•ismaelb•4h ago•1 comments

Show HN: SynapseKit – Async-native Python framework for LLM pipelines and agents

https://github.com/SynapseKit/SynapseKit
4•aminau•5h ago•2 comments

Show HN: Xit – a Git-compatible VCS written in Zig

https://github.com/xit-vcs/xit
8•xeubie•5h ago•1 comments

Show HN: StegoForge – Open-source suite for steganography and ML forensics

https://github.com/Nour833/StegoForge
3•nour833•6h ago•0 comments

Show HN: Kelet – Root Cause Analysis agent for your LLM apps

https://kelet.ai/
47•almogbaku•1d ago•23 comments

Show HN: Ithihāsas – a character explorer for Hindu epics, built in a few hours

https://www.ithihasas.in
174•cvrajeesh•1d ago•44 comments

Show HN: Helix – open-source self-healing back end for production crashes

https://88hours.github.io/helix-community/
2•NomiJ•7h ago•3 comments

Show HN: Run GUIs as Scripts

https://github.com/skinnyjames/hokusai-pocket
21•zero-st4rs•5d ago•7 comments

Show HN: My favorite local-feeling remotely accessible Claude Code setup

https://gist.github.com/Reebz/99db98ad4d3c45ebed84989a13710788
4•Reebz•11h ago•1 comments

Show HN: boringBar – a taskbar-style dock replacement for macOS

https://boringbar.app/
514•a-ve•2d ago•298 comments

Show HN: Astrial – Spherical Go on a Snub Dodecahedron

https://astrial.app
3•mingli_yuan•11h ago•0 comments

Show HN: Why Rotating Vectors Makes Compression Beautiful

https://demos.connectai.blog/quantization_blog.html
3•linux_devil•12h ago•0 comments

Show HN: Agent Citizen – Your AI agents are sitting around doing nothing

https://agent-citizen.vercel.app
5•daltonlcarr•13h ago•1 comments

Show HN: Chrome extension that extracts styles and generates DESIGN.md files

https://chromewebstore.google.com/detail/designmd-style-extractor/ogpdnchdjiibhobphelbbkemnnemkfma
5•elwingo1•5h ago•2 comments

Show HN: Lumon, browser agents as interactive sprites

https://lumon-live.netlify.app
3•lesprgm•13h ago•2 comments

Show HN: Uninum – All elementary functions from a single operator, in Python

https://github.com/Brumbelow/uninum
5•brumbelow•19h ago•1 comments

Show HN: Memwright – Self-hosted memory for multi-agent teams, no LLM in path

https://github.com/bolnet/agent-memory
3•Bolnet•14h ago•0 comments

Show HN: A stateful UI runtime for reactive web apps in Go

https://github.com/doors-dev/doors
13•derstruct•1d ago•4 comments

Show HN: Send physical postcards from your coding harness

https://api.melonpost.com/SKILL.md
4•thevelop•21h ago•1 comments

Show HN: StockFit API – structured SEC EDGAR data with a free tier

https://developer.stockfit.io
3•areimann•14h ago•1 comments

Show HN: Pardonned.com – A searchable database of US Pardons

501•vidluther•4d ago•274 comments
Open in hackernews

Show HN: Scope-structured arena memory for C, O(1) cleanup, no GC/borrow checker

https://github.com/hollow-arena/ariandel
3•theperezident•2h ago
Ariandel is a memory model where every heap object lives in a scope-owned arena. Scope exit resets the arena in O(1) — one bump pointer write and one free — regardless of how many objects were allocated.

The safety default: allocating functions return ARENA_PTR handles (packed arena_id + offset integers), not raw pointers. A dangling pointer at a function return boundary is unconstructable by default. Cross-scope lifetime extension is explicit — you enter the target arena via SCOPE(ptr) before allocating, which routes the object into the outer arena without transferring ownership.

Benchmarks (no optimization flags): 1M-node tree cleanup drops from 31ms to 1ms (~30×). There's a real regression in tight inner loops (~0.76×) because DEREF can't hoist the base pointer the way a compiler would — the spec documents this honestly.

This is a C macro-based proof-of-concept for a memory model I'm targeting in a compiled language. The interesting question isn't the C implementation — it's whether scope-structured arena routing is a sound replacement for GC and borrow checking across the class of programs that matter.

Repo: https://github.com/hollow-arena/ariandel — SPEC.md has the full model including concurrency semantics and the comparison to Tofte & Talpin region-based memory.