Earlier quoted context omitted.
"But we'd like a quick chat to understand why the last 20% took so long" — Also Management
I love the phrase “quick chat” because it’s rarely ever actually quick. If it was actually quick, they’d just ask it. Over time I’ve learned that the correct response is, approximately, “Sorry, I’m in the middle of [important work], please book 30 minutes for us and [stakeholders] to discuss it.” Gives me time to prepare so that I’m not caught off guard. And to bring backup if I think I need it.
The Problem with Frameworks
61–70 of 111 posts
Re: The Problem with Frameworks
#62Might be a good or bad thing depending on the project.
Re: The Problem with Frameworks
#63Ok, I'll take the counterpoint and offer a few challenges I've seen with libraries. In a sense, you are often assembling your own framework. No judgement there--just good to know what you are getting into. - There's the potential for quite a bit of choice paralysis along the way as you assemble your stack - It's harder to seek help: as you've likely assembled a unique collection of tools (and therefore encountered un…
Exactly. I always phrase it this way: if you don't choose a framework, you will be writing one.
(for a certain class of problems, obviously)
So, just know that going in. If you're not prepared for that reality, maybe your best choice is in fact to choose a framework that's already written, tested, and well supported.
Re: The Problem with Frameworks
#64If your project falls within the scope, great. You may be sporting a bunch of YAGNI functionality, but could grow into it.
Now, should requirements venture outside the scope...
- You may eat some Level Of Effort to meet those requirements, assuming s decent plugin system, or
- As The Famius Article notes, you could eat the framework equivalent of DLL Hell trying to appease the Version Gods.
Re: The Problem with Frameworks
#65Ok, I'll take the counterpoint and offer a few challenges I've seen with libraries. In a sense, you are often assembling your own framework. No judgement there--just good to know what you are getting into. - There's the potential for quite a bit of choice paralysis along the way as you assemble your stack - It's harder to seek help: as you've likely assembled a unique collection of tools (and therefore encountered un…
So ideally, I would have a framework which allows me to swap out components as the application evolves and what is being solved becomes more well defined.
Re: The Problem with Frameworks
#66Earlier quoted context omitted.
Sinatra is a framework, it's very light in that it doesn't dictate where you put your files in directories (but neither does, say Phoenix, which is definitely a framework). In sinatra, the system calls into the functions you write and you have no choice but to organize your endpoints the way that sinatra wants you to , even if some things are light relative to rails.
Did...did you miss my callout to the author's definition? Per that, Sinatra is a library. The structure of endpoints is no different than function calls; where they go is not proscribed. I'm not saying that's a good definition.
Re: The Problem with Frameworks
#67In game development, Unity 3D and Unreal Engine (and Godot) frameworks seem to have mostly taken over from custom game engines frameworks that use some libraries (for audio, physics, networking etc).
Re: The Problem with Frameworks
#68I keep saying it again and again: Dependencies strangle dev teams to death. A massive framework tangle of interlocking dependencies is enough to default most teams to never-never-upgrade-land, even when struggling to compensate for a too-early release's flaws. And I'll add that a lot of frameworks (I'm thinking of Spring here) devote most of their effort to creating "value add" wrappers around technologies that work…
But if you add dependencies, and don't make time to keep them up to date... you're going to have a bad time.
Re: The Problem with Frameworks
#69Re: The Problem with Frameworks
#70Earlier quoted context omitted.
Did...did you miss my callout to the author's definition? Per that, Sinatra is a library. The structure of endpoints is no different than function calls; where they go is not proscribed. I'm not saying that's a good definition.
look, "all" is meaningless. What constitutes "most" is a matter of judgement. Sinatra does guide you in your code organization a hell of a lot more than something like, "a json parser library".
Of course, that makes things like Go's inbuilt HTTP a bit weird; it's part of the standard library, but it also necessitates setting up handlers, which would potentially make it framework.