I am continuing to work on Kan [0], a dev-focused kanban board that works via plain text files in your repository. I am finding it really useful for solo projects, giving a really simple way to get per-project Kanban boards that I can sync via Git. Since it's local only, it's really snappy, and given the dev-focus, it can offer some pretty nice workflows with local hooks, customization, etc. The other project I am co…
Ask HN: What Are You Working On? (March 2026)
861–870 of 1001 posts
Re: Ask HN: What Are You Working On? (March 2026)
#862Heavily using Claude Code to build my own kanban and a Cloudflare native headless CMS meant to feed Astro websites.
Re: Ask HN: What Are You Working On? (March 2026)
#863Tool that lets you build shortcuts and custom functionality for most macOS apps. You write JS snippets like this: const app = new App("com.apple.finder") and then query for elements: const window = app.$({role: "window"}) const someButton = window.$(/* another query */) and then do stuff with it: someButton.press() and you can bind everything to very specific shortcuts like "press and hold cmd, then scroll mouse whee…
Re: Ask HN: What Are You Working On? (March 2026)
#864Re: Ask HN: What Are You Working On? (March 2026)
#865A fully vibe coded python 3.14 interpreter in Rust: https://blueblazin.github.io/pyrs Now at 350k lines. Native and wasm binaries (you can try the limited wasm version online). Currently adding a full CPython test suite benchmark. Just for fun, not trying to replace CPython here. Mainly to test the limits of current coding agents.
Re: Ask HN: What Are You Working On? (March 2026)
#866Re: Ask HN: What Are You Working On? (March 2026)
#867Anyone with read access to that file (malicious MCP server, compromised dependency, RCE) gets all your keys instantly.
MCPGuard fixes this: it scans your MCP configs, detects plaintext credentials, and migrates them to your OS keychain (macOS Keychain, Linux SecretService, Windows Credential Manager).
$ mcpguard audit # finds exposed keys
$ mcpguard migrate # moves them to OS keychain
Your config file then has vault references instead of real keys.
The credentials never touch disk again.npm: npm install -g mcpguard-cli
Re: Ask HN: What Are You Working On? (March 2026)
#868Well, I just jumped full time on IronCalc[1] a fully open source, light and fast spreadsheet engine designed and build from the ground up. I have been working on it as side project for over two years and now, with funding from the EU for the next 2.5 years, I hope I can make of it a real product for everyone to use that can compete with the likes of Excel and Googl;e Sheets. I can oly say, I am overly, off the Moon e…