Postingan

Show HN: Qlog – grep for logs, but 100x faster https://ift.tt/fbEgL4H

Show HN: Qlog – grep for logs, but 100x faster I built qlog because I got tired of waiting for grep to search through gigabytes of logs. qlog uses an inverted index (like search engines) to search millions of log lines in milliseconds. It's 10-100x faster than grep and way simpler than setting up Elasticsearch. Features: - Lightning fast indexing (1M+ lines/sec using mmap) - Sub-millisecond searches on indexed data - Beautiful terminal output with context lines - Auto-detects JSON, syslog, nginx, apache formats - Zero configuration - Works offline - Pure Python Example: qlog index './logs/*/*.log' qlog search "error" --context 3 I've tested it on 10GB of logs and it's consistently 3750x faster than grep. The index is stored locally so repeated searches are instant. Demo: Run `bash examples/demo.sh` to see it in action. GitHub: https://ift.tt/Lqm6ehj Perfect for developers/DevOps folks who search logs daily. Happy to answer questions! https://ift.tt/Lqm6ehj...

Show HN: WooTTY - browser terminal in a single Go binary https://ift.tt/AUXplKI

Show HN: WooTTY - browser terminal in a single Go binary I needed a web terminal I could drop into K8s sidecars and internal tools without pulling in heavy dependencies or running a separate service. Existing options were either too opinionated about the shell or had fragile session handling around reconnects. WooTTY wraps any binary -- bash, ssh, or custom tools -- and serves a browser terminal over HTTP. Sessions survive reconnects via output replay. There's a Resume/Watch distinction so multiple people can attach to the same session without stepping on each other. https://ift.tt/QvYncmM March 5, 2026 at 02:32AM

Show HN: Bashd – Helper scripts for bulk CLI file management https://ift.tt/Rv8FnSO

Show HN: Bashd – Helper scripts for bulk CLI file management My personal Bash scripts turned full-on toolkit. Great for managing large datasets, backups, or just for quick file navigation. https://ift.tt/jtXHUon March 5, 2026 at 12:42AM

Free Muni March 7 for the Chinese New Year Parade: Learn the Details

Free Muni March 7 for the Chinese New Year Parade: Learn the Details By Nashelly Chavez Children perform a dragon dance during San Francisco’s Chinese New Year Parade. San Francisco is gearing up for this year’s Chinese New Year Parade on Saturday, March 7. We’re here to help you get to the event. Keep reading for details about free Muni fares on parade day, a special parking discount and transit-related impacts. Parade details When: Saturday, March 7, beginning at 5:15 p.m. Where: Starts at 2nd and Market streets The route goes west on Geary Street, right onto Powell Street, and winds back east on Post Street. The route then turns north on Kearny Street, ending at Columbus... Published 2026-03-04T00:00:00Z https://ift.tt/CIhViku

Show HN: AI tool that brutally roasts your AI agent ideas https://ift.tt/t3CPQKf

Show HN: AI tool that brutally roasts your AI agent ideas I built whycantwehaveanagentforthis.com — submit any problem and get a structured analysis of whether an AI agent could solve it. The output includes a creative agent name, feasibility verdict, real competitor analysis (actual products with URLs), a kill prediction (which big tech company makes this obsolete, when), build estimate, and a savage one-liner. Built with Next.js + Claude API (Haiku). Runs on ~$5/day. Rate limited with Upstash Redis (7 layers). The prompt engineering to get accurate, non-hallucinated competitor analysis was the hardest part. Free, no signup. Feedback welcome — especially on AI response quality. https://ift.tt/sYo7bge March 4, 2026 at 12:24AM

Show HN: DejaShip – an intent ledger to stop AI agents from building duplicates https://ift.tt/8OQLtEC

Show HN: DejaShip – an intent ledger to stop AI agents from building duplicates When you give an AI agent a popular task like "build a micro-SaaS to make money," hundreds of agents are triggered to build the exact same things. DejaShip is a semantic coordination layer to stop this wasted compute. Before writing code, the agent checks the "airspace". If a lot of similar projects already exist, the agent can pivot to a new idea, or if it is free in its choice, it can prefer to collaborate instead of blindly cloning it. It works as an MCP server. Open source (MIT), no accounts or API keys required. Under the hood: The backend embeds keywords locally using fastembed to search pgvector for semantic collisions. To be transparent: The MVP is new, so the data corpus is tiny today. The value of this protocol only grows as more agent operators plug it in - or help decide how this coordination can be improved. (One of the biggest issues right now is the amount of false positiv...

Show HN: Open-Source Article 12 Logging Infrastructure for the EU AI Act https://ift.tt/Cp8xsfU

Show HN: Open-Source Article 12 Logging Infrastructure for the EU AI Act EU legislation (which affects UK and US companies in many cases) requires being able to truly reconstruct agentic events. I've worked in a number of regulated industries off & on for years, and recently hit this gap. We already had strong observability, but if someone asked me to prove exactly what happened for a specific AI decision X months ago (and demonstrate that the log trail had not been altered), I could not. The EU AI Act has already entered force, and its Article 12 kicks-in in August this year, requiring automatic event recording and six-month retention for high-risk systems, which many legal commentators have suggested reads more like an append-only ledger requirement than standard application logging. With this in mind, we built a small free, open-source TypeScript library for Node apps using the Vercel AI SDK that captures inference as an append-only log. It wraps the model in middleware, aut...