🛠️ All DevTools

Showing 5101–5120 of 6529 tools

Last Updated
August 01, 2026 at 08:46 AM

PaddlePaddle/PaddleOCR

GitHub Trending

[Other] Awesome multilingual OCR and Document Parsing toolkits based on PaddlePaddle (practical ultra lightweight OCR system, support 80+ languages recognition, provide data annotation and synthesis tools, support training and deployment among server, mobile, embedded and IoT devices)

Found: September 16, 2025 ID: 1416

Automating Distro Updates in CI

Hacker News (score: 14)

[Other] Automating Distro Updates in CI

Found: September 16, 2025 ID: 1417

Pacgie

Product Hunt

[Other] Secure, updated & optimized dependencies Connect GitHub repos or upload dependency files to detect security vulnerabilities, outdated packages, and unused/missing dependencies. Supports JavaScript, Python, Go, Rust, PHP, and more.

Found: September 16, 2025 ID: 1418

Quantpulsar

Product Hunt

[Other] AI Agents for Smart Contract Security AI marketplace for smart contract security audits. Specialized agents analyze code using database of 25K+ real vulnerabilities.

Found: September 16, 2025 ID: 1419

[Other] Stop iOS refund abuse — an open-source developer tool Refund Swatter Lite is an open-source developer tool designed to stop iOS in-app purchase refund abuse. It automatically handles App Store Server Notifications and lets developers securely control their Apple API keys without sending them to any third-party.

Found: September 16, 2025 ID: 1420

Over.fig

Product Hunt

[Other] Compare Figma design to website in real time Bridge the gap between design and code. Convert your Figma into a pixel-perfect semi-transparent overlay directly on your web page. No more switching tabs. No more guessing margins, fonts, or colors. And no more static image overlays that limit interaction.

Found: September 16, 2025 ID: 1421

Zentral

Product Hunt

[Other] Mindful productivity extension for focus Zentral combines distraction blocking, mindful breathwork, and habit-building to help you create rituals for consistent deep work and lasting focus. Build streaks, track progress, and make productivity sustainable.

Found: September 16, 2025 ID: 1422

Endform

Product Hunt

[Testing] Playwright end-to-end tests in seconds Introducing Endform, the fastest Playwright test runner available. Run tests fully in parallel to get results in seconds. Stay on top of your failures and flaky tests. Endform lets you spend less time waiting for re-runs, and more time shipping code.

Found: September 16, 2025 ID: 1426

[Other] Turn ideas into structured PRDs instantly PRD-Studio helps you go from idea → detailed Product Requirement Document in minutes. Perfect for solo devs, vibe coders & teams who want to plan smarter, not slower.

Found: September 16, 2025 ID: 1427

LabelSync Pro

Product Hunt

[Other] Auto-sync standardized labels across all your GitHub repos Auto-sync standardized GitHub labels across all your repos. Runs daily or on-demand, intelligently removes outdated labels & adds missing ones. Perfect for developers wanting consistent, professional repos without manual work. 100% free & open source.

Found: September 16, 2025 ID: 1428

Actvt

Product Hunt

[Monitoring/Observability] Unified monitoring CPU, GPU, Memory on Servers & MacOs Monitor in realtime your Mac hardware and your remote server usage, all in one interface.

Found: September 16, 2025 ID: 1430

[Other] Free Online Website Screenshot and Video Recording Tool Capture website screenshots in PNG, JPEG, & PDF with this online tool—ideal for developers, marketers, & designers. New features: scrolling video recording (MP4, WEBM, GIF) & a programmatic API for screenshots/videos. Streamline your workflow—try it now!

Found: September 16, 2025 ID: 1431

[API/SDK] Show HN: Pyproc – Call Python from Go Without CGO or Microservices Hi HN!I built *pyproc* to let Go services call Python like a local function — *no CGO and no separate microservice*. It runs a pool of Python worker processes and talks over *Unix Domain Sockets* on the same host&#x2F;pod, so you get low overhead, process isolation, and parallelism beyond the GIL.<p>*Why this exists*<p>* Keep your Go service, reuse Python&#x2F;NumPy&#x2F;pandas&#x2F;PyTorch&#x2F;scikit-learn. * Avoid network hops, service discovery, and ops burden of a separate Python service.<p>*Quick try (\~5 minutes)*<p>Go (app):<p>``` go get github.com&#x2F;YuminosukeSato&#x2F;pyproc@latest ```<p>Python (worker):<p>``` pip install pyproc-worker ```<p>Minimal worker (Python):<p>``` from pyproc_worker import expose, run_worker @expose def predict(req): return {&quot;result&quot;: req[&quot;value&quot;] * 2} if __name__ == &quot;__main__&quot;: run_worker() ```<p>Call from Go:<p>``` import ( &quot;context&quot; &quot;fmt&quot; &quot;github.com&#x2F;YuminosukeSato&#x2F;pyproc&#x2F;pkg&#x2F;pyproc&quot; ) func main() { pool, _ := pyproc.NewPool(pyproc.PoolOptions{ Config: pyproc.PoolConfig{Workers: 4, MaxInFlight: 10}, WorkerConfig: pyproc.WorkerConfig{SocketPath: &quot;&#x2F;tmp&#x2F;pyproc.sock&quot;, PythonExec: &quot;python3&quot;, WorkerScript: &quot;worker.py&quot;}, }, nil) _ = pool.Start(context.Background()) defer pool.Shutdown(context.Background()) var out map[string]any _ = pool.Call(context.Background(), &quot;predict&quot;, map[string]any{&quot;value&quot;: 42}, &amp;out) fmt.Println(out[&quot;result&quot;]) &#x2F;&#x2F; 84 } ```<p>*Scope &#x2F; limits*<p>* Same-host&#x2F;pod only (UDS). Linux&#x2F;macOS supported; Windows named pipes not yet. * Best for request&#x2F;response payloads ≲ \~100 KB JSON; GPU orchestration and cross-host serving are out of scope.<p>*Benchmarks (indicative)*<p>* Local M1, simple JSON: \~*45µs p50* and *\~200k req&#x2F;s* with 8 workers. Your numbers will vary.<p>*What’s included*<p>* Pure Go client (no CGO), Python worker lib, pool, health checks, graceful restarts, and examples.<p>*Docs &amp; code*<p>* README, design&#x2F;ops&#x2F;security docs, pkg.go.dev: [<a href="https:&#x2F;&#x2F;github.com&#x2F;YuminosukeSato&#x2F;pyproc" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;YuminosukeSato&#x2F;pyproc</a>](<a href="https:&#x2F;&#x2F;github.com&#x2F;YuminosukeSato&#x2F;pyproc" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;YuminosukeSato&#x2F;pyproc</a>)<p>*License*<p>* Apache-2.0. Current release: v0.2.x.<p>*Feedback welcome*<p>* API ergonomics, failure modes under load, and priorities for codecs&#x2F;transports (e.g., Arrow IPC, gRPC-over-UDS).<p>---<p><i>Source for details: project README and docs.</i> ([github.com][1])<p>[1]: <a href="https:&#x2F;&#x2F;github.com&#x2F;YuminosukeSato&#x2F;pyproc" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;YuminosukeSato&#x2F;pyproc</a> &quot;GitHub - YuminosukeSato&#x2F;pyproc: Call Python from Go without CGO or microservices - Unix domain socket based IPC for ML inference and data processin&quot;

Found: September 16, 2025 ID: 1415

[CLI Tool] Show HN: HN Term – browse HN using the terminal Hey HN! I&#x27;ve created a terminal interface to browse HN using only the keyboard.<p>You can expand&#x2F;hide replies, open external links, browse top, new, ask, show and jobs.<p>All key bindings and theme colors are customizable :)<p>It was built with React, OpenTUI, bun and HN API, had a lot of fun building this, excited to hear your feedback!

Found: September 16, 2025 ID: 1414

[Other] Asciinema CLI 3.0 rewritten in Rust, adds live streaming, upgrades file format

Found: September 15, 2025 ID: 1408

[Other] Show HN: MCP Server Installation Instructions Generator Hey HN, we’ve been experimenting a lot with MCP servers lately, and one of the most time-consuming challenges has been connecting MCP clients to remote MCP servers. To solve this, we built a library that generates them on the fly, enabling 1-click installation buttons and links for most clients out there.<p>Feel free to try out the generator and use it to improve the README of your remote MCP server with the generated markdown. You can even configure the library to return HTML instructions if someone accesses your remote MCP server via the web.

Found: September 15, 2025 ID: 1410

[Other] Show HN: Daffodil – Open-Source Ecommerce Framework to connect to any platform Hello everyone!<p>I’ve been building an Open Source Ecommerce framework for Angular called Daffodil. I think Daffodil is really cool because it allows you to connect to any arbitrary ecommerce platform. I’ve been hacking away at it slowly (for 7 years now) as I’ve had time and it&#x27;s finally feeling “ready”. I would love feedback from anyone who’s spent any time in ecommerce (especially as a frontend developer).<p>For those who are not javascript ecosystem devs, here’s a demo of the concept: <a href="https:&#x2F;&#x2F;demo.daff.io&#x2F;" rel="nofollow">https:&#x2F;&#x2F;demo.daff.io&#x2F;</a><p>For those who are familiar with Angular, you can just run the following from a new Angular app (use Angular 19, we’re working on support for Angular 20!) to get the exact same result as the demo above:<p>```bash ng add @daffodil&#x2F;commerce ```<p>I’m trying to solve two distinct challenges:<p>First, I absolutely hate having to learn a new ecommerce platform. We have drivers for printers, mice, keyboards, microphones, and many other physical widgets in the operating system, why not have them for ecommerce software? It’s not that I hate the existing platforms, their UIs or APIs, it&#x27;s that every platform repeats the same concepts and I always have to learn some new fangled way of doing the same thing. I’ve long desired for these platforms to act more like operating systems on the Web than like custom built software. Ideally, I would like to call them through a standard interface and forget about their existence beyond that.<p>Second, I’d like to keep it simple to start. I’d like to (on day 1) not have to set up any additional software beyond the core frontend stack (essentially yarn&#x2F;npm + Angular). All too often, I’m forced to set up docker-compose, Kubernetes, pay for a SaaS, wait for IT at the merchant to get me access, or run a VM somewhere just to build some UI for an ecommerce platform that a company uses. More often than not, I just want to start up a little local http server and start writing.<p>I currently have support for Magento&#x2F;MageOS&#x2F;Adobe Commerce, I have partial support for Shopify and I recently wrote a product driver for Medusa - <a href="https:&#x2F;&#x2F;github.com&#x2F;graycoreio&#x2F;daffodil&#x2F;pull&#x2F;3939" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;graycoreio&#x2F;daffodil&#x2F;pull&#x2F;3939</a>.<p>Finally, if you’re thinking “this isn’t performant, can’t you just do all of this with GraphQl on the server”, you’re exactly correct! That’s where I’d like to get to eventually, but that’s a “yet another tool” barrier to “getting started” that I’d like to be able to allow developers to do without for as long as I can in the development cycle. I’m shooting to eventually ship the same “driver” code that we run in the browser in a GraphQl server once all is said and done with just another driver (albeit much simpler than all the others) that uses the native GraphQl format.<p>Any suggestions for drivers and platforms are welcome, though I can’t promise I will implement them. :)

Found: September 15, 2025 ID: 1403

[Database] Pgstream: Postgres streaming logical replication with DDL changes

Found: September 15, 2025 ID: 1404

SoftFever/OrcaSlicer

GitHub Trending

[Other] G-code generator for 3D printers (Bambu, Prusa, Voron, VzBot, RatRig, Creality, etc.)

Found: September 15, 2025 ID: 1400

[Other] Show HN: I reverse engineered macOS to allow custom Lock Screen wallpapers Hi HN, I&#x27;m Oskar, a solo indie Mac developer from Sweden. For those in the Mac community, you might know me from my other apps like Sensei and Trim Enabler.<p>For years, I&#x27;ve been frustrated by the lack of customisation of macOS. In particular the Lock Screen which supports animated wallpapers, but only ones provided by Apple. There&#x27;s never been a way to add your own personal videos.<p>I decided to figure out how to solve this, and the result is Backdrop 2.0. Backdrop is my Live Wallpaper app for Mac, it can play video wallpapers on your desktop. And now it can play on your Lock Screen too.<p>The core technical challenge, as you can imagine, came from trying to do something that Apple otherwise does not allow. However, through extensive reverse engineering of the macOS wallpaper system, I figured out a way to provide Backdrop wallpapers to the system in a way that allows them to play on the lock screen, and even appear in a custom section in System Settings.<p>I&#x27;m here all day to answer any questions—especially about the reverse engineering process, the challenges of integrating with macOS, or the experience of being an indie Mac developer.<p>Would love to hear your thoughts and feedback.

Found: September 15, 2025 ID: 1405
Previous Page 256 of 327 Next