

1·
3 months agoI just can’t get over why he needs a massive mousepad for software development and yet is using the shittiest keyboard possible. Maybe in between builds he’s queueing up for Fortnite?


I just can’t get over why he needs a massive mousepad for software development and yet is using the shittiest keyboard possible. Maybe in between builds he’s queueing up for Fortnite?
As a dev working on a large project using gradle, a lot of the time interfaces are useful as a means to avoid circular dependencies while breaking things up into modules. It can also really boost build times if modules don’t have to depend on concrete impls, which can kill the parallelization of the build. But I don’t create interfaces for literally everything, only if a type is likely going to be used across module boundaries. Which is a roundabout way of saying they reduce coupling, but just noting it as a practical example of the utility you gain.