Skip to content

Sponsor: Do you build complex software systems? See how NServiceBus makes it easier to design, build, and manage software systems that use message queues to achieve loose coupling. Get started for free.

Learn more about Software Architecture & Design.
Join thousands of developers getting weekly updates to increase your understanding of software architecture and design concepts.


Follow @CodeOpinion

Architecture

Greg Young: 8 Lines of Code

Greg Young gave a good talk titled 8 Lines of Code, discussing simplicity, dependencies, and magic. Magic is always something I try and identify and stay away from in my own code, however I really failed to realize how much magic goes on in some of the libraries/frameworks that I often use.  Entity Framework and nHibernate come to mind.  You really should understand the magic happening in these libraries to use them.  Which is very problematic. If you take the dependency ownership seriously, then a lot of folks developing the front-end of a “modern” web applications are in a world of… Read More »Greg Young: 8 Lines of Code

Service Bus for Windows Server

Move over MSMQ, Service Bus for Windows Server was recently released.  Apparently it has been for awhile now (Oct 2012 release).  I’m just late to the party I guess. Service Bus 1.0 was designed to allow for enterprise messaging capabilities in a Windows Server-based environment.  It enables you to build, test, and run loosely-coupled, message-driven applications in self-managed environments and on developer computers.  The two primary features are Service Bus Queues and Service Bus Topics and Subscriptions. Service Bus Queues offer reliable message storage and retrieval with a choice of protocols and APIs. Use Service Bus queue in your application to provide load leveling by having the… Read More »Service Bus for Windows Server

Event Sourcing: Eric Evans Interviews Greg Young

I follow Eric Evans (@ericevans0) and Greg Young (@gregyoung) on twitter.  I really respect their opinion and knowledge. Eric tweeted about an interview he did with Greg over 5 years ago about Event Sourcing.  It’s great to hear Greg describe how Event Sourcing fits with DDD concepts.  This is video is one of the first Event Sourcing + DDD talks that I’m aware of.   I highly recommend checking  it out. http://www.infoq.com/interviews/Architecture-Eric-Evans-Interviews-Greg-Young If you are new to Event Sourcing, here is a snippet from Martin Fowler article. Capture all changes to an application state as a sequence of events. We can… Read More »Event Sourcing: Eric Evans Interviews Greg Young