Postingan

Show HN: LangAlpha – what if Claude Code was built for Wall Street? https://ift.tt/QVt7SUP

Show HN: LangAlpha – what if Claude Code was built for Wall Street? Some technical context on what we ran into building this. MCP tools don't really work for financial data at scale. One tool call for five years of daily prices dumps tens of thousands of tokens into the context window. And data vendors pack dozens of tools into a single MCP server, schemas alone can eat 50k+ tokens before the agent does anything useful. So we auto-generate typed Python modules from the MCP schemas at workspace init and upload them into the sandbox. The agent just imports them like a normal library. Only a one-line summary per server stays in the prompt. We have around 80 tools across our servers and the prompt cost is the same whether a server has 3 tools or 30. This part isn't finance-specific, it works with any MCP server. The other big thing was making research actually persist across sessions. Most agents treat a single deliverable (a PDF, a spreadsheet) as the end goal. In investing that...

Show HN: pg_grpc – Call gRPC services directly from PostgreSQL https://ift.tt/C9uaTW7

Show HN: pg_grpc – Call gRPC services directly from PostgreSQL https://ift.tt/ifnY4rb April 14, 2026 at 12:50AM

Show HN: 15 yrs of Django in prod: patterns I keep using (agent skills) https://ift.tt/kDZNKUR

Show HN: 15 yrs of Django in prod: patterns I keep using (agent skills) https://ift.tt/9y8p3Rg April 13, 2026 at 10:16PM

Show HN: Rekal – Long-term memory for LLMs in a single SQLite file https://ift.tt/6fOuzy5

Show HN: Rekal – Long-term memory for LLMs in a single SQLite file I got tired of repeating myself to my LLM every session. rekal is an MCP server that stores memories in SQLite and retrieves them with hybrid search (BM25 + vectors + recency decay). One file, local embeddings, no API keys. https://ift.tt/BmMPwiu April 13, 2026 at 04:25AM

Show HN: Claudraband – Claude Code for the Power User https://ift.tt/iecGOW1

Show HN: boringBar – a taskbar-style dock replacement for macOS https://ift.tt/jUbixO9

Show HN: boringBar – a taskbar-style dock replacement for macOS Hi HN! I recently switched from a Fedora/GNOME laptop to a MacBook Air. My old setup served me well as a portable workstation, but I’ve started traveling more while working remotely and needed something with similar performance but better battery life. The main thing I missed was a simple taskbar that shows the windows in the current workspace instead of a Dock that mixes everything together. I built boringBar so I would not have to use the Dock. It shows only the windows in the current Space, lets you switch Spaces by scrolling on the bar, and adds a desktop switcher so you can jump directly to any Space. You can also hide the system Dock, pin apps, preview windows with thumbnails, and launch apps from a searchable menu (I keep Spotlight disabled because for some reason it uses a lot of system resources on my machine). I’ve been dogfooding it for a few months now, and it finally felt polished enough to share. It’s for peo...