A tool that lets non software developers manage data-driven tests. I've been in many work situations over the years where the product manager / business stakeholder wants to test something (it could be an API endpoint, or even sometimes just a method or algorithm). From a developer perspective, it's the same code running every time, just with different inputs, and asserting different outputs. From the business side,…
Ask HN: What developer tools would you like to see?
201–210 of 230 posts
Re: Ask HN: What developer tools would you like to see?
#202Earlier quoted context omitted.
First: source maps. Second: have you tried creating another git repository inside a gitignored directory?
The files I need to track cannot be confined to a single directory. Some of them will coexist with source code files. Will look into source maps, but the principle applies to all aspects of literate programming. When editing a source block, linter tools go crazy because they see me use variables that to them appear to not have been assigned to (they were assigned to in other source code blocks).
Re: Ask HN: What developer tools would you like to see?
#203It would need live in a vpc to access the prod db, but then expose itself to access slices of anonymized data that can be used to restore external dbs.
Essentially a configurable pgdump that includes the ability to anonymize personal info, take recent slices of data, and serve the data all in a way that still protects direct access to the original data.
Re: Ask HN: What developer tools would you like to see?
#204I 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?
#205Git alternative that works with GitHub but isn't git
Re: Ask HN: What developer tools would you like to see?
#206The problem is this: in any given day as a developer I'm creating information in any of a dozen or more systems. Outlook (emails), Jira (tickets), Confluence (Wikis), Github (PRs), Slack (DMs and group messages), Notion (notes), IntelliJ, GDocs, etc.
All of these systems have a part of the story of how features/projects are developed, sustained, maintained, and altered.
All of these systems have their own search functions that vary widely in quality.
I want a desktop app that will allow me to search across ALL of my "developer" applications from a single pane.
In particular, I want "magic text" links to work in each app. For example, if I see TICKET-1234 then I want the app to know this text links to a particular Jira ticket.
Once you have this as a basic app you can turn it into a platform. This app could help me organize my day as a developer, and remind me of things I need to do.
I would eventually want this app to show me: * github activity and PRs I need to review (or let me set a reminder to review them later) * upcoming meetings * set a watch on particular repos, paths, or files to tell me if something has changed
I'm not concerned about this app having editing functionality. Having great search is the most important thing.
Re: Ask HN: What developer tools would you like to see?
#207Re: Ask HN: What developer tools would you like to see?
#208Would like to see a FLOSS IDE good enough to wrest mindshare back from vscode. A competitive stronghold that shouldn't be dominated by BigTech and telemetry. Wishlist: 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…
Are you aware of VSCodium ( https://github.com/VSCodium/vscodium#readme ) and does it not meet your criteria because it's "dominated" by Microsoft? The rest of the terms such as "responsive," "easy to use", and "no unique interfaces" make your request hard to fulfill
Re: hard, not at all, there are many responsive floss development tools already. They just need some extra polish, community building, and not be written in Java or Javascript, etc.
Probably needs some sponsorship to build mindshare, that seems the harder part. If too big a request (from scratch) one could start with an existing one and add plugins wrapping existing floss dev tools and language servers at a lower priority.
Re: Ask HN: What developer tools would you like to see?
#209Working in a team I think it'd be awesome to see when other people are editing the same files in a project- which could help spark conversation and avoid merge conflicts. A more advanced "Find usages" in IDEs that could perhaps create a graph and show more than just one level deep, or where you can track a function's argument to see where it originated and where it travelled through to get to a function. A project ma…
Sounds kinda like Google Docs for devs
Re: Ask HN: What developer tools would you like to see?
#210Some kind of vulnerability tracker for dependencies. You type `gradle somecommand` and it will walk the dependency graph, incl all transient ones, and show you which dependencies currently have an active vulnerability affecting them and the version that fixes it.