When users never use the features they asked for
web.eecs.utk.edu
When users never use the features they asked for
1–10 of 228 posts
Re: When users never use the features they asked for
#2Internal tools definitely require a close relationship with some set of users to really validate what’s being worked on. It’s just too easy for teams to make unused internal tools. The feedback loop is generally just not there initially. You really have to go and find some users. In this way it’s similar to pre-seed stage startup life.
Re: When users never use the features they asked for
#3Re: When users never use the features they asked for
#4Code review is too late for most automated analysis (at the level of: "parameter isn't validated" as seen in the screenshot), it should ideally be done as a compiler/lint check in the IDE, and at worst as a git pre-commit hook.
In most cases it's not worth sending a code review if there is automated feedback which can and should be addressed before a human sees it. It streamlines the reviews for reviewers, and gives new contributors a much better experience as they have less feedback to address, and more confidence that their code is correct.
Re: When users never use the features they asked for
#5Re: When users never use the features they asked for
#6People will buy products because if features they will never use. Not building costs money.
Re: When users never use the features they asked for
#7Re: When users never use the features they asked for
#8Re: When users never use the features they asked for
#9Re: When users never use the features they asked for
#10I was hoping for a good old fashioned, negative developer rant.
I think these automated CI systems is a losing battle. It makes the build chain to complex. There is too much corner cases that gives false positives unless you keep it dead simple, like eg. enabling all warnings are errors or something in gcc.