Hello HN community!<p>As developers, we often rely on well-known tools and technologies to get our jobs done. However, there are always those lesser-known, under-the-radar tools that can be surprisingly effective. Today, I'm curious to learn about the hidden gems in your toolkit.<p>1. What is one tool or resource you use that isn't very popular, but has significantly improved your productivity or workflow?
2. How did you discover it and why do you think it hasn’t caught on more widely?<p>Whether it's a code library, a productivity app, or a hardware device, I'm excited to see what underrated tools you all are using. Let's share our best-kept secrets and perhaps we can all discover something new to add to our arsenals!
PowerToys.<p>The screenshotting, color picker, image resizer, keyboard remapper, image to text transcription, and window tiling manager are superb. Tons of other stuff, but those are what I use most.<p>Probably underrated because it is called "Microsoft" PowerToys, and some people have an aversion to them. But it's seriously great.
For me it’s actually something I built myself, though it will never ever be used by anyone but me probably lol.<p>I build a lot of chrome extensions, and they don’t have a nice dev experience by default. So I use the Vite build tools to introduce a live reload-like functionality while I’m building extensions.<p>It’s much faster than the default experience, but the setup is too complex for most.<p>It requires installing an npm script, running it (which runs a web socket), running a Vite build step In watch mode, setting up your folder in a specific manner, installing my extension, and then passing a web socket port number and extension ID to my extension.<p>Doing all this give make the extension you are developing instant reloads while you code it up in whatever framework you are using (typescript, react, svelte, whatever …)<p>But it also breaks randomly lol