🛠️ Hacker News Tools

Showing 1061–1080 of 1486 tools from Hacker News

Last Updated
January 19, 2026 at 04:00 PM

[Other] Show HN: Creao – Vibe coding product for founders Hi HN! I&#x27;m North, DevRel from the CREAO team. We are a 15-20 person startup, and we spent a couple of months building this vibe coding product. We&#x27;ve been exploring the possibilities of how agents should assist people&#x27;s work for productivity in various scenarios.<p>Three months ago, we noticed that all small teams and companies are struggling with subscribing to multiple SaaS tools that never fit their exact needs. Pretty much all founders and SMB professionals need customized productivity tools that fit their daily work routines, but they don&#x27;t have developers to build these lightweight tools for them. So we thought we needed to build a vibe coding product that allows them to ship their own tools in minutes and get rid of these SaaS subscriptions.<p>For our product features, we built it differently from all the other vibe coding products. We want our users to build something actually useful instead of just a product prototype. But the current well-known code agents are performing poorly at building complex data schemas and integrating APIs. So we fine-tuned a small model for the following features:<p>1.Automatically builds complex relational data schemas<p>2.Automated MCP&#x2F;API connections with existing systems<p>With these core capabilities, our code agent can then build internal tools that connect with existing systems with state persistence. For example, I built a dashboard to track my X engagement and export results to a CSV file.<p><a href="https:&#x2F;&#x2F;drive.google.com&#x2F;file&#x2F;d&#x2F;1FBBOdrtonlj_56jgQuAoPpGnABB-pvt2&#x2F;view?usp=sharing" rel="nofollow">https:&#x2F;&#x2F;drive.google.com&#x2F;file&#x2F;d&#x2F;1FBBOdrtonlj_56jgQuAoPpGnABB...</a><p>This productivity boost is specifically designed for small team founders—you can build your own CRM workflows, data dashboards, revenue tracking, etc. Each of these could cost you $20-50&#x2F;month in SaaS subscriptions.<p>We are still in the early stage and improving our user experience. Our team is delivering new features pretty much every week, and we would love to hear from HN to give us some suggestions on how we can do better. You can always reach me at north@creao.ai. I love to shape the product together with community users. I hope you can find our work very helpful for your productivity.<p>Thanks!

Found: August 23, 2025 ID: 1019

[Other] Show HN: AICF – a tiny "what changed" feed for AI/RAG (v0.1 minimal core) I’m proposing AICF (AI Changefeed) — a minimal, web-native way for sites to expose append-only change events. Instead of crawlers or RAG systems re-embedding everything, they can refresh only the sections that changed.<p>Discovery: a &#x2F;.well-known&#x2F;ai-changefeed JSON points to a feed.<p>Feed: an append-only NDJSON file with just 4 required fields (id, action, url, time) plus optional hints (anchor, checksum, note).<p>Goal: cut wasted crawling&#x2F;embedding while keeping docs&#x2F;pricing&#x2F;policy pages fresh for AI&#x2F;agents.<p>Spec &amp; examples here: <a href="https:&#x2F;&#x2F;github.com&#x2F;mnswdhw&#x2F;AICF&#x2F;blob&#x2F;main&#x2F;spec&#x2F;AICF-v0.1.md" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;mnswdhw&#x2F;AICF&#x2F;blob&#x2F;main&#x2F;spec&#x2F;AICF-v0.1.md</a><p>Would love feedback: is the minimal core (anchors only, no chunks&#x2F;vectors&#x2F;push yet) the right starting point? Would you use this in your docs&#x2F;RAG stack?

Found: August 22, 2025 ID: 999

[Other] Show HN: JavaScript-free (X)HTML Includes (spoiler: its XSLT)<p>I&#x27;ve been working on a little demo for how to avoid copy-pasting header&#x2F;footer boilerplate on a simple static webpage. My goal is to approximate the experience of Jekyll&#x2F;Hugo but eliminate the need for a build step before publishing. This demo shows how to get basic templating features with XSL so you could write a blog post which looks like<p><pre><code> &lt;?xml version=&quot;1.0&quot;?&gt; &lt;?xml-stylesheet type=&quot;text&#x2F;xsl&quot; href=&quot;&#x2F;template.xsl&quot;?&gt; &lt;page&gt; &lt;title&gt;My Article&lt;&#x2F;title&gt; &lt;content&gt; some content &lt;ul&gt; &lt;li&gt;hello&lt;&#x2F;li&gt; &lt;li&gt;hello&lt;&#x2F;li&gt; &lt;&#x2F;ul&gt; &lt;&#x2F;content&gt; &lt;&#x2F;page&gt; </code></pre> Some properties which set this approach apart from other methods:<p><pre><code> - no build step (no need to setup Jekyll on the client or configure Github&#x2F;Gitlab actions) - works on any webserver (e.g. as opposed to server-side includes, actions) - normal looking URLs (e.g. `example.com&#x2F;foobar` as opposed to `example.com&#x2F;#page=foobar`) </code></pre> There&#x27;s been some talk about removing XSLT support from the HTML spec [0], so I figured I would show this proof of concept while it still works.<p>[0]: <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=44952185">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=44952185</a><p>See also: grug-brain XSLT <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=44393817">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=44393817</a>

Found: August 22, 2025 ID: 1002

[Other] Ergonomic errors in Rust: write fast, debug with ease, handle precisely

Found: August 22, 2025 ID: 1017

[Other] Show HN: Clyp – Clipboard Manager for Linux

Found: August 22, 2025 ID: 997

[Other] Static sites with Python, uv, Caddy, and Docker

Found: August 22, 2025 ID: 1016

[Other] Show HN: AIMless – a 10 KB single file P2P chat app with zero dependencies I built AIMless, a ridiculously minimalistic, browser native chat app that fits entirely into one HTML file (10 KB). It’s decentralized, P2P, and has no build tools, no server, and no frameworks. Just you, your browser, and a copy&#x2F;pasted blob or two.

Found: August 22, 2025 ID: 1000

[Other] Show HN: I integrated my from-scratch TCP/IP stack into the xv6-riscv OS Hi HN,<p>To truly understand how operating systems and network protocols work, I decided to combine two classic learning tools: the xv6 teaching OS and a from-scratch TCP&#x2F;IP stack.<p>I&#x27;m excited to share the result: my own from-scratch TCP&#x2F;IP networking stack running directly inside the xv6-riscv (<a href="https:&#x2F;&#x2F;github.com&#x2F;pandax381&#x2F;xv6-riscv-net" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;pandax381&#x2F;xv6-riscv-net</a>) kernel.<p>The project uses a modern virtio-net driver, allowing it to run seamlessly in QEMU and communicate with the host machine.<p>Key features:<p>- From-Scratch Stack: The core is powered by microps (<a href="https:&#x2F;&#x2F;github.com&#x2F;pandax381&#x2F;microps" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;pandax381&#x2F;microps</a>), a TCP&#x2F;IP stack I originally wrote to run in user-space as a personal project to learn the low-level details of networking.<p>- Kernel Integration: This project ports microps from user-space into the xv6-riscv kernel.<p>- Socket API: Implements standard system calls (socket, bind, accept, etc.) to enable network application development.<p>- User-level Tools: Comes with a simple ifconfig command, plus tcpecho and udpecho servers to demonstrate its capabilities.<p>This has been a fantastic learning experience. My goal was to demystify the magic behind network-aware operating systems by building the components myself.<p>I&#x27;d love to hear your feedback and answer any questions!

Found: August 22, 2025 ID: 998

[Other] Show HN: Claudable – OpenSource Lovable that runs locally with Claude Code Hey, HN! I&#x27;m Aaron. I built an open-source Lovable for Claude Code users.<p>Platforms like Lovable, Replit Agent, and Bolt require separate API keys and $25+&#x2F;month subscriptions. But if you’re already subscribed to Claude Pro or Cursor, you can use those plans directly without extra costs.<p>Claudable runs entirely locally through Claude Code (Cursor CLI also supported) and provides:<p>- Instant UI preview (similar to Lovable)<p>- Web-optimized, production-ready designs<p>- Direct Git integration<p>- One-click Vercel deployment<p>- Zero additional API costs<p>It’s open source and available today. I’m actively developing it and would love community feedback on what features to prioritize next.<p>GitHub: <a href="https:&#x2F;&#x2F;github.com&#x2F;opactorai&#x2F;Claudable" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;opactorai&#x2F;Claudable</a><p>Happy to answer any questions!

Found: August 21, 2025 ID: 988

[Other] Show HN: ChartDB Cloud – Visualize and Share Database Diagrams Me and Guy (@guyb3) built ChartDB to generate ER diagrams from your database without a need of any database access (via query&#x2F;sql&#x2F;dbml). We started with an open-source version, and after seeing a lot of use we decided to make a cloud version.<p>Our OSS launch (1y ago) - <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=41339308">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=41339308</a><p>Now we’re launching ChartDB Cloud - built for teams:<p>- Embed ERDs into docs, dev portals, or Miro&#x2F;Notion etc.<p>- Collaborate in real-time (with live cursors like Figma)<p>- Keep diagrams always in sync with your database<p>- Organize large, messy schemas without pain<p>- Export DDL in multiple SQL dialects (solved deterministically)<p>- AI assistant to brainstorm and generate new schema objects or schema changes<p>We designed it so working with databases feels less like a chore and more like a creative process.<p>Would love feedback - especially from teams dealing with messy schemas or outdated docs.<p><a href="https:&#x2F;&#x2F;app.chartdb.io" rel="nofollow">https:&#x2F;&#x2F;app.chartdb.io</a>

Found: August 21, 2025 ID: 987

[Other] Show HN: Using Common Lisp from Inside the Browser

Found: August 21, 2025 ID: 990

Using Podman, Compose and BuildKit

Hacker News (score: 22)

[DevOps] Using Podman, Compose and BuildKit

Found: August 21, 2025 ID: 984

[Other] Show HN: Weam – open-source AI collaboration platform for teams We built Weam because we felt existing AI tools didn’t work well for teams. Everything was scattered across chats, prompts, and workflows — hard to share, harder to organize.<p>Weam is an open-source platform that tries to fix that.<p>Organize prompts, chats, and agents into “Brains” (team folders).<p>Run agents and even Pro Agents for workflows.<p>Bring your own LLM keys (works with OpenAI, Anthropic, Gemini, Llama, etc.).<p>Self-hosted, so you keep control of your data.<p>Includes RAG pipelines for document-based AI.<p>It’s early but we’d love feedback. Repo here: <a href="https:&#x2F;&#x2F;github.com&#x2F;weam-ai&#x2F;weam" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;weam-ai&#x2F;weam</a><p>Docs: <a href="https:&#x2F;&#x2F;weam.ai&#x2F;" rel="nofollow">https:&#x2F;&#x2F;weam.ai&#x2F;</a><p>Curious if anyone has run into the same pain of making AI tools “team-friendly.”

Found: August 21, 2025 ID: 991

[Other] Show HN: I replaced vector databases with Git for AI memory (PoC) Hey HN! I built a proof-of-concept for AI memory using Git instead of vector databases.<p>The insight: Git already solved versioned document management. Why are we building complex vector stores when we could just use markdown files with Git&#x27;s built-in diff&#x2F;blame&#x2F;history?<p>How it works:<p>Memories stored as markdown files in a Git repo Each conversation = one commit git diff shows how understanding evolves over time BM25 for search (no embeddings needed) LLMs generate search queries from conversation context Example: Ask &quot;how has my project evolved?&quot; and it uses git diff to show actual changes in understanding, not just similarity scores.<p>This is very much a PoC - rough edges everywhere, not production ready. But it&#x27;s been working surprisingly well for personal use. The entire index for a year of conversations fits in ~100MB RAM with sub-second retrieval.<p>The cool part: You can git checkout to any point in time and see exactly what the AI knew then. Perfect reproducibility, human-readable storage, and you can manually edit memories if needed.<p>GitHub: <a href="https:&#x2F;&#x2F;github.com&#x2F;Growth-Kinetics&#x2F;DiffMem" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;Growth-Kinetics&#x2F;DiffMem</a><p>Stack: Python, GitPython, rank-bm25, OpenRouter for LLM orchestration. MIT licensed.<p>Would love feedback on the approach. Is this crazy or clever? What am I missing that will bite me later?

Found: August 21, 2025 ID: 978

SimpleIDE

Hacker News (score: 41)

[Other] SimpleIDE

Found: August 20, 2025 ID: 977

[Database] Show HN: MCP Server for PostgreSQL Monitoring/Operations (MCP-PostgreSQL-Ops) MCP Server for PostgreSQL Monitoring&#x2F;Operations (MCP-PostgreSQL-Ops)<p>&lt;Examples Queries&gt; &quot;Check PostgreSQL server status&quot; &quot;Check PostgreSQL server version and connection status&quot; &quot;Verify if extensions are installed&quot; &quot;Show current active connection count&quot; &quot;Show the shared_buffers configuration&quot; &quot;Show PostgreSQL configuration parameter for shared_buffers&quot; &quot;Find all memory-related configuration settings&quot; &quot;Show logging configuration parameters&quot; &quot;Display connection-related settings&quot; &quot;Find all timeout configurations&quot; &quot;Show all PostgreSQL configuration parameters&quot; &quot;Show top 10 slowest queries&quot; &quot;Show top 20 slowest queries&quot; &quot;Analyze slow queries in specific database&quot; &quot;Find unused indexes&quot; &quot;Analyze recent query activity&quot; &quot;Check index efficiency in specific database&quot; &quot;Check database sizes&quot; &quot;Find largest tables&quot; &quot;Show tables that need VACUUM&quot; &quot;Check table sizes in specific database schema&quot; &quot;List tables in specific database&quot; &quot;Check maintenance status in specific database&quot;

Found: August 20, 2025 ID: 979

[Other] Show HN: PlutoPrint – Generate PDFs and PNGs from HTML with Python Hi everyone, I built PlutoPrint because I needed a simple way to generate beautiful PDFs and images directly from HTML with Python. Most of the tools I tried felt heavy, tricky to set up, or produced results that didn’t look great, so I wanted something lightweight, modern, and fast. PlutoPrint is built on top of PlutoBook’s rendering engine, which is designed for paged media, and then wrapped with a Python API that makes it easy to turn HTML or XML into crisp PDFs and PNGs. I’ve used it for things like invoices, reports, tickets, and even snapshots, and it can also integrate with Matplotlib to render charts directly into documents.<p>I’d be glad to hear what you think. If you’ve ever had to wrestle with generating PDFs or images from HTML, I hope this feels like a smoother option. Feedback, ideas, or even just impressions are all very welcome, and I’d love to learn how PlutoPrint could be more useful for you.

Found: August 20, 2025 ID: 974

[Monitoring/Observability] Show HN: Okapi – a metrics engine based on open data formats Hi All I wanted to share an early preview of Okapi an in-memory metrics engine that also integrates with existing datalakes. Modern software systems produce a mammoth amount of telemetry. While we can discuss whether or not this is necessary, we can all agree that it happens.<p>Most metrics engines today use proprietary formats to store data and don’t use disaggregated storage and compute. Okapi changes that by leveraging open data formats and integrating with existing data lakes. This makes it possible to use standard OLAP tools like Snowflake, Databricks, DuckDB or even Jupyter &#x2F; Polars to run analysis workflows (such as anomaly detection) while avoiding vendor lock-in in two ways - you can bring your own workflows and have a swappable compute engine. Disaggregation also reduces Ops burden of maintaining your own storage and the compute engine can be scaled up and down on demand.<p>Not all data can reside in a data-lake&#x2F;object store though - this doesn’t work for recent data. To ease realtime queries Okapi first writes all metrics data to an in memory store and reads on recent data are served from this store. Metrics are rolled up as they arrive which helps ease memory pressure. Metrics are held in-memory for a configurable retention period after which it gets shipped out to object storage&#x2F;datalake (currently only Parquet export is supported). This allows fast reads on recent data while offloading query-processing for older data. On benchmarks queries on in-memory data finish in under a millisecond while having write throughput of ~280k samples per second. On a real deployment, there’d be network delays so YMMV.<p>Okapi it is still early — feedback, critiques, and contributions welcome. Cheers !

Found: August 20, 2025 ID: 975

[Other] Show HN: Anchor Relay – A faster, easier way to get Let's Encrypt certificates From the cryptic terminal commands to the innumerable ways to shoot yourself in the foot, I always struggled to use TLS certificates. I love how much easier (and cheaper) Let&#x27;s Encrypt made it to get certificates, but there are still plenty of things to struggle with.<p>That&#x27;s why we built Relay: a free, browser-based tool that streamlines the ACME workflow, especially for tricky setups like homelabs. Relay acts as a secure intermediary between your ACME client and public certificate authorities like Let&#x27;s Encrypt.<p>Some ways Relay provides a better experience:<p><pre><code> - really fast, streamlined certificates in minutes, with any ACME client - one-time upfront DNS delegation without inbound traffic or DNS credentials sprinkled everywhere - clear insights into the whole ACME process and renewal reminders </code></pre> Try Relay now: <a href="https:&#x2F;&#x2F;anchor.dev&#x2F;relay" rel="nofollow">https:&#x2F;&#x2F;anchor.dev&#x2F;relay</a><p>Or read our blog post: <a href="https:&#x2F;&#x2F;anchor.dev&#x2F;blog&#x2F;lets-get-your-homelab-https-certified" rel="nofollow">https:&#x2F;&#x2F;anchor.dev&#x2F;blog&#x2F;lets-get-your-homelab-https-certifie...</a><p>Please give it a try (it only takes a couple minutes) and let me know what you think.

Found: August 20, 2025 ID: 972

[Other] Show HN: Luminal – Open-source, search-based GPU compiler Hi HN, I’m Joe. My friends Matthew, Jake and I are building Luminal (<a href="https:&#x2F;&#x2F;luminalai.com&#x2F;">https:&#x2F;&#x2F;luminalai.com&#x2F;</a>), a GPU compiler for automatically generating fast GPU kernels for AI models. It uses search-based compilation to achieve high performance.<p>We take high level model code, like you&#x27;d have in PyTorch, and generate very fast GPU code. We do that without using LLMs or AI - rather, we pose it as a search problem. Our compiler builds a search space, generates millions of possible kernels, and then searches through it to minimize runtime.<p>You can try out a demo in `demos&#x2F;matmul` on mac to see how Luminal takes a naive operation, represented in our IR of 12 simple operations, and compiles it to an optimized, tensor-core enabled Metal kernel. Here’s a video showing how: <a href="https:&#x2F;&#x2F;youtu.be&#x2F;P2oNR8zxSAA" rel="nofollow">https:&#x2F;&#x2F;youtu.be&#x2F;P2oNR8zxSAA</a><p>Our approach differs significantly from traditional ML libraries in that we ahead-of-time compile everything, generate a large search space of logically-equivalent kernels, and search through it to find the fastest kernels. This allows us to leverage the Bitter Lesson to discover complex optimizations like Flash Attention entirely automatically without needing manual heuristics. The best rule is no rule, the best heuristic is no heuristic, just search everything.<p>We’re working on bringing CUDA support up to parity with Metal, adding more flexibility to the search space, adding full-model examples (like Llama), and adding very exotic hardware backends.<p>We aim to radically simplify the ML ecosystem while improving performance and hardware utilization. Please check out our repo: <a href="https:&#x2F;&#x2F;github.com&#x2F;luminal-ai&#x2F;luminal" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;luminal-ai&#x2F;luminal</a> and I’d love to hear your thoughts!

Found: August 20, 2025 ID: 971
Previous Page 54 of 75 Next