Model View Presenter (MVP)
- Model View Presenter Pattern (martinfowler.com)
- Twisting The Triad (Andy Bower, Blai McGlashan)
- MVP: Model-View-Presenter (Mike Potel)
- Entwurfsmuster: Model View Presenter (MSDN)
- Design Patterns: Model View Presenter (MSDN)
- Videos at PolymorphicPodcast
- Test Driven Development with ASP.Net and the Model View Presenter Pattern (CodeBetter.com)
- More Thoughts on Model View Presenter (CodeBetter.com)
- The Dependency Injection Pattern – What is it and why do I care?
- Model-View-Presenter split into two “new� patterns
- Model View Presenter with ASP.NET (codeproject.com)
- General application architecture revisited
The Artima Developer Community
artima.com – Best practices in enterprise software development
MSDN Magazine Column Archive
StickyMinds.com
StickyMinds.com, the most comprehensive online resource for helping you produce better software, offers an unrivaled scope of original articles from industry experts, technical papers, industry news, a searchable tools and books guide, discussion forums, and more. StickyMinds.com is the online companion to Better Software magazine and together they are the most comprehensive resource for helping you produce better software. StickyMinds.com is the Web’s first and most popular interactive community exclusively engaged in improving software quality throughout the software development lifecycle. Membership is free.
POLYMORPHICPODCAST
Object Oriented Development, Architecture & Best Practices in .NET
Go to polymorphicpodacast.com
object-oriented programming terms
Software metric
Serial Communications in Win32
Serial Communications in Win32 (MSDN)
Windows Serial Port Programming (robbayer.com)
Sending Commands in Visual C++ ( With MFC ) to ADR Interfaces (ontrak.net)
Building VTK on Kubuntu
I got an errro running CMake to bulding VTK on Kubuntu:
CMake Error: …
Please set the following variables:
OPENGL_INCLUDE_DIR
OPENGL_gl_LIBRARY
Installing the package freeglut3-dev solved the problem:
apt-get install freeglut3-dev
Running make I got the next error:
error: X11/StringDefs.h: No such file or directory
Installing the package libxt-dev solved the problem:
apt-get install libxt-dev