I 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…
> 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. Are you using object-oriented programming or a more functional style? Without classes, unit tests become a lot more readable and manageable.
Ask HN: What developer tools would you like to see?
111–120 of 230 posts
Re: Ask HN: What developer tools would you like to see?
#112[0] https://zed.dev/
Re: Ask HN: What developer tools would you like to see?
#113Find 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?
#114I think we all agree that we want faster horses.
Re: Ask HN: What developer tools would you like to see?
#115I 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…
> 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. Are you using object-oriented programming or a more functional style? Without classes, unit tests become a lot more readable and manageable.
Re: Ask HN: What developer tools would you like to see?
#116Remember the early web, when people used to look at existing websites to learn how it was done? “View Source” used to be a career-starter for a lot of people, but has become largely useless today due to transpilation, frameworks, and other abstraction layers. I’d love to see a browser extension provide an “Explain Source” context menu item, which sends you to a pane in Developer Tools that shows: - an estimation whic…
Many websites’ code now are minified so I have to copy and paste it around then manually clean it up before I can start reading it.
Re: Ask HN: What developer tools would you like to see?
#117I just want Xcode, but less buggy. A lot less buggy. Sheesh.
Also could we get documentation on things like Instruments? I don’t just mean stuff like “this button opens the whatever pane.” I mean how do you use it and what does its output mean? I’ve rarely seen such useless documentation. (Well, Unix man pages, I guess.)
Re: Ask HN: What developer tools would you like to see?
#118It would have similar semantics to the time utility. Let's call this tool timed.
For instance, prefixing any task with the time utility e.g. "time dd if=/dev/sda of=/dev/sdb" would output the duration of the underlying task.
Similarly, executing "timed dd if=/dev/sda of=/dev/sdb" would send a notification to the user when the task completes containing the return code and any console output.
1: Paired with something like https://github.com/binwiederhier/ntfy. This would allow a user to set up multiple ways to receive the notification, including Telegram/Slack, SMS, push notification, email or simply just turning console outputs into a continuous audio note similar to http://listen.hatnote.com/
Re: Ask HN: What developer tools would you like to see?
#119I would love an IDE where I can create documentation formatted as tables, colors, graphics etc. directly in the source code comments. Also, I would like to show selected function or variable names in bold or larger fonts. Viz. Knuth Warp/Weft.
Re: Ask HN: What developer tools would you like to see?
#120Currently you can only view the log files on Linux using journalctl.