Hannes's Mind Maze
Think smart!
Sign in
|
Join
|
Help
Home
Contact
About
RSS
Atom
Comments RSS
Search
Tags
.Net
.Net Framework 3.5
Analysis and Design
ASP.Net
Books
Business Analysis
Domain Driven Design
General
Humor
I.T.
New South Africa
Personal
Process
Programming
Security
Software
Software Development
Sport
System Analyst
Technology
Navigation
Home
Careers
Downloads
Support
Archives
June 2008 (1)
May 2008 (1)
January 2008 (2)
November 2007 (4)
September 2007 (3)
August 2007 (10)
July 2007 (4)
June 2007 (3)
May 2007 (5)
April 2007 (12)
March 2007 (3)
February 2007 (8)
January 2007 (14)
December 2006 (6)
November 2006 (5)
October 2006 (6)
August 2006 (1)
July 2006 (1)
June 2006 (4)
May 2006 (2)
March 2006 (4)
February 2006 (4)
January 2006 (4)
December 2005 (1)
November 2005 (10)
October 2005 (7)
September 2005 (10)
August 2005 (5)
July 2005 (6)
June 2005 (11)
May 2005 (13)
April 2005 (15)
March 2005 (5)
February 2005 (7)
January 2005 (16)
December 2004 (1)
Book List
Applying UML and Patterns
Continuous Integration
Design Patterns
Domain-Driven Design
Object-Oriented Design Heuristics
Patterns of Enterprise Application Architecture
Programming Pearls
UML Distilled
The Pragmatic Programmer*
Applying Domain-Driven Design and Patterns*
UML 2.0 in a Nutshell*
Head First Design Patterns*
Herding Cats*
Object Oriented Systems Development*
Like to read
SA Developer
SA Architect
Joel on Software
Joel Reddit
The Daily WTF
Wikipedia
ScottGu's Blog
Slash Dot
August 2007 - Posts
3
Comments
Where is the SOAP?
by
hannes
While busy playing around with .Net Framework 3.5 I noticed to my surprise that I could not find the SoapFormatter. Am I missing something? Or have Microsoft decided to go only with XMLSerializer for Framework 3.5 serialization to XML? Which make sort of sense if you read what this guy have to say about comparing the two. Share this post: email it! | bookmark it! | digg it! | reddit! | kick it! | live it!
Filed under:
.Net
,
.Net Framework 3.5
0
Comments
Spring.Net and AOP
by
hannes
One of Spring.Net claims to fame is it's implemetation of AOP (Aspect Oriented Programming). Read about it here and see how they do it here . Spring.NET is an open source application framework that makes building enterprise .NET applications easier. Providing components based on proven design patterns that can be integrated into all tiers of your application architecture, Spring helps increase development productivity and improve application quality and performance. Downloads are available through...
Filed under:
Programming
,
Software
,
.Net
0
Comments
On Methods, Process and Models
by
hannes
Thoughts about Methods, Process and Models taken from the book Microsoft Object Thinking by David West. (See chapter 6) All methods are someone else’s idea about what you should do when you develop software. It may be useful, from time to time, to borrow from those ideas and integrate them into your own style. It is essential, however, to transcend any method, even your own idiosyncratic method, and “just do it.” Software development is like riding a surfboard—there is no process that will assure...
Filed under:
Analysis and Design
,
Books
0
Comments
Data Access Tutorials for ASP.Net 2.0
by
hannes
Today I discovered a treasure chest of tutorials written by Scott Mitchell for ASP.Net 2.0. Go have a look here . Code samples are provided in VB.Net and C#. Share this post: email it! | bookmark it! | digg it! | reddit! | kick it! | live it!
Filed under:
Programming
,
.Net
,
ASP.Net
1
Comments
Classes vs. Structures
by
hannes
While browsing thru some code of our development team I noticed that nowhere they use structures and always prefers to use classes when creating small data structures that are mostly made up of value type fields. So I went and did some research. In the .Net Framework objects of structures types are created on the stack while objects of class types are created on the heap. Structures can also implement interfaces but there is no inheritance. Structures can obtain fields with accessibility set. Structures...
Filed under:
Programming
,
.Net
2
Comments
Skills: Technology vs Business
by
hannes
According to me one of the biggest pitfalls when getting stuck on a project is the fact that you loose out on widening your development skills by inadvertently trading it for business knowledge. As a free roaming consultant this is something that you should guard against because it’s more likely that for your next job interview, people will be more interested in your I.T. skills than your business knowledge. Let me explain. The initial project phase is inherently unstable. This is when architecture...
Filed under:
Personal
,
I.T.
0
Comments
Continuous Integration: Improving Software Quality and Reducing Risk
by
hannes
Paul Duvall's book, Continuous Integration: Improving Software Quality and Reducing Risk , is now out. It's part of Martin Fowlers signature series which means it should be good read. To quote Martin. One of the interesting things about Continuous Integration is how often people are surprised by the impact that it has. We often find people dismiss it as a marginal benefit, yet it can bring an entirely different feel to a project. There is a much greater sense of visibility, because problems...
Filed under:
I.T.
,
Programming
,
Books
3
Comments
.Net Security
by
hannes
Before it's time to go home on the this Friday afternoon I quickly printed some of the pages of .NET Security written by Richard Grimes . After a quick glance I seems it will be worthy bedtime reading. Share this post: email it! | bookmark it! | digg it! | reddit! | kick it! | live it!
Filed under:
I.T.
,
Software
,
Security
,
.Net
0
Comments
Installing VS2008 Beta 2
by
hannes
This is my first post using Windows Life Writer, thanks Neale for his trouble shooting post. Well this morning I installed VS2008 Beta 2 on my laptop. Found no problems with the installation and the IDE fired up nicely for the first time without any visible hickups. For the record my laptop is not the news and greatest and installing from the HDD took less time then I expected. For the next couple of weeks I hope the explore some of VS2008 new features, particular around LINQ. Share this post: email...
Filed under:
I.T.
,
Programming
,
Software
,
.Net
0
Comments
Using LINQ to SQL
by
hannes
Hi, Scott Guthrie, wrote a series of blog posts titled “ Using LINQ to SQL ”. Go have a look here . To my surprise he also included VB code, viva VB! Also by Scott some of the new language features in the Orcas release of VS.Net Framework. Automatic Properties, Object Initializer and Collection Initializers Extension Methods Lambda Expressions Query Syntax Anonymous Types Share this post: email it! | bookmark it! | digg it! | reddit! | kick it! | live it!
Filed under:
I.T.
,
Programming
,
Software
,
.Net