Hacker News
A bad blog post led to GamerGate and the rise of the alt-right
Article URL: https://www.dontbeasucker.blog/p/you-are-what-you-beat
Comments URL: https://news.ycombinator.com/item?id=48170267
Points: 1
# Comments: 0
Curated list of 736 verified remote tech companies hiring (May 2026)
Article URL: https://dj5333111-ux.github.io/traction-data/
Comments URL: https://news.ycombinator.com/item?id=48170255
Points: 3
# Comments: 1
Dontsurveil.me
Article URL: https://opencivics-labs.github.io/dontsurveil.me/c22.html
Comments URL: https://news.ycombinator.com/item?id=48170247
Points: 1
# Comments: 1
The clean-up cost of AI-generated code is what the velocity narrative leaves out
Article URL: https://webflow.com/blog/cleanup-cost-ai-generated-code
Comments URL: https://news.ycombinator.com/item?id=48170237
Points: 1
# Comments: 0
AI can fix the fragmented online public transport space
Article URL: https://simianwords.bearblog.dev/ai-can-fix-the-fragmented-online-public-transport-space/
Comments URL: https://news.ycombinator.com/item?id=48170187
Points: 1
# Comments: 0
He Federal Data Field Guide
Article URL: https://www.federaldatafieldguide.us/
Comments URL: https://news.ycombinator.com/item?id=48170155
Points: 1
# Comments: 0
Pokemon NPCs Powered by Local LLMs
Article URL: https://www.owenmc.dev/posts/local-inference-npcs
Comments URL: https://news.ycombinator.com/item?id=48170141
Points: 1
# Comments: 0
Mistral's CEO: Europe has 2 years to stop becoming America's AI 'vassal state'
Article URL: https://www.businessinsider.com/mistral-ceo-warns-europe-2-years-avoid-us-ai-dependence-2026-5
Comments URL: https://news.ycombinator.com/item?id=48170122
Points: 2
# Comments: 0
Mudflat Hiking
Article URL: https://en.wikipedia.org/wiki/Mudflat_hiking
Comments URL: https://news.ycombinator.com/item?id=48170119
Points: 1
# Comments: 0
Don't Outsource the Learning
Article URL: https://addyosmani.com/blog/dont-outsource-learning/
Comments URL: https://news.ycombinator.com/item?id=48170118
Points: 1
# Comments: 0
In 1979 engineer Hugh Padgham discovered "gated reverb" – by accident
Article URL: https://producelikeapro.com/blog/how-one-recording-mistake-created-a-musical-phenomenon-in-the-80s/
Comments URL: https://news.ycombinator.com/item?id=48170096
Points: 1
# Comments: 0
I want to try S.Y's GasTown to create code from a Spec without spending any $
Article URL: https://github.com/stevef1uk/freeride
Comments URL: https://news.ycombinator.com/item?id=48170083
Points: 1
# Comments: 1
JSON logging isn't enough anymore: A deep dive into OTel Logs
Article URL: https://www.dash0.com/knowledge/opentelemetry-logging-explained
Comments URL: https://news.ycombinator.com/item?id=48170066
Points: 1
# Comments: 0
Scientists Discover New Crystal Formed by Nuclear Blast
Article URL: https://www.404media.co/scientists-discover-strange-new-crystal-formed-by-nuclear-blast/
Comments URL: https://news.ycombinator.com/item?id=48169754
Points: 1
# Comments: 0
Tool mapping 90 companies in the photonics and CPO supply chain
Article URL: https://leonardo-boquillon.com/photonic-cop-supply-chain
Comments URL: https://news.ycombinator.com/item?id=48169736
Points: 1
# Comments: 0
Alan Kay at UCLA CS 201 2026-05-05 [video]
Article URL: https://www.youtube.com/watch?v=V_Vn5rz6hL0
Comments URL: https://news.ycombinator.com/item?id=48169731
Points: 1
# Comments: 0
Voyager Spacecraft Code
Give every tool LLM wiki and bypass Claude Code SSH Throttle
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.
Comments URL: https://news.ycombinator.com/item?id=48169701
Points: 1
# Comments: 0
Mojo: SIMD
Article URL: https://mojolang.org/docs/std/builtin/simd/SIMD/
Comments URL: https://news.ycombinator.com/item?id=48169694
Points: 1
# Comments: 0
Germany's spy agency picks French AI firm over Palantir
Article URL: https://www.politico.eu/article/germany-spy-agency-picks-france-ai-firm-over-palantir/
Comments URL: https://news.ycombinator.com/item?id=48169632
Points: 2
# Comments: 0
