frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Open Itinerary

http://bryanhu.com/open-itin/
1•thatxliner•1m ago•1 comments

A Family Secret No More

https://www.nytimes.com/2026/05/15/us/degrange-family-history-race.html
1•js2•1m ago•0 comments

Checking Multiplication Overflow

https://lemire.me/blog/2026/05/06/checking-multiplication-overflow/
1•tosh•1m ago•0 comments

CarTalk-AMP: Search and Play Car Talk Episodes

https://cartalk-amp.exe.xyz
1•indigodaddy•2m ago•0 comments

Back in My Day

https://old.reddit.com/r/opencodeCLI/comments/1tftit9/back_in_my_day/
1•theanonymousone•2m ago•0 comments

Show HN: Kami Subs – Live AI subtitles overlay for any browser video

https://github.com/MohammdKopa/kami-subs
1•mohamedkeba•3m ago•0 comments

Neptune: Direct3D Virtualization for QEMU

https://blog.getutm.app/2026/introducing-neptune-direct3d-virtualization-for-qemu/
1•linolevan•4m ago•0 comments

Almost there: Aptera has built five solar EVs on their validation assembly line

https://aptera.us/first-five-vehicles/
1•TeaVMFan•4m ago•1 comments

Why this 26-year-old software engineer doesn't want a promotion

https://www.reuters.com/markets/on-the-money/why-this-26-year-old-software-engineer-doesnt-want-p...
2•tartoran•7m ago•0 comments

Can Bloom Energy build them?

https://theloadgrowth.substack.com/p/can-bloom-energy-build-them
2•agordhandas•10m ago•0 comments

WHO declares Ebola outbreak in Congo, Uganda emergency of international concern

https://www.reuters.com/business/healthcare-pharmaceuticals/who-declares-ebola-outbreak-congo-uga...
2•tartoran•10m ago•0 comments

F.03 Livestream – Watch a team of humanoid robots running a full 8-HR shift [video]

https://www.youtube.com/watch?v=luU57hMhkak
1•Teever•10m ago•0 comments

A bad blog post led to GamerGate and the rise of the alt-right

https://www.dontbeasucker.blog/p/you-are-what-you-beat
1•betterthanever•10m ago•0 comments

Curated list of 736 verified remote tech companies hiring (May 2026)

https://dj5333111-ux.github.io/traction-data/
3•tractiondata•11m ago•1 comments

Dontsurveil.me

https://opencivics-labs.github.io/dontsurveil.me/c22.html
1•laurex•12m ago•1 comments

The clean-up cost of AI-generated code is what the velocity narrative leaves out

https://webflow.com/blog/cleanup-cost-ai-generated-code
1•Brajeshwar•13m ago•0 comments

AI can fix the fragmented online public transport space

https://simianwords.bearblog.dev/ai-can-fix-the-fragmented-online-public-transport-space/
1•simianwords•17m ago•0 comments

He Federal Data Field Guide

https://www.federaldatafieldguide.us/
1•firexcy•19m ago•0 comments

Pokemon NPCs Powered by Local LLMs

https://www.owenmc.dev/posts/local-inference-npcs
1•owenmccadden•21m ago•0 comments

Mistral's CEO: Europe has 2 years to stop becoming America's AI 'vassal state'

https://www.businessinsider.com/mistral-ceo-warns-europe-2-years-avoid-us-ai-dependence-2026-5
2•LelouBil•22m ago•0 comments

Mudflat Hiking

https://en.wikipedia.org/wiki/Mudflat_hiking
1•debarshri•23m ago•0 comments

Don't Outsource the Learning

https://addyosmani.com/blog/dont-outsource-learning/
1•korecodes•23m ago•0 comments

In 1979 engineer Hugh Padgham discovered "gated reverb" – by accident

https://producelikeapro.com/blog/how-one-recording-mistake-created-a-musical-phenomenon-in-the-80s/
1•bookofjoe•26m ago•0 comments

I want to try S.Y's GasTown to create code from a Spec without spending any $

https://github.com/stevef1uk/freeride
1•apiemotion•27m ago•1 comments

JSON logging isn't enough anymore: A deep dive into OTel Logs

https://www.dash0.com/knowledge/opentelemetry-logging-explained
1•ayoisaiah•29m ago•0 comments

Poll: Do you customize the TCP/IP settings of your OS, Router or Firewall?

1•Bender•30m ago•0 comments

Ask HN: Reading AI Assisted Essays

1•parentheses•32m ago•0 comments

Students noticing their AI‑smoothed writing sounds strong – and not like them

https://theconversation.com/college-students-are-noticing-their-ai-smoothed-writing-sounds-strong...
1•paulpauper•33m ago•0 comments

Something Big Is Happening on Campus

https://www.theatlantic.com/ideas/2026/05/david-brooks-something-is-going-right-at-universities/6...
1•paulpauper•34m ago•0 comments

Intro to TLA+ for the LLM Era: Prompt Your Way to Victory

https://emptysqua.re/blog/intro-to-tla-plus-for-the-llm-era/
1•zdw•35m ago•0 comments
Open in hackernews

Give every tool LLM wiki and bypass Claude Code SSH Throttle

1•jakemattison•1h ago
So I get from a security perspective this is a terrible idea, but it works great!

I wanted to give every tool I had access to LLM wiki and didn’t want to pay Mem0 or congee $100 a month for saving text files.

Every AI I use hits the same wall. The conversation ends and everything disappears. Context, files, databases, working state. Next session I’m re-explaining what we built yesterday.

I fixed this by giving every AI tool access to a persistent workspace on a Linux box. Claude, Claude Code, any MCP-compatible tool. They all share the same filesystem, the same database, the same knowledge base. One of them writes an architecture doc, the others can read it.

The whole thing cost an afternoon to build and $10/month to run.

I realized Pi has everything I needed. If you just rip the LLM out of Pi you can teleport any AI in the world into the harness. Pi, Mario Zechner’s open source harness publishes its execution layer as an npm package. File reads, writes, grep, find, directory listing. All exposed as factory functions. I imported Pi’s tools, registered them as MCP tools, and added a bash shell:

import { createReadToolDefinition, createWriteToolDefinition, createGrepToolDefinition, createFindToolDefinition, createLsToolDefinition, } from "@earendil-works/pi-coding-agent";

Five imports. One extra tool for shell access. The bridge is a single TypeScript file with five dependencies: Pi’s package, the MCP SDK, Express, an OTP library, and Zod.

A Cloudflare Worker hosts the MCP endpoint. A Cloudflare Tunnel connects it to a cheap VPS. No inbound ports, no public IP. Free tier for both. The AI connects with three strings: URL, OAuth client ID, OAuth secret.

Auth Clerk OAuth at the MCP connection. A shared-secret origin proxy so only my Worker reaches the bridge. A TOTP gateway that locks every tool until I enter an authenticator code. To pass the TOTP I just tell Claude the code on my authenticator app and he calls the TOTP tool in the MCP. All of this runs on a disposable VPS. But no reason you can’t use this pattern to give Claude Code SSH access to dozens of machines. Every tool call is logged with SHA256 hashes. Every file write creates a backup.

I talk to Claude on my phone. We design a system architecture. Claude writes the doc to its persistent filesystem as markdown with YAML frontmatter. I open Obsidian on my laptop and the notes are there with graph view and backlinks. I open Claude Code and it can grep for the same docs Claude wrote. If Claude needs another tool, it just installs it on the box. Claude installed PostgreSQL in userspace on the box. It runs SQL queries alongside the markdown layer. Next conversation, any device, any tool, it greps for prior context and picks up where we left off. Ideas compound instead of evaporating. Why one box, many tools Every AI tool connects to the same endpoint. The knowledge base is shared. Claude writes something, Claude Code can read it. The box is every tool’s long-term memory. Each tool that touches it makes the shared context richer. One Clerk OAuth app, one TOTP code, one workspace. Any MCP-compatible tool connects with three strings.

Any coding agent that publishes its execution layer as importable modules works for this. Pi happens to be modular enough that the surgery is trivial. Credit to Mario and the Pi team for building tools clean enough that someone could repurpose their agent’s internals in an afternoon. Stop building MCP servers from scratch. A coding agent already built the hard part.

Cybersecurity consultant and identity architect. I build AI agent infrastructure because the tools I want don’t exist yet.