🛠️ All DevTools

Showing 1761–1780 of 4344 tools

Last Updated
April 26, 2026 at 04:00 PM

[Build/Deploy] Show HN: Pbnj – A minimal, self-hosted pastebin you can deploy in 60 seconds I&#x27;m sure folks here have seen pastebins a thousand times. There&#x27;s no innovation left in this space – and that&#x27;s kind of the point.<p>When I wanted to self-host a pastebin, every option I found was too much. Git-based version control, OAuth, elaborate admin panels. I just wanted something I could deploy in under a minute with a CLI that actually works.<p>So I built pbnj (yes, like the sandwich).<p>What it is:<p>- A minimal, beautiful pastebin with syntax highlighting for 100+ languages<p>- One-click deploy to Cloudflare (free tier gives you ~100,000 pastes)<p>- CLI-first: pbnj file.py → get a URL, copied to clipboard<p>- Memorable URLs: crunchy-peanut-butter-sandwich instead of x7f9a2<p>- Private pastes with optional secret keys<p>- Web UI for when you&#x27;re not in a terminal<p>What it isn&#x27;t:<p>- No accounts, no OAuth, no git integration<p>- No multi-user support (fork it and run your own)<p>- No expiring pastes, no folders, no comments<p>- Not trying to replace Gist or be a &quot;platform&quot;<p>Why not just use Gist? Maybe you want to own your data. Maybe you enjoy self-hosting things. Or maybe you&#x27;re a little autistic like me and just like having your own stuff.<p>Live demo: <a href="https:&#x2F;&#x2F;pbnj.sh" rel="nofollow">https:&#x2F;&#x2F;pbnj.sh</a> GitHub: <a href="https:&#x2F;&#x2F;github.com&#x2F;bhavnicksm&#x2F;pbnj" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;bhavnicksm&#x2F;pbnj</a> CLI: npm install -g @pbnjs&#x2F;cli<p>If this scratches an itch for you, I&#x27;d appreciate a star on GitHub. Happy to answer any questions!

Found: December 05, 2025 ID: 2574

sinelaw/fresh

GitHub Trending

[IDE/Editor] Text editor for your terminal: easy, powerful and fast

Found: December 05, 2025 ID: 2572

vercel/next.js

GitHub Trending

[IDE/Editor] The React Framework

Found: December 05, 2025 ID: 2571

CorentinTh/it-tools

GitHub Trending

[Other] Collection of handy online tools for developers, with great UX.

Found: December 05, 2025 ID: 2570

Skemato

Product Hunt

[Database] Free visual database schema designer | create erd diagrams Skemato is a free visual database schema designer and ERD tool. Create tables with drag-and-drop, define relationships (1:1, 1:N, N:M), export to MySQL, PostgreSQL, SQLite, SQL Server, Oracle. Generate migrations for Laravel, Django, Prisma, TypeORM. Features: real-time SQL preview, data browser, AI assistant, cloud sync, PNG/SVG/JSON export. No signup required - start designing now!

Found: December 05, 2025 ID: 2576

DevsTools

Product Hunt

[Other] All-in-one free web toolbox: JSON, UUID, hash, QR, more DevsTools is a free, no-login toolbox with 27+ developer utilities in one place. Format/validate JSON, encode/decode Base64, generate UUIDs, build QR codes, run regex tests, and create MD5/SHA hashes—fast and client-side, so your data never leaves the browser. Built for speed with a clean UI, works on desktop/mobile, and new tools are added regularly to cover daily dev needs

Found: December 05, 2025 ID: 2578

Fast trigram based code search

Hacker News (score: 20)

[Other] Fast trigram based code search

Found: December 05, 2025 ID: 2569

[Other] StardustOS: Library operating system for building light-weight Unikernels

Found: December 04, 2025 ID: 2568

kubernetes/kubernetes

GitHub Trending

[DevOps] Production-Grade Container Scheduling and Management

Found: December 04, 2025 ID: 2564

[Other] The Social-Engineer Toolkit (SET) repository from TrustedSec - All new versions of SET will be deployed here.

Found: December 04, 2025 ID: 2563

[IDE/Editor] PyTogether: Collaborative lightweight real-time Python IDE for teachers/learners

Found: December 04, 2025 ID: 2565

[Other] Show HN: Xkcd #2347 lived in my head, so I built the dependency tower for real I finally got tired of XKCD #2347 living rent-free in my head, so I built Stacktower: a tool that takes any real package’s dependency graph and turns it into an actual tower of bricks. Along the way I had to wrestle some surprisingly spicy problems.<p>Full blog post here: <a href="https:&#x2F;&#x2F;stacktower.io" rel="nofollow">https:&#x2F;&#x2F;stacktower.io</a><p>The result is half visualization tool, half love letter to the chaos of modern dependency trees. Open-source, works with PyPI, Cargo, npm, and more.<p>Code: <a href="https:&#x2F;&#x2F;github.com&#x2F;matzehuels&#x2F;stacktower" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;matzehuels&#x2F;stacktower</a>

Found: December 04, 2025 ID: 2567

[Other] C++ Enum Class and Error Codes, Part 3

Found: December 04, 2025 ID: 2607

[Other] Recreating the lost SDK for a 42-year-old operating system: VisiCorp Visi On

Found: December 04, 2025 ID: 2559

SWI-Prolog 10.0.0 Released

Hacker News (score: 18)

[Other] SWI-Prolog 10.0.0 Released

Found: December 04, 2025 ID: 2560

FastShortcuts

Product Hunt

[Other] âś… Master 500+ keyboard shortcuts for developers FastShortcuts is a free, comprehensive database of 500+ keyboard shortcuts for developers. Find shortcuts for VS Code, Windows, Mac, IntelliJ, Chrome & more. Download PDFs, search instantly, and boost your productivity by 10x. 100% free forever.

Found: December 04, 2025 ID: 2561

[DevOps] Uncloud - Tool for deploying containerised apps across servers without k8s

Found: December 04, 2025 ID: 2556

[Other] Show HN: RAG in 3 Lines of Python Got tired of wiring up vector stores, embedding models, and chunking logic every time I needed RAG. So I built piragi.<p><pre><code> from piragi import Ragi kb = Ragi(\[&quot;.&#x2F;docs&quot;, &quot;.&#x2F;code&#x2F;\*\*&#x2F;\*.py&quot;, &quot;https:&#x2F;&#x2F;api.example.com&#x2F;docs&quot;\]) answer = kb.ask(&quot;How do I deploy this?&quot;) </code></pre> That&#x27;s the entire setup. No API keys required - runs on Ollama + sentence-transformers locally.<p>What it does:<p><pre><code> - All formats - PDF, Word, Excel, Markdown, code, URLs, images, audio - Auto-updates - watches sources, refreshes in background, zero query latency - Citations - every answer includes sources - Advanced retrieval - HyDE, hybrid search (BM25 + vector), cross-encoder reranking - Smart chunking - semantic, contextual, hierarchical strategies - OpenAI compatible - swap in GPT&#x2F;Claude whenever you want </code></pre> Quick examples:<p><pre><code> # Filter by metadata answer = kb.filter(file_type=&quot;pdf&quot;).ask(&quot;What&#x27;s in the contracts?&quot;) #Enable advanced retrieval kb = Ragi(&quot;.&#x2F;docs&quot;, config={ &quot;retrieval&quot;: { &quot;use_hyde&quot;: True, &quot;use_hybrid_search&quot;: True, &quot;use_cross_encoder&quot;: True } }) # Use OpenAI instead kb = Ragi(&quot;.&#x2F;docs&quot;, config={&quot;llm&quot;: {&quot;model&quot;: &quot;gpt-4o-mini&quot;, &quot;api_key&quot;: &quot;sk-...&quot;}}) </code></pre> Install:<p><pre><code> pip install piragi PyPI: https:&#x2F;&#x2F;pypi.org&#x2F;project&#x2F;piragi&#x2F; </code></pre> Would love feedback. What&#x27;s missing? What would make this actually useful for your projects?

Found: December 04, 2025 ID: 2557

[Other] Show HN: Stanford's ACE paper was just open sourced Last month, the SambaNova team, in partnership with Stanford and UC Berkeley, introduced the viral paper Agentic Context Engineering (ACE), a framework for building evolving contexts that enable self-improving language models and agents. Today, the team has released the full ACE implementation, available on GitHub, including the complete system architecture, modular components (Generator, Reflector, Curator), and ready-to-run scripts for both Finance and AppWorld benchmarks. The repository provides everything needed to reproduce results, extend to new domains, and experiment with evolving playbooks in your own applications.

Found: December 03, 2025 ID: 2562

[Other] Show HN: Microlandia, a brutally honest city builder It all started as an experiment to see if I could build a game making heavy use of Deno and its SQLite driver. After sharing an early build in the „What are you working on?“ thread here, I got the encouragement I needed to polish it and make a version 1.0 for Steam.<p>So here it is, Microlandia, a SimCity Classic-inspired game with parameters from real-life datasets, statistics and research. It also introduces aspects that are conveniently hidden in other games (like homelessness), and my plan is to continue updating, expanding and perfecting the models for an indefinite amount of time.

Found: December 03, 2025 ID: 2566
Previous Page 89 of 218 Next