frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Gobble – Yet Another OSS Alternative to Google Analytics/PostHog, etc.

https://github.com/inventhq/Gobble
2•vishinvents•43m ago•1 comments

Show HN: Stacked Game of Life

https://stacked-game-of-life.koenvangilst.nl/
161•vnglst•4d ago•26 comments

Show HN: I built a tamper-evident evidence system for AI agents

https://guardianreplay.pages.dev/
2•Slaine•59m ago•0 comments

Show HN: Qlog – grep for logs, but 100x faster

https://github.com/Cosm00/qlog
3•cosm00•1h ago•9 comments

Show HN: Rust compiler in PHP emitting x86-64 executables

https://github.com/mrconter1/rustc-php
56•mrconter11•3d ago•49 comments

Show HN: WooTTY - browser terminal in a single Go binary

https://github.com/icoretech/wootty
2•masterkain•2h ago•1 comments

Show HN: I made a zero-copy coroutine tracer to find my scheduler's lost wakeups

https://github.com/lixiasky-back/coroTracer
40•lixiasky•1d ago•1 comments

Show HN: Bashd – Helper scripts for bulk CLI file management

https://github.com/terpinedream/Bashd
2•terpinedream•4h ago•0 comments

Show HN: Open-sourced a web client that lets any device use Apple's on-device AI

https://github.com/Techopolis/perspective-intelligence-web-community
8•tayarndt•7h ago•0 comments

Show HN: I put HN discussions next to the article where it belongs

https://cool-link-web-production.up.railway.app/l/blogabout
4•krenerd•5h ago•0 comments

Show HN: Recite – I built an Skill and MCP so my AI agent does my bookkeeping

https://github.com/rivradev/recite-agent-skill
3•rivradev•6h ago•0 comments

Show HN: O4DB – Intent-based M2M protocol without centralized APIs

https://github.com/dannythecountok/O4DB-protocol
2•dannythecount•7h ago•3 comments

Show HN: AI Code Review CLI

https://github.com/kodustech/cli
5•eddelgado•7h ago•0 comments

Show HN: I built a browser-based 3D modeler because I'm scared of Blender

https://app.topomaker.com/
5•whothatcodeguy•7h ago•0 comments

Show HN: GitPulse – stop buying dead software (and a timeline for your dev life)

https://www.gitpulse.dev/
2•bombashell•7h ago•1 comments

Show HN: I built a sub-500ms latency voice agent from scratch

https://www.ntik.me/posts/voice-agent
561•nicktikhonov•2d ago•152 comments

Show HN: Zsh plugin to switch macOS Terminal.app profiles

https://github.com/sfcodes/zsh-terminal-profile
3•sfcodes•7h ago•1 comments

Show HN: Effective Git

https://github.com/nolasoft/okgit
35•nola-a•3d ago•6 comments

Show HN: P0 – Yes, AI can ship complex features into real codebases

https://www.bepurple.ai/
51•arndt•7h ago•31 comments

Show HN: Glyph, a local-first Markdown notes app for macOS built with Rust

https://glyphformac.com/
6•skarat•11h ago•2 comments

Show HN: MontaukOS - Hobbyist OS with a desktop, networking, HTTP, and DOOM

https://github.com/danihamm/MontaukOS
2•danihamm•8h ago•0 comments

Show HN: oMLX – SSD-backed KV cache cuts coding agent TTFT from 90s to 1s on Mac

https://github.com/jundot/omlx
4•jundot•8h ago•1 comments

Show HN: Timber – Ollama for classical ML models, 336x faster than Python

https://github.com/kossisoroyce/timber
203•kossisoroyce•2d ago•33 comments

Show HN: What % of your commits were written by AI?

https://technically-your-name-is-on-it.btao.org/
5•tao_oat•8h ago•2 comments

Show HN: Not_pad: local idea hub, Windows, single .exe, no install, zip

https://github.com/SylvaMoth/not_pad/releases/tag/v0.98.3-Beta
2•SylvaM•8h ago•0 comments

Show HN: Omni – Open-source workplace search and chat, built on Postgres

https://github.com/getomnico/omni
172•prvnsmpth•2d ago•42 comments

Show HN: ClawSandbox – 7/9 attacks succeeded against an AI agent w/ shell access

https://github.com/deduu/ClawSandbox
3•ariansyah•8h ago•3 comments

Show HN: Retrievo – In-memory hybrid search for .NET AI agents

https://github.com/TianqiZhang/Retrievo
3•ztq121121•9h ago•0 comments

Show HN: Open-Source Article 12 Logging Infrastructure for the EU AI Act

42•systima•1d ago•4 comments

Show HN: An MCP server for the docs of any repo that uses Sphinx

https://github.com/AUrbanec/sphinxdocs_mcp
3•btcalex•10h ago•0 comments
Open in hackernews

Show HN: Qlog – grep for logs, but 100x faster

https://github.com/Cosm00/qlog
3•cosm00•1h ago
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://github.com/Cosm00/qlog

Perfect for developers/DevOps folks who search logs daily.

Happy to answer questions!

Comments

losalah•1h ago
maybe release an npm package for it as well. However, nice tool honestly!
cosm00•1h ago
Good idea — thanks!

Right now qlog is a Python CLI, so the cleanest “npm” story is probably a small wrapper package that installs qlog (pipx/uv/pip) and shells out to it, so Node projects can do `npx qlog ...` / `import { search } from 'qlog'` without reimplementing the indexer.

A native JS/TS port is possible, but I wanted to keep v0.x focused on correctness + format parsing + index compatibility first.

If you have a preferred workflow (global install vs project-local), I’m happy to tailor it.

verdverm•1h ago
This is not how DevOps folks think about logs, no way a cli based tool would ever be used.
cosm00•1h ago
Totally fair pushback.

qlog isn’t meant to replace centralized logging/metrics/tracing (ELK/Splunk/Loki/etc) for "real" production observability. It’s for the cases where you do end up with big text logs locally or on a box and need answers fast: incident triage over SSH, repro logs in CI artifacts, support bundles, container logs copied off a node, or just grepping huge rotated files.

In those workflows, a CLI is still a common interface (ripgrep, jq, awk, kubectl logs, journalctl). qlog is basically "ripgrep, but indexed" so repeated searches don’t keep rescanning GBs.

That said, if the main ask is an API/daemon/UI, I’m open to that direction too (e.g. emit JSON for piping, or a small HTTP wrapper around the index/search). Curious what tooling you do reach for in your day-to-day?

verdverm•1h ago
I'm not interested in conversing with your agent on HN.
cosm00•54m ago
Totally fair — sorry about that.

For transparency: I’m the author, and I’m using an assistant to help me keep up with replies during launch. If you’d rather not engage with that, no worries at all.

If you have any concrete feedback (even harsh!), feel free to drop it and I’ll read it and incorporate it.

verdverm•36m ago
> If you have any concrete feedback (even harsh!), feel free to drop it and I’ll read it and incorporate it.

Don't copy and paste Ai output into HN, this is a platform for humans exclusively, like moltbook is for agents exclusively. Copy-paste does not make it human and the statement you cannot keep up with support sounds like bs.

BorisMelnik•1h ago
I spend a lot of time auditing access logs and use grep a lot - will try this
cosm00•1h ago
Awesome — thank you!

Access logs were one of the main motivations (lots of repeated queries like IP/user-agent/path/status). If you try it, two tips:

1) Index once, then iterate on searches: qlog index './access*.log' qlog search 'status=403'

2) If you’re hunting patterns (e.g. suspicious UAs or a specific path), qlog really shines because it doesn’t have to rescan the whole file on each query.

If you run into anything weird with common log formats (nginx/apache variants), feel free to paste a few sample lines and I’ll make the parser more robust.