🛠️ All DevTools
Showing 1481–1500 of 3069 tools
Last Updated
January 21, 2026 at 08:00 AM
Github Copilot CLI
Product Hunt[CLI Tool] Copilot's response to Claude Code and Codex CLI Copilot CLI is GitHub’s terminal-based coding agent. It accepts instructions, edits files, runs commands, and connects to MCP servers. Defaults to Claude Sonnet 4 but can switch to other models. Usage is billed via Copilot plans.
PostPilot
Product Hunt[API/SDK] API, Database & Data Tools in One Private Workspace PostPilot is a developer tool that combines an API client, database client, and data inspector into one streamlined interface. Connect your requests using Variables, and organize everything with reusable Collections. Fully local. Fully private.
Perplexity Search API
Product Hunt[API/SDK] Developers get full index power with instant accuracy The Perplexity Search API gives developers access to the same global-scale infrastructure that powers our public answer engine. With hundreds of billions of webpages indexed, it unlocks internet-wide knowledge through a simple, powerful API
Property-Based Testing of OCaml 5's Runtime System [pdf]
Hacker News (score: 25)[Other] Property-Based Testing of OCaml 5's Runtime System [pdf]
Show HN: A web version of Pips game (NYT domino game)
Hacker News (score: 21)[Other] Show HN: A web version of Pips game (NYT domino game) Hi everyone,<p>I’m an indie developer learning Next.js and a big fan of the NYT game Pips. Inspired by it, I built <a href="https://pipsgamer.com" rel="nofollow">https://pipsgamer.com</a> — a responsive web version of Pips with smooth gameplay on both desktop and mobile.<p>What makes this project different from NYT’s version is that you can play it infinitely under three difficulty levels: Easy / Medium / Hard.<p>This is the first time I’ve built a game. Along the way I ran into many difficulties: implementing the game logic, configuring the UI, matching layouts for small and large screens, etc. I spent many lonely nights and sometimes even doubted whether I could complete the whole project. After 24 days of persistent effort, the project is finally finished.<p>No signup required — just go and play. If you try it out I’d really appreciate your feedback: what you like, what bugs you see, what could be improved.<p>Thanks!
netdata/netdata
GitHub Trending[Monitoring/Observability] The fastest path to AI-powered full stack observability, even for lean teams.
Show HN: FingerprinterJS – A tiny JavaScript library for browser fingerprints
Show HN (score: 10)[Other] Show HN: FingerprinterJS – A tiny JavaScript library for browser fingerprints I made FingerprinterJS, a small library with no dependencies that creates browser fingerprints from signals like canvas, WebGL, audio, fonts, userAgent, and screen info.<p>It’s written in TypeScript, lets you enable/disable collectors, add custom data, and includes a simple suspicious-activity score.<p>Would love feedback.
google-gemini/cookbook
GitHub Trending[API/SDK] Examples and guides for using the Gemini API
Genode OS Framework
Hacker News (score: 112)[Other] Genode OS Framework
Polarity
Product Hunt[Other] Push Code like a 10x Engineer. Polarity helps engineers ship code 10x faster with 10x the quality.
Show HN: Macscope – I decide to built a better Cmd-Tab replacement for macOS
Show HN (score: 10)[Other] Show HN: Macscope – I decide to built a better Cmd-Tab replacement for macOS Hi HN,<p>Macscope is a new window manager and and app switcher for macOS built on the philosophy of enhancing, not replacing, your existing muscle memory.<p>It works by augmenting the familiar Cmd+Tab workflow. A quick tap of your shortcut instantly switches between recent apps, just like you're used to. A slightly longer hold, however, opens the full Macscope interface where you can manage all your open windows and tabs.<p>You can also use modifier shortcuts to enter Placement Modes, which let you instantly snap a selected window to the left/right/top/bottom/ half of your screen.<p>Here are some of the key features:<p>- Unified Search & Switch: A single interface to instantly find and switch to any window, browser tab (Safari, Chrome, Arc, etc.), or application just by typing.<p>- Live Previews: See a real-time preview of what's inside each window so you know exactly where you're going. You can also disable previews for a more minimal experience.<p>- Advanced Window Management: Go beyond just switching. Select multiple windows and arrange them into layouts like vertical/horizontal splits or grids.<p>- Scopes: Save collections of app windows as a "Scope" and instantly restore that entire workspace later. It's ideal for quickly switching between different projects or tasks.<p>It’s a native macOS app built with Swift and supports both Apple Silicon and Intel machines.<p>Launch Offer for HN:<p>There's a free trial with 250 actions. For the Hacker News community, I'm offering a 50% discount on the lifetime license.<p>Website: <a href="https://macscope.app" rel="nofollow">https://macscope.app</a><p>Discord Community: <a href="https://discord.gg/ehktEWr97K" rel="nofollow">https://discord.gg/ehktEWr97K</a><p>I'll be here all day to answer questions and would be grateful for any feedback. Thanks for checking it out!
Show HN: Prism – Let browser agents access any app
Show HN (score: 17)[API/SDK] Show HN: Prism – Let browser agents access any app Hey HN, We’re Alex, Land, and Rajit. We’re building Prism (prismai.sh), a tool that helps browser agents authenticate onto websites with user credentials. Developers pass in credentials, Prism logs into a website on their behalf, and hands them back the cookies so they have an authenticated session. Here’s an example of how developers can use Prism to complete username/password flows (<a href="https://youtu.be/SEtVUnWnxuE" rel="nofollow">https://youtu.be/SEtVUnWnxuE</a>), and here’s an example of how developers can use Prism to complete login flows that require an OTP code (<a href="https://youtu.be/fe9w9PvrwH0" rel="nofollow">https://youtu.be/fe9w9PvrwH0</a>).<p>We spoke to browser agent developers and saw people copying and pasting credentials and even credit card numbers directly into model system prompts. We were surprised that there wasn’t a better way to give agents access to websites on a human’s behalf. Moreover, we noticed that every company had to build infrastructure to manage OTP, TOTP, and MFA and that auth remained a significant hurdle in agent reliability. We wondered if this was a boring part of the problem of building web automations that someone could automate away.<p>We started working with Casco, an autonomous security testing company, to enable their agent to access customer sites. Before a pentest, Casco makes a request to Prism’s API specifying test user credentials, a domain, and a login method. For example, give me an authenticated session for the account rajit@prismai.sh for OpenAI via OTP code over email. Our agent logs in on their behalf (without exposing credentials to a model), and we download the cookies and send them back in the response.<p>To maintain speed and reliability, we use playwright in most cases to login (which gives us speed), and we fallback to AI on failure (which gives us reliability). We have a number of websites we support out of the box and add new scripts as the number of websites we need to support grows. We are working on a way for the agent to update the existing playwright script on failure, so our scripts always stay up to date.<p>To try our api, you can use our API playground docs.prismai.sh/api-reference/endpoint/login to sign into x.com with the following API key: pk_54abb1cd0a637eb973ed690416e71a953e98f2ea839cf16529bbfa41a41bc016 .<p>We’d love to learn more about how other developers give agents access to their accounts. We look forward to everyone’s feedback and comments.
Asabeneh/30-Days-Of-Python
GitHub Trending[Other] 30 days of Python programming challenge is a step-by-step guide to learn the Python programming language in 30 days. This challenge may take more than100 days, follow your own pace. These videos may help too:https://www.youtube.com/channel/UC7PNRuno1rzYPb1xLa4yktw
TanStack/router
GitHub Trending[Other] 🤖 Fully typesafe Router for React (and friends) w/ built-in caching, 1st class search-param APIs, client-side cache integration and isomorphic rendering.
humanlayer/humanlayer
GitHub Trending[Other] The best way to get AI to solve hard problems in complex codebases.
Show HN: Phishcan, Canada's first open and free threat intelligence platform
Show HN (score: 15)[Other] Show HN: Phishcan, Canada's first open and free threat intelligence platform Phishcan provides crucial threat intelligence, and it currently tracks phishing domains for:<p>• Scotiabank, Desjardins, RBC, Interac…<p>• Telecom providers, provincial power and health services...<p>• Federal & provincial services, CRA, Canada Post, Service Canada, Revenue Québec...<p>How Phishcan works:<p>• Parsing millions of domains: Continuously scanning and analyzing vast numbers of domains to detect suspicious patterns and potential phishing sites.<p>• Monitoring threat actors : close watch on cyber‑criminal infrastructures and their new domain registrations.<p>• Data enrichment : adding contextual insights and connections to improve the information<p>• Feeds are updated every 12 hours.<p>• You can use the API freely at: <a href="https://phishcan.com/api-docs" rel="nofollow">https://phishcan.com/api-docs</a><p>Data is also available on: <a href="https://github.com/Phishcan/phishcan-data" rel="nofollow">https://github.com/Phishcan/phishcan-data</a><p>I plan to improve the whole platform with more data during my free time!
OneSimpleBoard
Product Hunt[Other] Project management without the bloat A simple yet powerful project management tool built for solo entrepreneurs, students and small teams. Track tasks, log time, and manage projects—without the bloated complexity of enterprise software.
GitHub Workflow Dashboard
Product Hunt[Other] An simple SPA to show status of github workdflows Simple SPA for github workflow dashboard. Only need a token. Nothing but the missing dashboard function of github workflow.
Django CFG
Product Hunt[Other] Modern Django configuration framework Django-CFG is a powerful, type-safe configuration framework for Django applications with AI integration, beautiful admin interface, and comprehensive module ecosystem.
Rustroid, a Rust IDE for Android
Hacker News (score: 33)[IDE/Editor] Rustroid, a Rust IDE for Android