#swDevTermOfTheDay The #IOSP (Integration Operation Segregation Principle) requires to separate operations (e.g. control flow, calculations or IO) or integrations (calls to functions of the same code base), but not both. This leads to short and easily testable functions.
#swDevTermOfTheDay #ContinuousDelivery is the next step after #ContinuousIntegration and makes sure that the integrated software could be deployed to production at any time. See also #ContinuousDeployment.
#swDevTermOfTheDay The #SagaPattern solves the bad scalability of distributed (business) transactions with two-phase-commit by breaking the business transaction into activities which can be reverted with undo-steps, e.g. like a booking which can be cancelled.
#swDevTermOfTheDay #MessageCoupling means to call a method or send an event, even without any arguments. This kind of #Coupling is not harmful and normal part of systems communication.
#swDevTermOfTheDay #Helm is a template-based package management system for #Kubernetes which makes it easier to maintain configurations. It consists of a commandline interface (#CLI), a serverside component (#Tiller) and optionally a browser-based #GUI (#Monocular).
#swDevTermOfTheDay An #EvergreenBrowser is a browser which updates itself frequently and automatically without user intervention. Sometimes, though, the term also seems to be used differently, as a nice term for still widely used legacy browsers.
#swDevTermOfTheDay #LazyLoading in the context of #Angular means loading components when needed, but to compile the lazily loaded components together with the hosting component to allow for optimizations like #TreeShaking. See also #ExternalComponents
#swDevTermOfTheDay #DataCoupling means to passing data along with a method call or event, which does not effect its flow. This kind of #Coupling is not harmful and normal part of systems communication.
#swDevTermOfTheDay #ISO27001 / #ISO27k is a family of standards providing best practice recommendations for an #ISMS (Information Security Management System) ensuring #Confidentiality, #Integrity and #Availability.
#swDevTermOfTheDay #STOMP (Simple Text Oriented Messaging Protocol) is an HTTP-based, text-based format for interoperable asynchronous communication between #MessageBroker|s and clients written in arbitrary programming languages.