Earlier quoted context omitted.
In general a new feature should have its home in one service and make calls to the existing network APIs of other services. If you’re regularly having to change the innards of those services to support new use cases, you have serious architecture debt.
You're being overly zealous. Every service has callers. Sometimes you want to work on the caller concurrently with the callee. Sometimes even the same person can work on the feature end to end. There is no reason that making that easy to do will cause tech debt. You already have other means to your services cleanly versioned and compatible, such as tests. Making things environments easy to run locally doesn't change…
Rethinking the IDE for the 2020s
61–64 of 64 posts
Re: Rethinking the IDE for the 2020s
#62Earlier quoted context omitted.
You're being overly zealous. Every service has callers. Sometimes you want to work on the caller concurrently with the callee. Sometimes even the same person can work on the feature end to end. There is no reason that making that easy to do will cause tech debt. You already have other means to your services cleanly versioned and compatible, such as tests. Making things environments easy to run locally doesn't change…
A caller and caller that you want to change at the same time for the same reason belong in the same service.
You're saying that a desire for when something gets worked on should trump any other design decision? "Want at the same time" informs separation of concerns?
You make services in an vacuum without considering the stakeholder/consumer of your service? You've never planned for a service in your org you consume to gain functionality because doing so would mean you should implement that functionality yourself in a service you own?
Re: Rethinking the IDE for the 2020s
#63Earlier quoted context omitted.
A caller and caller that you want to change at the same time for the same reason belong in the same service.
If I want to add a piece of data and a visualization of that data the UI and the data store should be in the same service, no exceptions? You're saying that a desire for when something gets worked on should trump any other design decision? "Want at the same time" informs separation of concerns? You make services in an vacuum without considering the stakeholder/consumer of your service? You've never planned for a serv…
"How often will we need to change this and what will that be like?" is usually my top design consideration after "will it work?" So yes on that one.
Re: Rethinking the IDE for the 2020s
#64I completely disagree with the article (but I realize that this is only my opinion and IDE choice is something that comes down to personal preference): Here is what I think IDEs need to do different in the 2020s: - configuration needs to be in human-readable configuration files, not obscure XML configs that can realistically only be edited through UIs. - how to build the project needs to be completely decoupled from…
See also https://build-server-protocol.github.io (but it doesn't seem to get much traction yet)