I would have thought the tags on the question make it pretty clear it isn't dealing with languages like Rust.
>Heat it. Squirt it. Serve Hey, that highly technical process is valuable Intellectual Property owned by the McDonald's corporation, careful they don't come after you!
Normally I'd be opposed to censorship in general, but in this case I'm kind of glad, but only because shit like this is actually happening even now: https://www.rte.ie/news/ireland/2021/0927/1249210-covid-pati... AFAIC,…
Well I understood it perfectly as in I read it as "modularity, type-safety, and maintainability"...then again I am familiar with DDD and thus understand the ubiquitous language from the original comment...which is kind…
Yep, keeping ur kids in the fridge is a great way to keep them fresh for weeks :)
I can't say I disagree with many of the points made in the article, but I am getting just a little tired of what I perceive to be the current trend of generalised manager-bashing these days...I transitioned from dev to…
I think that is a fair point and anecdotally at least it gels with what I have observed. I've worked in quite a few food service settings when I was younger and the margins (in general of course; Soup du Jour is like…
+1 - super achievment!
Was very disappointed too, I fully expected her to pull off a mask at the end and it would be Tom Cruise underneath :(
I'm not normally one to nitpick but Robert Boyle was Anglo-Irish, not English :)
If you look at the map on this page: http://raisedbogs.ie/what-is-a-raised-bog/ you will see how much of Ireland had quite a few natural - and very old - raised bogs up until the 1800s. And we've lost many of them…
>This is precisely waterfall I'm not sure I fully agree, unless we want to define waterfall as "anything where a bit of time is spent up-front to decide how a part of the system should work" :) For me, waterfall is…
That's a great point. And here is a real example that happened recently at work. One of my teams needs to create the ability for their low-level code to be able to respond to HTTP requests for command and control. So…
As someone who came from a fairly poor background (not half as as bad as the OP to be fair) and who has managed to "break out" I can say for sure that looking back I had a ton of lucky breaks - but, and this to me is…
Scrutor looks great, I must take it for a spin! And that is a great point about DI - being able to extend code/behaviour by injecting a different implementation of a dependency
Neither, I'm a fully paid up and card-carrying DI-club member :) I was kind of making the same point as you did, that you don't need to use any kind of DI library to achieve the DIP, but that in something like ASP.Net…
Page 150 of "Clean Code" says this about the DIP: "In essence, the DIP says that our classes should depend upon abstractions, not concrete details". This is very similar to pretty much any canonical definition you can…
Some fair points but I would disagree on the fundamental definition of the DIP. In my book it absolutely does not mean that low-level modules depend on high-level modules. That's just high coupling turned upside down.…
Not sure how Spring does it, but for example in ASP.Net Core, it's really simple. In the app startup class there is a method that's automatically called by the framework whereby it supplies a services container. In this…
"The only reason was to inject mocks". Must disagree...the reason for DI is to support the Dependency Inversion Principle : "High-level modules should not depend on low-level modules. Both should depend on abstractions…
"On the one hand, I'd love to be able to (for instance) outsource all CoC engagement and enforcement to a specialized body, that could manage a whole investigation / accuser / defense / jury system for a number of…
Agree that these are table stakes, and I speak as someone whose day job is managing a team that works on a fairly large open source project which is bound by the Linux Foundation CoC. And yes you are right, it is all…
"After they told me of the reports and their finding that I had violated the code of conduct, they asked if I had anything to say." There really is only ever one thing to say in a situation like this, and it is "Yes, I…
This is an excellent point. I don't get the polarised nature of the debate to be honest - there is room for all approaches in a "best tool for the job" way. I use EF Core a lot in my work, and it's the first tool I…
Somewhat tangential to the conversation at hand, but I feel part of the problem here is having two methods i.e. ReadOne/ReadAll. Why not just embrace OOP and go with one method (Read) that takes a specification which…
I would have thought the tags on the question make it pretty clear it isn't dealing with languages like Rust.
>Heat it. Squirt it. Serve Hey, that highly technical process is valuable Intellectual Property owned by the McDonald's corporation, careful they don't come after you!
Normally I'd be opposed to censorship in general, but in this case I'm kind of glad, but only because shit like this is actually happening even now: https://www.rte.ie/news/ireland/2021/0927/1249210-covid-pati... AFAIC,…
Well I understood it perfectly as in I read it as "modularity, type-safety, and maintainability"...then again I am familiar with DDD and thus understand the ubiquitous language from the original comment...which is kind…
Yep, keeping ur kids in the fridge is a great way to keep them fresh for weeks :)
I can't say I disagree with many of the points made in the article, but I am getting just a little tired of what I perceive to be the current trend of generalised manager-bashing these days...I transitioned from dev to…
I think that is a fair point and anecdotally at least it gels with what I have observed. I've worked in quite a few food service settings when I was younger and the margins (in general of course; Soup du Jour is like…
+1 - super achievment!
Was very disappointed too, I fully expected her to pull off a mask at the end and it would be Tom Cruise underneath :(
I'm not normally one to nitpick but Robert Boyle was Anglo-Irish, not English :)
If you look at the map on this page: http://raisedbogs.ie/what-is-a-raised-bog/ you will see how much of Ireland had quite a few natural - and very old - raised bogs up until the 1800s. And we've lost many of them…
>This is precisely waterfall I'm not sure I fully agree, unless we want to define waterfall as "anything where a bit of time is spent up-front to decide how a part of the system should work" :) For me, waterfall is…
That's a great point. And here is a real example that happened recently at work. One of my teams needs to create the ability for their low-level code to be able to respond to HTTP requests for command and control. So…
As someone who came from a fairly poor background (not half as as bad as the OP to be fair) and who has managed to "break out" I can say for sure that looking back I had a ton of lucky breaks - but, and this to me is…
Scrutor looks great, I must take it for a spin! And that is a great point about DI - being able to extend code/behaviour by injecting a different implementation of a dependency
Neither, I'm a fully paid up and card-carrying DI-club member :) I was kind of making the same point as you did, that you don't need to use any kind of DI library to achieve the DIP, but that in something like ASP.Net…
Page 150 of "Clean Code" says this about the DIP: "In essence, the DIP says that our classes should depend upon abstractions, not concrete details". This is very similar to pretty much any canonical definition you can…
Some fair points but I would disagree on the fundamental definition of the DIP. In my book it absolutely does not mean that low-level modules depend on high-level modules. That's just high coupling turned upside down.…
Not sure how Spring does it, but for example in ASP.Net Core, it's really simple. In the app startup class there is a method that's automatically called by the framework whereby it supplies a services container. In this…
"The only reason was to inject mocks". Must disagree...the reason for DI is to support the Dependency Inversion Principle : "High-level modules should not depend on low-level modules. Both should depend on abstractions…
"On the one hand, I'd love to be able to (for instance) outsource all CoC engagement and enforcement to a specialized body, that could manage a whole investigation / accuser / defense / jury system for a number of…
Agree that these are table stakes, and I speak as someone whose day job is managing a team that works on a fairly large open source project which is bound by the Linux Foundation CoC. And yes you are right, it is all…
"After they told me of the reports and their finding that I had violated the code of conduct, they asked if I had anything to say." There really is only ever one thing to say in a situation like this, and it is "Yes, I…
This is an excellent point. I don't get the polarised nature of the debate to be honest - there is room for all approaches in a "best tool for the job" way. I use EF Core a lot in my work, and it's the first tool I…
Somewhat tangential to the conversation at hand, but I feel part of the problem here is having two methods i.e. ReadOne/ReadAll. Why not just embrace OOP and go with one method (Read) that takes a specification which…