At times, I have wanted a text editor that uses a "scroll and zoom" interface for navigating a single, long file. The minimap idea is similar, but I want it fully integrated into the main view. I'm not sure how useful this would be, but I'd like to try it.
I love that idea, some kind of Google maps for code where (0,0) is your main would take out a lot of pain when onboarding into large and poorly documented codebases.
Ask HN: What developer tools would you like to see?
161–170 of 230 posts
Re: Ask HN: What developer tools would you like to see?
#162I don't know if this exists or not, but it's something I've always wanted. I love and hate unit testing. It's a fantastic idea that I've never seen successfully implemented in practice, mostly because the tests invariably fall by the wayside. At the very least, it's a burden to support them. I'd love a tool that would observe my code during runtime - capturing all inputs and outputs from every function, as well as th…
Re: Ask HN: What developer tools would you like to see?
#163All the tools I want to see already exist. The big problem I have is that I can never perfectly configure IDEs or any other tools to work with my project unless y project is exceedingly simple. Let me give you just one example. VSCode + Python has a little tool for integrating with unittest/pytest. It’s pretty neat. There’s a little GUI where you can run your tests in the left panel. But what if it’s a Django project…
Re: Ask HN: What developer tools would you like to see?
#164Find a way with entr[0] and an http server to tell the browser to reload the currently viewed file if it changes. Today, entr allows you to restart a command when a file changes. A web server allows you to serve local files to your browser. If you use npm, lots of libs allow you to serve your web ui, and make the browser reload the page when something has changed. But this is tied to npm, and even to the framework yo…
Re: Ask HN: What developer tools would you like to see?
#165Wishlist: should be very responsive, powerful, and reasonably easy to use. CUA keybindings, no unique interfaces. All intelligent functions running in low priority background threads/workers so the main window is snappy as hell.
Perhaps written in something like rust to improve geek credibility... but if you started with a popular option today and forked, that might be fine.
Re: Ask HN: What developer tools would you like to see?
#166An IDE that provides a linear view of your code base. Follow code paths as though they were all inline, e.g. expand views of function/method internals inside the calling function, etc. No more changing files/modules.
it should be transparent once you flatten the db to file(s) and run normally, but for IDE would need to be aware of this db structure. maybe a VS code extension might work!
that is the dream...
Re: Ask HN: What developer tools would you like to see?
#167Earlier quoted context omitted.
> - A build system / package manager like Nix [1] but with a better user experience / more straightforward command-line tooling. Working on it :) > - A version control system which scales to petabytes or more. Something that I could put large video files in without thinking twice about it. Something a large company could use for their monorepo—or even their data warehouse. https://github.com/facebookexperimental/eden…
Did you write nixery?
Re: Ask HN: What developer tools would you like to see?
#168Re: Ask HN: What developer tools would you like to see?
#169Multi language dataflow analysis to debug and communicate how data goes through a system. AI image to html/CSS. I hate fiddling with css keywords when I already know what I want it to look like.
Re: Ask HN: What developer tools would you like to see?
#170I don't know if this exists or not, but it's something I've always wanted. I love and hate unit testing. It's a fantastic idea that I've never seen successfully implemented in practice, mostly because the tests invariably fall by the wayside. At the very least, it's a burden to support them. I'd love a tool that would observe my code during runtime - capturing all inputs and outputs from every function, as well as th…
It doesn't check all your boxes, but have you tried Playwright? https://playwright.dev