Upcoming Talks
-
Recent Posts
Recent Comments
- Software Development Word of the Day « A-Cuppa-Code on Evolutionary Architecture
- Event-Sourced Architectures by Martin Thompson at QConLondon 2012 « Matthew Skelton on Event Sourcing as a strategic advantage
- Distributed Weekly 155 — Scott Banwart's Blog on Mixing async and sync in distributed systems
- The Morning Brew - Chris Alcock » The Morning Brew #1106 on Mixing async and sync in distributed systems
- Naming Your Services « Rockstar Engineering on Services in Domain-Driven Design
Archives
- May 2012
- April 2012
- March 2012
- February 2012
- January 2012
- December 2011
- November 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- February 2011
- January 2011
- December 2010
- November 2010
- October 2010
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- July 2007
- June 2007
- May 2007
- April 2007
Categories
- Agile
- ALT.NET
- altnetconf
- Architecture
- ASP.NET
- ASP.NET MVC
- ASP.NET MVC in Action
- ASP.NET Web API
- Austin Code Camp
- Austin DDD Book Club
- AutoMapper
- BDD
- Behave#
- Behavior-Driven Development
- C#
- Code smells
- Community
- Continuous Improvement
- Continuous Integration
- Dependency Injection
- Design
- Distributed Systems
- Domain Driven Design
- Domain-Driven Design
- Entity Framework
- git
- JavaScript
- Legacy Code
- LINQ
- LINQ to SQL
- Mercurial
- Misc
- MonoRail
- MSBuild
- MVC
- NBehave
- NFJS
- NHibernate
- NServiceBus
- OO
- OSS
- PabloTV
- Patterns
- People
- Personal
- Process
- PTOM
- Rails
- Rant
- Refactoring
- REST
- Rhino Mocks
- Ruby
- SQL
- StructureMap
- TDD
- Team Build
- Testing
- TFS
- Tools
- Uncategorized
- VSTS
- WCF
Meta
Monthly Archives: February 2011
Versioning strategies for the sane
I don’t know why I didn’t think of this one earlier, it makes so much sense. A coworker of mine shared a fantastic assembly versioning strategy that eliminates all of the decisions about major/minor version numbers we have to make … Continue reading
Posted in C#
18 Comments
Agile: 10 years later
One of the interesting pieces of Mike Cohn’s post on the 10 year anniversary of the Agile manifesto was a comparison of the arguments in the previous decade around OOP: The next change I’d like to see (and predict will … Continue reading
Prototyping with anonymous classes
In the last post, I presented a rather strange bit of code: public static class ExpressionExtensions { public static Expression<Func<T, TResult>> Expr<T, TResult>( this T item, Expression<Func<T, TResult>> expr) { return expr; } } It looks like a rather pointless … Continue reading
Trivia Friday
Everybody loves a cliffhanger, right? I found myself needing to write the following code the other day: public static class ExpressionExtensions { public static Expression<Func<T, TResult>> Expr<T, TResult>( this T item, Expression<Func<T, TResult>> expr) { return expr; } } Why … Continue reading
Posted in C#
12 Comments
Attack of the pseudo-frames
AKA, folks are getting a little too clever in AJAX-land. There was a joke going around when “new twitter” launched that “old twitter” is what Steve Jobs would have designed if his engineers started with “new twitter”. Looking at any … Continue reading
Posted in Rant
4 Comments
Autoprojecting LINQ queries
Something I’ve been looking at adding to AutoMapper was the idea of doing automatic query projection in the Select query projection in LINQ statements. One downside of AutoMapper is that projection from domain objects still forces the entire domain object … Continue reading
Posted in AutoMapper, C#, LINQ
21 Comments
Three simple Mercurial rules
The following is highly opinionated, but it matches most closely to what typical Git workflows are. The nice thing about Hg is that its tools can hide the complexity of working with distributed version control systems (DVCS). That’s also a … Continue reading
Posted in Mercurial
5 Comments

