Feb
27
2006
There’s been a discussion at the Domain Driven Design group about how to restrict access to certain data in the domain without using DTOs. Sergio Bossa has a blogentry on it here on how to restrict access with proxies. It’s a good solution if you need to restrict access locally, but if your need is [...]
Feb
27
2006
Pretty neat use of JavaScript for graphing (not charts) can be found here.
Feb
27
2006
Short and nice tutorial here.
Feb
24
2006
Martin Fowler has an article on how minimising getters helps you think OO. Good points, and I try to minimise getters to when i need them. But the invent of generate getters/setters in the mainstream IDEs has led a lot of people to just generate it all. I’ve seen fair bit of code that could [...]
Feb
20
2006
An article at DeveloperWorks here. Some obvious, and some good points about service design.
Feb
17
2006
Mike Spille has a extensive aricle about 2-phase-commit here.
Via Colin Sampaleanu.
Feb
16
2006
Yahoo has a page here describing some of their standard patterns for UI design on the web, some of them AJAX based. They also seem to have a opensource Javascript library available for download.
Feb
16
2006
So JUnit 4.0 is released. It takes use of all the new Java 5 features to simplify testing, but isn’t compatible with Java 1.4. So hold your horses because most of us won’t be able to use it for a while.
Feb
16
2006
Oracle has a article here on how to do paging/cursoring with a ORM layer.