Steel Threads are a powerful but obscure software design approach
81–89 of 89 posts
Re: Steel Threads are a powerful but obscure software design approach
#82The example in the article doesn't make sense to me. It basically says "You want to switch out a piece of a monolith to a new service, you do it with feature flags etc. That's hard." Which is true. But then it says "Steel Threads is better. Instead of switching out a part of your monolith, you... switch out a part of your monolith but it's a smaller part. That's not as hard". Which is true but isn't that the same thi…
Exactly, not sure what new insight this post is supposed to provide. On the other hand, sometimes switching over gradually, one small part at a time, actually increases the complexity of the whole migration.
Re: Steel Threads are a powerful but obscure software design approach
#83Re: Steel Threads are a powerful but obscure software design approach
#84Re: Steel Threads are a powerful but obscure software design approach
#85Re: Steel Threads are a powerful but obscure software design approach
#86This reminds me of something John Carmack tweeted once (can't find the tweet). In the tweet, he said that when coding, he'd start by the smallest possible PoC, and code it entirely front to back. That'd give the general structure, and then he'd build upon that. (this is what I remember of it fwiw). I do this all the time too, which I think is a vastly superior approach to TDD, which assumes how an API is going to be…
Re: Steel Threads are a powerful but obscure software design approach
#87Re: Steel Threads are a powerful but obscure software design approach
#88This reminds me of something John Carmack tweeted once (can't find the tweet). In the tweet, he said that when coding, he'd start by the smallest possible PoC, and code it entirely front to back. That'd give the general structure, and then he'd build upon that. (this is what I remember of it fwiw). I do this all the time too, which I think is a vastly superior approach to TDD, which assumes how an API is going to be…
That’s not TDD. It’s a common misconception that you’ve fallen for, and are now spreading further.
TDD is a series of small steps where you write a bit of test code—about five lines—and then a bit of production code—about five lines—then refactor, then repeat.
Here’s a free chapter in my book that describes how it works:
https://www.jamesshore.com/v2/books/aoad2/test-driven_develo...
Here’s a video that demonstrates it:
https://www.jamesshore.com/v2/projects/lunch-and-learn/incre...